├── README.md ├── 团购.xcodeproj ├── project.pbxproj ├── project.xcworkspace │ ├── contents.xcworkspacedata │ └── xcuserdata │ │ └── xuli.xcuserdatad │ │ └── UserInterfaceState.xcuserstate └── xcuserdata │ └── xuli.xcuserdatad │ ├── xcdebugger │ └── Breakpoints_v2.xcbkptlist │ └── xcschemes │ ├── xcschememanagement.plist │ └── 团购.xcscheme ├── 团购 ├── Assets.xcassets │ ├── AppIcon.appiconset │ │ ├── Contents.json │ │ ├── Icon-1024.png │ │ ├── Icon-29.png │ │ ├── Icon-29@2x.png │ │ ├── Icon-40.png │ │ ├── Icon-40@2x.png │ │ ├── Icon-72.png │ │ ├── Icon-72@2x.png │ │ ├── Icon-76.png │ │ ├── Icon-76@2x.png │ │ ├── Icon-Small-50.png │ │ ├── Icon-Small-50@2x.png │ │ └── u=2979192898,1423858049&fm=21&gp=0.jpg │ ├── Button │ │ ├── Contents.json │ │ ├── btn_filter_normal.imageset │ │ │ ├── Contents.json │ │ │ ├── btn_filter_normal.png │ │ │ └── btn_filter_normal@2x.png │ │ └── btn_filter_selected.imageset │ │ │ ├── Contents.json │ │ │ ├── btn_filter_selected.png │ │ │ └── btn_filter_selected@2x.png │ ├── CategoryIcon │ │ ├── Contents.json │ │ ├── icon_category_-1.imageset │ │ │ ├── Contents.json │ │ │ ├── icon_category_-1.png │ │ │ └── icon_category_-1@2x.png │ │ ├── icon_category_0.imageset │ │ │ ├── Contents.json │ │ │ ├── icon_category_0.png │ │ │ └── icon_category_0@2x.png │ │ ├── icon_category_1.imageset │ │ │ ├── Contents.json │ │ │ ├── icon_category_1.png │ │ │ └── icon_category_1@2x.png │ │ ├── icon_category_2.imageset │ │ │ ├── Contents.json │ │ │ ├── icon_category_2.png │ │ │ └── icon_category_2@2x.png │ │ ├── icon_category_20.imageset │ │ │ ├── Contents.json │ │ │ ├── icon_category_20.png │ │ │ └── icon_category_20@2x.png │ │ ├── icon_category_22.imageset │ │ │ ├── Contents.json │ │ │ ├── icon_category_22.png │ │ │ └── icon_category_22@2x.png │ │ ├── icon_category_3.imageset │ │ │ ├── Contents.json │ │ │ ├── icon_category_3.png │ │ │ └── icon_category_3@2x.png │ │ ├── icon_category_4.imageset │ │ │ ├── Contents.json │ │ │ ├── icon_category_4.png │ │ │ └── icon_category_4@2x.png │ │ ├── icon_category_5.imageset │ │ │ ├── Contents.json │ │ │ ├── icon_category_5.png │ │ │ └── icon_category_5@2x.png │ │ ├── icon_category_6.imageset │ │ │ ├── Contents.json │ │ │ ├── btn_navigation_walking.png │ │ │ └── btn_navigation_walking@2x.png │ │ ├── icon_category_78.imageset │ │ │ ├── Contents.json │ │ │ ├── icon_category_78.png │ │ │ └── icon_category_78@2x.png │ │ ├── icon_category_99.imageset │ │ │ ├── Contents.json │ │ │ ├── icon_category_99.png │ │ │ └── icon_category_99@2x.png │ │ ├── icon_category_highlighted_-1.imageset │ │ │ ├── Contents.json │ │ │ ├── icon_category_highlighted_-1.png │ │ │ └── icon_category_highlighted_-1@2x.png │ │ ├── icon_category_highlighted_0.imageset │ │ │ ├── Contents.json │ │ │ ├── icon_category_highlighted_0.png │ │ │ └── icon_category_highlighted_0@2x.png │ │ ├── icon_category_highlighted_1.imageset │ │ │ ├── Contents.json │ │ │ ├── icon_category_highlighted_1.png │ │ │ └── icon_category_highlighted_1@2x.png │ │ ├── icon_category_highlighted_2.imageset │ │ │ ├── Contents.json │ │ │ ├── icon_category_highlighted_2.png │ │ │ └── icon_category_highlighted_2@2x.png │ │ ├── icon_category_highlighted_20.imageset │ │ │ ├── Contents.json │ │ │ ├── icon_category_highlighted_20.png │ │ │ └── icon_category_highlighted_20@2x.png │ │ ├── icon_category_highlighted_22.imageset │ │ │ ├── Contents.json │ │ │ ├── icon_category_highlighted_22.png │ │ │ └── icon_category_highlighted_22@2x.png │ │ ├── icon_category_highlighted_3.imageset │ │ │ ├── Contents.json │ │ │ ├── icon_category_highlighted_3.png │ │ │ └── icon_category_highlighted_3@2x.png │ │ ├── icon_category_highlighted_4.imageset │ │ │ ├── Contents.json │ │ │ ├── icon_category_highlighted_4.png │ │ │ └── icon_category_highlighted_4@2x.png │ │ ├── icon_category_highlighted_5.imageset │ │ │ ├── Contents.json │ │ │ ├── icon_category_highlighted_5.png │ │ │ └── icon_category_highlighted_5@2x.png │ │ ├── icon_category_highlighted_6.imageset │ │ │ ├── Contents.json │ │ │ ├── btn_navigation_walking_pressed.png │ │ │ └── btn_navigation_walking_pressed@2x.png │ │ ├── icon_category_highlighted_78.imageset │ │ │ ├── Contents.json │ │ │ ├── icon_category_highlighted_78.png │ │ │ └── icon_category_highlighted_78@2x.png │ │ ├── icon_category_highlighted_99.imageset │ │ │ ├── Contents.json │ │ │ ├── icon_category_highlighted_99.png │ │ │ └── icon_category_highlighted_99@2x.png │ │ ├── icon_filter_arrow.imageset │ │ │ ├── Contents.json │ │ │ ├── icon_filter_arrow.png │ │ │ └── icon_filter_arrow@2x.png │ │ ├── icon_filter_category_-1.imageset │ │ │ ├── Contents.json │ │ │ ├── icon_filter_category_-1.png │ │ │ └── icon_filter_category_-1@2x.png │ │ ├── icon_filter_category_0.imageset │ │ │ ├── Contents.json │ │ │ ├── icon_filter_category_0.png │ │ │ └── icon_filter_category_0@2x.png │ │ ├── icon_filter_category_1.imageset │ │ │ ├── Contents.json │ │ │ ├── icon_filter_category_1.png │ │ │ └── icon_filter_category_1@2x.png │ │ ├── icon_filter_category_2.imageset │ │ │ ├── Contents.json │ │ │ ├── icon_filter_category_2.png │ │ │ └── icon_filter_category_2@2x.png │ │ ├── icon_filter_category_20.imageset │ │ │ ├── Contents.json │ │ │ ├── icon_filter_category_20.png │ │ │ └── icon_filter_category_20@2x.png │ │ ├── icon_filter_category_22.imageset │ │ │ ├── Contents.json │ │ │ ├── icon_filter_category_22.png │ │ │ └── icon_filter_category_22@2x.png │ │ ├── icon_filter_category_3.imageset │ │ │ ├── Contents.json │ │ │ ├── icon_filter_category_3.png │ │ │ └── icon_filter_category_3@2x.png │ │ ├── icon_filter_category_4.imageset │ │ │ ├── Contents.json │ │ │ ├── icon_filter_category_4.png │ │ │ └── icon_filter_category_4@2x.png │ │ ├── icon_filter_category_5.imageset │ │ │ ├── Contents.json │ │ │ ├── icon_filter_category_5.png │ │ │ └── icon_filter_category_5@2x.png │ │ ├── icon_filter_category_78.imageset │ │ │ ├── Contents.json │ │ │ ├── icon_filter_category_78.png │ │ │ └── icon_filter_category_78@2x.png │ │ ├── icon_filter_category_99.imageset │ │ │ ├── Contents.json │ │ │ ├── icon_filter_category_99.png │ │ │ └── icon_filter_category_99@2x.png │ │ ├── icon_filter_category_highlighted_-1.imageset │ │ │ ├── Contents.json │ │ │ ├── icon_filter_category_highlighted_-1.png │ │ │ └── icon_filter_category_highlighted_-1@2x.png │ │ ├── icon_filter_category_highlighted_0.imageset │ │ │ ├── Contents.json │ │ │ ├── icon_filter_category_highlighted_0.png │ │ │ └── icon_filter_category_highlighted_0@2x.png │ │ ├── icon_filter_category_highlighted_1.imageset │ │ │ ├── Contents.json │ │ │ ├── icon_filter_category_highlighted_1.png │ │ │ └── icon_filter_category_highlighted_1@2x.png │ │ ├── icon_filter_category_highlighted_2.imageset │ │ │ ├── Contents.json │ │ │ ├── icon_filter_category_highlighted_2.png │ │ │ └── icon_filter_category_highlighted_2@2x.png │ │ ├── icon_filter_category_highlighted_20.imageset │ │ │ ├── Contents.json │ │ │ ├── icon_filter_category_highlighted_20.png │ │ │ └── icon_filter_category_highlighted_20@2x.png │ │ ├── icon_filter_category_highlighted_22.imageset │ │ │ ├── Contents.json │ │ │ ├── icon_filter_category_highlighted_22.png │ │ │ └── icon_filter_category_highlighted_22@2x.png │ │ ├── icon_filter_category_highlighted_3.imageset │ │ │ ├── Contents.json │ │ │ ├── icon_filter_category_highlighted_3.png │ │ │ └── icon_filter_category_highlighted_3@2x.png │ │ ├── icon_filter_category_highlighted_4.imageset │ │ │ ├── Contents.json │ │ │ ├── icon_filter_category_highlighted_4.png │ │ │ └── icon_filter_category_highlighted_4@2x.png │ │ ├── icon_filter_category_highlighted_5.imageset │ │ │ ├── Contents.json │ │ │ ├── icon_filter_category_highlighted_5.png │ │ │ └── icon_filter_category_highlighted_5@2x.png │ │ ├── icon_filter_category_highlighted_78.imageset │ │ │ ├── Contents.json │ │ │ ├── icon_filter_category_highlighted_78.png │ │ │ └── icon_filter_category_highlighted_78@2x.png │ │ └── icon_filter_category_highlighted_99.imageset │ │ │ ├── Contents.json │ │ │ ├── icon_filter_category_highlighted_99.png │ │ │ └── icon_filter_category_highlighted_99@2x.png │ ├── Cell │ │ ├── Contents.json │ │ ├── bg_dealcell.imageset │ │ │ ├── Contents.json │ │ │ ├── bg_dealcell.png │ │ │ └── bg_dealcell@2x.png │ │ ├── bg_ordercell.imageset │ │ │ ├── Contents.json │ │ │ ├── bg_ordercell.png │ │ │ └── bg_ordercell@2x.png │ │ ├── ic_choosed.imageset │ │ │ ├── Contents.json │ │ │ └── ic_choosed.png │ │ ├── ic_choosed_large.imageset │ │ │ ├── Contents.json │ │ │ └── ic_choosed_large.png │ │ ├── ic_deal_new.imageset │ │ │ ├── Contents.json │ │ │ ├── ic_deal_new.png │ │ │ └── ic_deal_new@2x.png │ │ ├── ic_deal_notOrder.imageset │ │ │ ├── Contents.json │ │ │ ├── ic_deal_notOrder.png │ │ │ └── ic_deal_notOrder@2x.png │ │ └── placeholder_deal.imageset │ │ │ ├── Contents.json │ │ │ ├── placeholder_deal.png │ │ │ └── placeholder_deal@2x.png │ ├── Contents.json │ ├── Detail │ │ ├── Contents.json │ │ ├── bg_deal_purchaseButton.imageset │ │ │ ├── Contents.json │ │ │ ├── bg_deal_purchaseButton.png │ │ │ └── bg_deal_purchaseButton@2x.png │ │ ├── bg_deal_purchaseButton_highlighted.imageset │ │ │ ├── Contents.json │ │ │ ├── bg_deal_purchaseButton_highlighted.png │ │ │ └── bg_deal_purchaseButton_highlighted@2x.png │ │ ├── icon_collect.imageset │ │ │ ├── Contents.json │ │ │ ├── icon_collect.png │ │ │ └── icon_collect@2x.png │ │ ├── icon_collect_highlighted.imageset │ │ │ ├── Contents.json │ │ │ ├── icon_collect_highlighted.png │ │ │ └── icon_collect_highlighted@2x.png │ │ ├── icon_deal_soldNumber.imageset │ │ │ ├── Contents.json │ │ │ ├── icon_deal_soldNumber.png │ │ │ └── icon_deal_soldNumber@2x.png │ │ ├── icon_deal_timer.imageset │ │ │ ├── Contents.json │ │ │ ├── icon_deal_timer.png │ │ │ └── icon_deal_timer@2x.png │ │ ├── icon_detail_address.imageset │ │ │ ├── Contents.json │ │ │ ├── icon_detail_address.png │ │ │ └── icon_detail_address@2x.png │ │ ├── icon_detail_basic.imageset │ │ │ ├── Contents.json │ │ │ ├── icon_detail_basic.png │ │ │ └── icon_detail_basic@2x.png │ │ ├── icon_detail_basic_selected.imageset │ │ │ ├── Contents.json │ │ │ ├── icon_detail_basic_selected.png │ │ │ └── icon_detail_basic_selected@2x.png │ │ ├── icon_detail_branches.imageset │ │ │ ├── Contents.json │ │ │ ├── icon_detail_branches.png │ │ │ └── icon_detail_branches@2x.png │ │ ├── icon_detail_comment.imageset │ │ │ ├── Contents.json │ │ │ ├── icon_detail_comment.png │ │ │ └── icon_detail_comment@2x.png │ │ ├── icon_detail_merchants.imageset │ │ │ ├── Contents.json │ │ │ ├── icon_detail_merchants.png │ │ │ └── icon_detail_merchants@2x.png │ │ ├── icon_detail_merchants_selected.imageset │ │ │ ├── Contents.json │ │ │ ├── icon_detail_merchants_selected.png │ │ │ └── icon_detail_merchants_selected@2x.png │ │ ├── icon_detail_phone.imageset │ │ │ ├── Contents.json │ │ │ ├── icon_detail_phone.png │ │ │ └── icon_detail_phone@2x.png │ │ ├── icon_detail_reviews.imageset │ │ │ ├── Contents.json │ │ │ ├── icon_detail_reviews.png │ │ │ └── icon_detail_reviews@2x.png │ │ ├── icon_detail_reviews_selected.imageset │ │ │ ├── Contents.json │ │ │ ├── icon_detail_reviews_selected.png │ │ │ └── icon_detail_reviews_selected@2x.png │ │ ├── icon_detail_showtimes.imageset │ │ │ ├── Contents.json │ │ │ ├── icon_detail_showtimes.png │ │ │ └── icon_detail_showtimes@2x.png │ │ ├── icon_detail_showtimes_selected.imageset │ │ │ ├── Contents.json │ │ │ ├── icon_detail_showtimes_selected.png │ │ │ └── icon_detail_showtimes_selected@2x.png │ │ ├── icon_order_refundable.imageset │ │ │ ├── Contents.json │ │ │ └── icon_order_refundable@2x.png │ │ ├── icon_order_unrefundable.imageset │ │ │ ├── Contents.json │ │ │ └── icon_order_unrefundable@2x.png │ │ ├── icon_share.imageset │ │ │ ├── Contents.json │ │ │ ├── icon_share.png │ │ │ └── icon_share@2x.png │ │ └── icon_share_highlighted.imageset │ │ │ ├── Contents.json │ │ │ ├── icon_share_highlighted.png │ │ │ └── icon_share_highlighted@2x.png │ ├── Dropdown │ │ ├── Contents.json │ │ ├── bg_dropdown_left_selected.imageset │ │ │ ├── Contents.json │ │ │ └── bg_dropdown_left_selected@2x.png │ │ ├── bg_dropdown_leftpart.imageset │ │ │ ├── Contents.json │ │ │ └── bg_dropdown_leftpart@2x.png │ │ ├── bg_dropdown_right_selected.imageset │ │ │ ├── Contents.json │ │ │ └── bg_dropdown_right_selected@2x.png │ │ └── bg_dropdown_rightpart.imageset │ │ │ ├── Contents.json │ │ │ └── bg_dropdown_rightpart@2x.png │ ├── Icon │ │ ├── Contents.json │ │ ├── icon_cell_rightArrow.imageset │ │ │ ├── Contents.json │ │ │ └── icon_cell_rightArrow.png │ │ ├── icon_cell_rightArrow_disabled.imageset │ │ │ ├── Contents.json │ │ │ └── icon_cell_rightArrow_disabled.png │ │ └── icon_cell_rightArrow_selected.imageset │ │ │ ├── Contents.json │ │ │ └── icon_cell_rightArrow_selected.png │ ├── LaunchImage.launchimage │ │ ├── Contents.json │ │ ├── Default-Portrait@2x~ipad.png │ │ ├── Default.png │ │ ├── Default@2x.png │ │ └── Default~ipad.png │ ├── Map │ │ ├── Contents.json │ │ ├── ic_category_1.imageset │ │ │ ├── Contents.json │ │ │ └── icon_map_cateid_1.png │ │ ├── ic_category_2.imageset │ │ │ ├── Contents.json │ │ │ └── icon_map_cateid_2.png │ │ ├── ic_category_20.imageset │ │ │ ├── Contents.json │ │ │ └── icon_map_cateid_20.png │ │ ├── ic_category_22.imageset │ │ │ ├── Contents.json │ │ │ └── icon_map_cateid_22.png │ │ ├── ic_category_3.imageset │ │ │ ├── Contents.json │ │ │ └── icon_map_cateid_3.png │ │ ├── ic_category_4.imageset │ │ │ ├── Contents.json │ │ │ └── icon_map_cateid_4.png │ │ ├── ic_category_5.imageset │ │ │ ├── Contents.json │ │ │ └── icon_map_cateid_5.png │ │ ├── ic_category_78.imageset │ │ │ ├── Contents.json │ │ │ └── icon_map_cateid_78.png │ │ ├── ic_category_99.imageset │ │ │ ├── Contents.json │ │ │ └── icon_map_cateid_99.png │ │ ├── ic_category_default.imageset │ │ │ ├── Contents.json │ │ │ └── icon_map_cateid_default.png │ │ ├── icon_map_location.imageset │ │ │ ├── Contents.json │ │ │ └── icon_map_location@2x.png │ │ ├── icon_map_location_highlighted.imageset │ │ │ ├── Contents.json │ │ │ └── icon_map_location_highlighted@2x.png │ │ ├── icon_map_refresh.imageset │ │ │ ├── Contents.json │ │ │ └── icon_map_refresh@2x.png │ │ ├── icon_map_refresh_highlighted.imageset │ │ │ ├── Contents.json │ │ │ └── icon_map_refresh_highlighted@2x.png │ │ └── iconpng.imageset │ │ │ ├── Contents.json │ │ │ └── iconpng.png │ ├── Nav │ │ ├── Contents.json │ │ ├── bg_navigationBar_normal.imageset │ │ │ ├── Contents.json │ │ │ └── bg_navigationBar_normal.png │ │ ├── btn_changeCity.imageset │ │ │ ├── Contents.json │ │ │ ├── btn_changeCity.png │ │ │ └── btn_changeCity@2x.png │ │ ├── btn_changeCity_selected.imageset │ │ │ ├── Contents.json │ │ │ ├── btn_changeCity_selected.png │ │ │ └── btn_changeCity_selected@2x.png │ │ ├── btn_navigation_close.imageset │ │ │ ├── Contents.json │ │ │ ├── btn_navigation_close.png │ │ │ └── btn_navigation_close@2x.png │ │ ├── btn_navigation_close_hl.imageset │ │ │ ├── Contents.json │ │ │ ├── btn_navigation_close_hl.png │ │ │ └── btn_navigation_close_hl@2x.png │ │ ├── btn_search.imageset │ │ │ ├── Contents.json │ │ │ ├── btn_search.png │ │ │ └── btn_search@2x.png │ │ ├── icon_back.imageset │ │ │ ├── Contents.json │ │ │ ├── icon_back.png │ │ │ └── icon_back@2x.png │ │ ├── icon_back_highlighted.imageset │ │ │ ├── Contents.json │ │ │ ├── icon_back_highlighted.png │ │ │ └── icon_back_highlighted@2x.png │ │ ├── icon_district.imageset │ │ │ ├── Contents.json │ │ │ ├── icon_district.png │ │ │ └── icon_district@2x.png │ │ ├── icon_district_highlighted.imageset │ │ │ ├── Contents.json │ │ │ ├── icon_district_highlighted.png │ │ │ └── icon_district_highlighted@2x.png │ │ ├── icon_map.imageset │ │ │ ├── Contents.json │ │ │ ├── icon_map.png │ │ │ └── icon_map@2x.png │ │ ├── icon_map_highlighted.imageset │ │ │ ├── Contents.json │ │ │ ├── icon_map_highlighted.png │ │ │ └── icon_map_highlighted@2x.png │ │ ├── icon_meituan_logo.imageset │ │ │ ├── Contents.json │ │ │ ├── icon_meituan_logo.png │ │ │ └── icon_meituan_logo@2x.png │ │ ├── icon_search.imageset │ │ │ ├── Contents.json │ │ │ ├── icon_search.png │ │ │ └── icon_search@2x.png │ │ ├── icon_search_highlighted.imageset │ │ │ ├── Contents.json │ │ │ ├── icon_search_highlighted.png │ │ │ └── icon_search_highlighted@2x.png │ │ ├── icon_sort.imageset │ │ │ ├── Contents.json │ │ │ ├── icon_sort.png │ │ │ └── icon_sort@2x.png │ │ └── icon_sort_highlighted.imageset │ │ │ ├── Contents.json │ │ │ ├── icon_sort_highlighted.png │ │ │ └── icon_sort_highlighted@2x.png │ ├── NoData │ │ ├── Contents.json │ │ ├── bg_rotNetwork.imageset │ │ │ ├── Contents.json │ │ │ ├── bg_rotNetwork.png │ │ │ └── bg_rotNetwork@2x.png │ │ ├── ic_order_empty.imageset │ │ │ ├── Contents.json │ │ │ ├── ic_order_empty.png │ │ │ └── ic_order_empty@2x.png │ │ ├── icon_cinemas_empty.imageset │ │ │ ├── Contents.json │ │ │ ├── icon_cinemas_empty.png │ │ │ └── icon_cinemas_empty@2x.png │ │ ├── icon_collects_empty.imageset │ │ │ ├── Contents.json │ │ │ ├── icon_collects_empty.png │ │ │ └── icon_collects_empty@2x.png │ │ ├── icon_deals_empty.imageset │ │ │ ├── Contents.json │ │ │ ├── icon_deals_empty.png │ │ │ └── icon_deals_empty@2x.png │ │ ├── icon_latestBrowse_empty.imageset │ │ │ ├── Contents.json │ │ │ ├── icon_latestBrowse_empty.png │ │ │ └── icon_latestBrowse_empty@2x.png │ │ └── icon_map_search_empty.imageset │ │ │ ├── Contents.json │ │ │ └── icon_map_search_empty@2x.png │ ├── Other │ │ ├── Contents.json │ │ ├── bg_login_textfield.imageset │ │ │ ├── Contents.json │ │ │ ├── bg_login_textfield.png │ │ │ └── bg_login_textfield@2x.png │ │ ├── bg_login_textfield_hl.imageset │ │ │ ├── Contents.json │ │ │ ├── bg_login_textfield_hl.png │ │ │ └── bg_login_textfield_hl@2x.png │ │ ├── share_text_frame.imageset │ │ │ ├── Contents.json │ │ │ ├── share_text_frame.png │ │ │ └── share_text_frame@2x.png │ │ └── share_text_frame_on.imageset │ │ │ ├── Contents.json │ │ │ ├── share_text_frame_on.png │ │ │ └── share_text_frame_on@2x.png │ └── UserMenu │ │ ├── Contents.json │ │ ├── bg_pathMenu_black_normal.imageset │ │ ├── Contents.json │ │ └── bg_pathMenu_black_normal@2x.png │ │ ├── icon_pathMenu_background.imageset │ │ ├── Contents.json │ │ └── icon_pathMenu_background@2x.png │ │ ├── icon_pathMenu_background_highlighted.imageset │ │ ├── Contents.json │ │ └── icon_pathMenu_background_highlighted@2x.png │ │ ├── icon_pathMenu_background_normal.imageset │ │ ├── Contents.json │ │ └── icon_pathMenu_background_normal@2x.png │ │ ├── icon_pathMenu_collect_highlighted.imageset │ │ ├── Contents.json │ │ ├── icon_pathMenu_collect_highlighted.png │ │ └── icon_pathMenu_collect_highlighted@2x.png │ │ ├── icon_pathMenu_collect_normal.imageset │ │ ├── Contents.json │ │ ├── icon_pathMenu_collect_normal.png │ │ └── icon_pathMenu_collect_normal@2x.png │ │ ├── icon_pathMenu_cross_highlighted.imageset │ │ ├── Contents.json │ │ ├── icon_pathMenu_cross_highlighted.png │ │ └── icon_pathMenu_cross_highlighted@2x.png │ │ ├── icon_pathMenu_cross_normal.imageset │ │ ├── Contents.json │ │ ├── icon_pathMenu_cross_normal.png │ │ └── icon_pathMenu_cross_normal@2x.png │ │ ├── icon_pathMenu_mainMine_highlighted.imageset │ │ ├── Contents.json │ │ ├── icon_pathMenu_mainMine_highlighted.png │ │ └── icon_pathMenu_mainMine_highlighted@2x.png │ │ ├── icon_pathMenu_mainMine_normal.imageset │ │ ├── Contents.json │ │ ├── icon_pathMenu_mainMine_normal.png │ │ └── icon_pathMenu_mainMine_normal@2x.png │ │ ├── icon_pathMenu_mine_highlighted.imageset │ │ ├── Contents.json │ │ ├── icon_pathMenu_mine_highlighted.png │ │ └── icon_pathMenu_mine_highlighted@2x.png │ │ ├── icon_pathMenu_mine_normal.imageset │ │ ├── Contents.json │ │ ├── icon_pathMenu_mine_normal.png │ │ └── icon_pathMenu_mine_normal@2x.png │ │ ├── icon_pathMenu_more_highlighted.imageset │ │ ├── Contents.json │ │ ├── icon_pathMenu_more_highlighted.png │ │ └── icon_pathMenu_more_highlighted@2x.png │ │ ├── icon_pathMenu_more_normal.imageset │ │ ├── Contents.json │ │ ├── icon_pathMenu_more_normal.png │ │ └── icon_pathMenu_more_normal@2x.png │ │ ├── icon_pathMenu_scan_highlighted.imageset │ │ ├── Contents.json │ │ ├── icon_pathMenu_scan_highlighted.png │ │ └── icon_pathMenu_scan_highlighted@2x.png │ │ └── icon_pathMenu_scan_normal.imageset │ │ ├── Contents.json │ │ ├── icon_pathMenu_scan_normal.png │ │ └── icon_pathMenu_scan_normal@2x.png ├── Base.lproj │ └── Main.storyboard ├── Classes │ ├── DealDetail │ │ └── VIewController │ │ │ ├── XLDealDetailViewController.h │ │ │ ├── XLDealDetailViewController.m │ │ │ └── XLDealDetailViewController.xib │ ├── Deals │ │ ├── CItyAndRegions │ │ │ ├── Controller │ │ │ │ ├── XLCityMenuViewContriller.h │ │ │ │ ├── XLCityMenuViewContriller.m │ │ │ │ ├── XLCityMenuViewContriller.xib │ │ │ │ ├── XLRegionsViewController.h │ │ │ │ ├── XLRegionsViewController.m │ │ │ │ ├── XLSearchCityController.h │ │ │ │ └── XLSearchCityController.m │ │ │ └── Modal │ │ │ │ ├── XLCityGroupModal.h │ │ │ │ ├── XLCityGroupModal.m │ │ │ │ ├── XLCityModal.h │ │ │ │ ├── XLCityModal.m │ │ │ │ ├── XLRegionModal.h │ │ │ │ └── XLRegionModal.m │ │ ├── Category │ │ │ ├── Controller │ │ │ │ ├── XLCatagoryViewController.h │ │ │ │ └── XLCatagoryViewController.m │ │ │ └── Modal │ │ │ │ ├── XLCategoryModal.h │ │ │ │ └── XLCategoryModal.m │ │ ├── Sort │ │ │ ├── Controller │ │ │ │ ├── XLSortViewController.h │ │ │ │ ├── XLSortViewController.m │ │ │ │ └── XLSortViewController.xib │ │ │ └── Modal │ │ │ │ ├── XLSortModal.h │ │ │ │ └── XLSortModal.m │ │ └── View │ │ │ ├── XLDropDownMenu.h │ │ │ ├── XLDropDownMenu.m │ │ │ ├── XLDropDownMenu.xib │ │ │ ├── XLMainCell.h │ │ │ ├── XLMainCell.m │ │ │ ├── XLNavMenu.h │ │ │ ├── XLNavMenu.m │ │ │ ├── XLNavMenu.xib │ │ │ ├── XLSubViewCell.h │ │ │ └── XLSubViewCell.m │ ├── Main │ │ ├── Controller │ │ │ ├── XLBasicCollectionViewController.h │ │ │ ├── XLBasicCollectionViewController.m │ │ │ ├── XLMainController.h │ │ │ └── XLMainController.m │ │ ├── Modal │ │ │ └── dealModal │ │ │ │ ├── XLBusinesses.h │ │ │ │ ├── XLBusinesses.m │ │ │ │ ├── XLDeal.h │ │ │ │ ├── XLDeal.m │ │ │ │ ├── XLFindDealsParam.h │ │ │ │ ├── XLFindDealsParam.m │ │ │ │ ├── XLFindDealsResult.h │ │ │ │ ├── XLFindDealsResult.m │ │ │ │ ├── XLRestrictionModal.h │ │ │ │ ├── XLRestrictionModal.m │ │ │ │ ├── XLSingleParam.h │ │ │ │ ├── XLSingleParam.m │ │ │ │ ├── XLSingleResult.h │ │ │ │ └── XLSingleResult.m │ │ ├── Tool │ │ │ ├── XLApiTool.h │ │ │ ├── XLApiTool.m │ │ │ ├── XLDataTool.h │ │ │ ├── XLDataTool.m │ │ │ ├── XLDealTool.h │ │ │ └── XLDealTool.m │ │ ├── UINavigationController │ │ │ ├── XLNavController.h │ │ │ └── XLNavController.m │ │ └── View │ │ │ ├── XLBiasLineLabel.h │ │ │ ├── XLBiasLineLabel.m │ │ │ ├── XLCollectionViewCell.h │ │ │ ├── XLCollectionViewCell.m │ │ │ ├── XLCollectionViewCell.xib │ │ │ ├── XLEmptyView.h │ │ │ └── XLEmptyView.m │ ├── Map │ │ ├── Controller │ │ │ ├── XLMapViewController.h │ │ │ ├── XLMapViewController.m │ │ │ └── XLMapViewController.xib │ │ ├── Modal │ │ │ ├── XLAnnotationModal.h │ │ │ └── XLAnnotationModal.m │ │ └── View │ │ │ ├── XLAnnotationRightBtn.h │ │ │ └── XLAnnotationRightBtn.m │ ├── Mine │ │ └── COntroller │ │ │ ├── XLMineCollectionViewController.h │ │ │ └── XLMineCollectionViewController.m │ ├── More │ │ └── Controller │ │ │ ├── XLMoreCollectionViewController.h │ │ │ └── XLMoreCollectionViewController.m │ ├── Other │ │ ├── AppDelegate.h │ │ ├── AppDelegate.m │ │ ├── Category │ │ │ ├── NSArray+Extension.h │ │ │ ├── NSArray+Extension.m │ │ │ ├── NSDate+comperWithOther.h │ │ │ ├── NSDate+comperWithOther.m │ │ │ ├── UIBarButtonItem+Extension.h │ │ │ ├── UIBarButtonItem+Extension.m │ │ │ ├── UIView+AutoLayout.h │ │ │ ├── UIView+AutoLayout.m │ │ │ ├── UIView+Extension.h │ │ │ └── UIView+Extension.m │ │ ├── JSON │ │ │ ├── categories.plist │ │ │ ├── cities.plist │ │ │ ├── cityGroups.plist │ │ │ └── sorts.plist │ │ ├── Lib │ │ │ ├── AwesomeMenu │ │ │ │ ├── AwesomeMenu.h │ │ │ │ ├── AwesomeMenu.m │ │ │ │ ├── AwesomeMenuItem.h │ │ │ │ └── AwesomeMenuItem.m │ │ │ ├── MBProgressHUD │ │ │ │ ├── MBProgressHUD+MJ.h │ │ │ │ ├── MBProgressHUD+MJ.m │ │ │ │ ├── MBProgressHUD.bundle │ │ │ │ │ ├── error.png │ │ │ │ │ ├── error@2x.png │ │ │ │ │ ├── success.png │ │ │ │ │ └── success@2x.png │ │ │ │ ├── MBProgressHUD.h │ │ │ │ └── MBProgressHUD.m │ │ │ ├── MJExtension │ │ │ │ ├── MJArgument.h │ │ │ │ ├── MJArgument.m │ │ │ │ ├── MJConst.h │ │ │ │ ├── MJConst.m │ │ │ │ ├── MJExtension.h │ │ │ │ ├── MJFoundation.h │ │ │ │ ├── MJFoundation.m │ │ │ │ ├── MJIvar.h │ │ │ │ ├── MJIvar.m │ │ │ │ ├── MJMember.h │ │ │ │ ├── MJMember.m │ │ │ │ ├── MJMethod.h │ │ │ │ ├── MJMethod.m │ │ │ │ ├── MJType.h │ │ │ │ ├── MJType.m │ │ │ │ ├── MJTypeEncoding.h │ │ │ │ ├── MJTypeEncoding.m │ │ │ │ ├── NSObject+MJCoding.h │ │ │ │ ├── NSObject+MJCoding.m │ │ │ │ ├── NSObject+MJKeyValue.h │ │ │ │ ├── NSObject+MJKeyValue.m │ │ │ │ ├── NSObject+MJMember.h │ │ │ │ └── NSObject+MJMember.m │ │ │ ├── MJRefresh │ │ │ │ ├── Base │ │ │ │ │ ├── MJRefreshAutoFooter.h │ │ │ │ │ ├── MJRefreshAutoFooter.m │ │ │ │ │ ├── MJRefreshBackFooter.h │ │ │ │ │ ├── MJRefreshBackFooter.m │ │ │ │ │ ├── MJRefreshComponent.h │ │ │ │ │ ├── MJRefreshComponent.m │ │ │ │ │ ├── MJRefreshFooter.h │ │ │ │ │ ├── MJRefreshFooter.m │ │ │ │ │ ├── MJRefreshHeader.h │ │ │ │ │ └── MJRefreshHeader.m │ │ │ │ ├── Custom │ │ │ │ │ ├── Footer │ │ │ │ │ │ ├── Auto │ │ │ │ │ │ │ ├── MJRefreshAutoGifFooter.h │ │ │ │ │ │ │ ├── MJRefreshAutoGifFooter.m │ │ │ │ │ │ │ ├── MJRefreshAutoNormalFooter.h │ │ │ │ │ │ │ ├── MJRefreshAutoNormalFooter.m │ │ │ │ │ │ │ ├── MJRefreshAutoStateFooter.h │ │ │ │ │ │ │ └── MJRefreshAutoStateFooter.m │ │ │ │ │ │ └── Back │ │ │ │ │ │ │ ├── MJRefreshBackGifFooter.h │ │ │ │ │ │ │ ├── MJRefreshBackGifFooter.m │ │ │ │ │ │ │ ├── MJRefreshBackNormalFooter.h │ │ │ │ │ │ │ ├── MJRefreshBackNormalFooter.m │ │ │ │ │ │ │ ├── MJRefreshBackStateFooter.h │ │ │ │ │ │ │ └── MJRefreshBackStateFooter.m │ │ │ │ │ └── Header │ │ │ │ │ │ ├── MJRefreshGifHeader.h │ │ │ │ │ │ ├── MJRefreshGifHeader.m │ │ │ │ │ │ ├── MJRefreshNormalHeader.h │ │ │ │ │ │ ├── MJRefreshNormalHeader.m │ │ │ │ │ │ ├── MJRefreshStateHeader.h │ │ │ │ │ │ └── MJRefreshStateHeader.m │ │ │ │ ├── MJRefresh.bundle │ │ │ │ │ ├── arrow@2x.png │ │ │ │ │ ├── en.lproj │ │ │ │ │ │ └── Localizable.strings │ │ │ │ │ ├── zh-Hans.lproj │ │ │ │ │ │ └── Localizable.strings │ │ │ │ │ └── zh-Hant.lproj │ │ │ │ │ │ └── Localizable.strings │ │ │ │ ├── MJRefresh.h │ │ │ │ ├── MJRefreshConst.h │ │ │ │ ├── MJRefreshConst.m │ │ │ │ ├── NSBundle+MJRefresh.h │ │ │ │ ├── NSBundle+MJRefresh.m │ │ │ │ ├── UIScrollView+MJExtension.h │ │ │ │ ├── UIScrollView+MJExtension.m │ │ │ │ ├── UIScrollView+MJRefresh.h │ │ │ │ ├── UIScrollView+MJRefresh.m │ │ │ │ ├── UIView+MJExtension.h │ │ │ │ └── UIView+MJExtension.m │ │ │ ├── SDWebImage │ │ │ │ ├── MKAnnotationView+WebCache.h │ │ │ │ ├── MKAnnotationView+WebCache.m │ │ │ │ ├── NSData+ImageContentType.h │ │ │ │ ├── NSData+ImageContentType.m │ │ │ │ ├── SDImageCache.h │ │ │ │ ├── SDImageCache.m │ │ │ │ ├── SDWebImageCompat.h │ │ │ │ ├── SDWebImageCompat.m │ │ │ │ ├── SDWebImageDecoder.h │ │ │ │ ├── SDWebImageDecoder.m │ │ │ │ ├── SDWebImageDownloader.h │ │ │ │ ├── SDWebImageDownloader.m │ │ │ │ ├── SDWebImageDownloaderOperation.h │ │ │ │ ├── SDWebImageDownloaderOperation.m │ │ │ │ ├── SDWebImageManager.h │ │ │ │ ├── SDWebImageManager.m │ │ │ │ ├── SDWebImageOperation.h │ │ │ │ ├── SDWebImagePrefetcher.h │ │ │ │ ├── SDWebImagePrefetcher.m │ │ │ │ ├── UIButton+WebCache.h │ │ │ │ ├── UIButton+WebCache.m │ │ │ │ ├── UIImage+GIF.h │ │ │ │ ├── UIImage+GIF.m │ │ │ │ ├── UIImage+MultiFormat.h │ │ │ │ ├── UIImage+MultiFormat.m │ │ │ │ ├── UIImage+WebP.h │ │ │ │ ├── UIImage+WebP.m │ │ │ │ ├── UIImageView+HighlightedWebCache.h │ │ │ │ ├── UIImageView+HighlightedWebCache.m │ │ │ │ ├── UIImageView+WebCache.h │ │ │ │ └── UIImageView+WebCache.m │ │ │ ├── dianpingapi │ │ │ │ ├── DPAPI.h │ │ │ │ ├── DPAPI.m │ │ │ │ ├── DPConstants.h │ │ │ │ ├── DPRequest.h │ │ │ │ └── DPRequest.m │ │ │ └── umeng_ios_social_sdk_5.2.1_arm64_custom │ │ │ │ ├── UMSocial_Sdk_5.2.1 │ │ │ │ ├── Header │ │ │ │ │ ├── UMSocial.h │ │ │ │ │ ├── UMSocialAccountManager.h │ │ │ │ │ ├── UMSocialBar.h │ │ │ │ │ ├── UMSocialConfig.h │ │ │ │ │ ├── UMSocialControllerService.h │ │ │ │ │ ├── UMSocialControllerServiceComment.h │ │ │ │ │ ├── UMSocialData.h │ │ │ │ │ ├── UMSocialDataService.h │ │ │ │ │ ├── UMSocialSnsData.h │ │ │ │ │ ├── UMSocialSnsPlatformManager.h │ │ │ │ │ └── UMSocialSnsService.h │ │ │ │ ├── SocialSDKXib │ │ │ │ │ ├── UMSCommentDetailController.xib │ │ │ │ │ ├── UMSCommentInputController.xib │ │ │ │ │ ├── UMSCommentInputControlleriPad.xib │ │ │ │ │ ├── UMSLoginViewController.xib │ │ │ │ │ ├── UMSShareListController.xib │ │ │ │ │ ├── UMShareEditViewController.xib │ │ │ │ │ ├── UMShareEditViewControlleriPad.xib │ │ │ │ │ └── UMSnsAccountViewController.xib │ │ │ │ ├── UMSocialSDKResourcesNew.bundle │ │ │ │ │ ├── Buttons │ │ │ │ │ │ ├── UMS_Check.png │ │ │ │ │ │ ├── UMS_Check@2x.png │ │ │ │ │ │ ├── UMS_No_Location.png │ │ │ │ │ │ ├── UMS_No_Location@2x.png │ │ │ │ │ │ ├── UMS_User-Avatar-Placeholder@2x.png │ │ │ │ │ │ ├── UMS_User_profile_default@2x.png │ │ │ │ │ │ ├── UMS_account_login@2x.png │ │ │ │ │ │ ├── UMS_add_friend_off.png │ │ │ │ │ │ ├── UMS_add_friend_off@2x.png │ │ │ │ │ │ ├── UMS_add_friend_on.png │ │ │ │ │ │ ├── UMS_add_friend_on@2x.png │ │ │ │ │ │ ├── UMS_comment_input@2x.png │ │ │ │ │ │ ├── UMS_comment_view_cell.png │ │ │ │ │ │ ├── UMS_comment_view_cell_white@2x.png │ │ │ │ │ │ ├── UMS_delete_image_button_normal.png │ │ │ │ │ │ ├── UMS_delete_image_button_normal@2x.png │ │ │ │ │ │ ├── UMS_find@2x.png │ │ │ │ │ │ ├── UMS_follow_off@2x.png │ │ │ │ │ │ ├── UMS_follow_on@2x.png │ │ │ │ │ │ ├── UMS_nav_bar_bg_white@2x.png │ │ │ │ │ │ ├── UMS_nav_button_back.png │ │ │ │ │ │ ├── UMS_nav_button_back@2x.png │ │ │ │ │ │ ├── UMS_nav_button_close.png │ │ │ │ │ │ ├── UMS_nav_button_close@2x.png │ │ │ │ │ │ ├── UMS_nav_button_refresh.png │ │ │ │ │ │ ├── UMS_nav_button_refresh@2x.png │ │ │ │ │ │ ├── UMS_nav_button_send.png │ │ │ │ │ │ ├── UMS_nav_button_send@2x.png │ │ │ │ │ │ ├── UMS_oauth_off.png │ │ │ │ │ │ ├── UMS_oauth_off@2x.png │ │ │ │ │ │ ├── UMS_oauth_on.png │ │ │ │ │ │ ├── UMS_oauth_on@2x.png │ │ │ │ │ │ ├── UMS_place_map.png │ │ │ │ │ │ ├── UMS_place_map@2x.png │ │ │ │ │ │ ├── UMS_place_off.png │ │ │ │ │ │ ├── UMS_place_off@2x.png │ │ │ │ │ │ ├── UMS_place_tap.png │ │ │ │ │ │ ├── UMS_place_tap@2x.png │ │ │ │ │ │ ├── UMS_shake__share_button@2x.png │ │ │ │ │ │ ├── UMS_shake_close.png │ │ │ │ │ │ ├── UMS_shake_close@2x.png │ │ │ │ │ │ ├── UMS_shake_close_tap.png │ │ │ │ │ │ ├── UMS_shake_close_tap@2x.png │ │ │ │ │ │ ├── UMS_share_change_account.png │ │ │ │ │ │ ├── UMS_share_change_account@2x.png │ │ │ │ │ │ ├── UMS_share_change_account_bg@2x.png │ │ │ │ │ │ ├── UMS_share_change_account_tap.png │ │ │ │ │ │ ├── UMS_share_change_account_tap@2x.png │ │ │ │ │ │ ├── UMS_share_change_to_account@2x.png │ │ │ │ │ │ ├── UMS_share_change_to_account_tap@2x.png │ │ │ │ │ │ ├── UMS_share_oauth@2x.png │ │ │ │ │ │ ├── UMS_umeng_share_at.png │ │ │ │ │ │ ├── UMS_umeng_share_at@2x.png │ │ │ │ │ │ ├── UMS_umeng_share_atSel.png │ │ │ │ │ │ ├── UMS_umeng_share_atSel@2x.png │ │ │ │ │ │ ├── UMS_umeng_share_at_tap.png │ │ │ │ │ │ ├── UMS_umeng_share_toolbarBg.png │ │ │ │ │ │ ├── UMS_umeng_share_toolbarBg@2x.png │ │ │ │ │ │ ├── UMS_url_image.png │ │ │ │ │ │ ├── UMS_url_image@2x.png │ │ │ │ │ │ ├── UMS_url_music.png │ │ │ │ │ │ ├── UMS_url_music@2x.png │ │ │ │ │ │ ├── UMS_url_video.png │ │ │ │ │ │ └── UMS_url_video@2x.png │ │ │ │ │ ├── EGO │ │ │ │ │ │ ├── blackArrow.png │ │ │ │ │ │ ├── blackArrow@2x.png │ │ │ │ │ │ ├── blueArrow.png │ │ │ │ │ │ ├── blueArrow@2x.png │ │ │ │ │ │ ├── grayArrow.png │ │ │ │ │ │ ├── grayArrow@2x.png │ │ │ │ │ │ ├── whiteArrow.png │ │ │ │ │ │ └── whiteArrow@2x.png │ │ │ │ │ ├── OtherTheme │ │ │ │ │ │ ├── UMS_actionsheet_panel@2x.png │ │ │ │ │ │ ├── UMS_nav_back_button_normal.png │ │ │ │ │ │ ├── UMS_nav_back_button_normal@2x.png │ │ │ │ │ │ ├── UMS_nav_back_button_tap.png │ │ │ │ │ │ ├── UMS_nav_back_button_tap@2x.png │ │ │ │ │ │ ├── UMS_nav_bar_bg_black.png │ │ │ │ │ │ ├── UMS_nav_bar_bg_black@2x.png │ │ │ │ │ │ ├── UMS_nav_button_normal.png │ │ │ │ │ │ ├── UMS_nav_button_normal@2x.png │ │ │ │ │ │ ├── UMS_nav_button_tap.png │ │ │ │ │ │ └── UMS_nav_button_tap@2x.png │ │ │ │ │ ├── SnsPlatform │ │ │ │ │ │ ├── UMS_alipay_icon.png │ │ │ │ │ │ ├── UMS_alipay_icon@2x.png │ │ │ │ │ │ ├── UMS_alipay_off.png │ │ │ │ │ │ ├── UMS_alipay_off@2x.png │ │ │ │ │ │ ├── UMS_alipay_on@2x.png │ │ │ │ │ │ ├── UMS_alipay_session_icon.png │ │ │ │ │ │ ├── UMS_alipay_session_icon@2x.png │ │ │ │ │ │ ├── UMS_douban_icon.png │ │ │ │ │ │ ├── UMS_douban_icon@2x.png │ │ │ │ │ │ ├── UMS_douban_off.png │ │ │ │ │ │ ├── UMS_douban_off@2x.png │ │ │ │ │ │ ├── UMS_douban_on.png │ │ │ │ │ │ ├── UMS_douban_on@2x.png │ │ │ │ │ │ ├── UMS_email_icon.png │ │ │ │ │ │ ├── UMS_email_icon@2x.png │ │ │ │ │ │ ├── UMS_email_off.png │ │ │ │ │ │ ├── UMS_email_off@2x.png │ │ │ │ │ │ ├── UMS_email_on@2x.png │ │ │ │ │ │ ├── UMS_facebook_icon.png │ │ │ │ │ │ ├── UMS_facebook_icon@2x.png │ │ │ │ │ │ ├── UMS_facebook_off.png │ │ │ │ │ │ ├── UMS_facebook_off@2x.png │ │ │ │ │ │ ├── UMS_facebook_on.png │ │ │ │ │ │ ├── UMS_facebook_on@2x.png │ │ │ │ │ │ ├── UMS_flickr_icon@2x.png │ │ │ │ │ │ ├── UMS_instagram.png │ │ │ │ │ │ ├── UMS_instagram@2x.png │ │ │ │ │ │ ├── UMS_laiwang_session@2x.png │ │ │ │ │ │ ├── UMS_laiwang_timeline@2x.png │ │ │ │ │ │ ├── UMS_line_icon@2x.png │ │ │ │ │ │ ├── UMS_pinterest_icon@2x.png │ │ │ │ │ │ ├── UMS_qq_icon.png │ │ │ │ │ │ ├── UMS_qq_icon@2x.png │ │ │ │ │ │ ├── UMS_qq_off.png │ │ │ │ │ │ ├── UMS_qq_off@2x.png │ │ │ │ │ │ ├── UMS_qq_on.png │ │ │ │ │ │ ├── UMS_qq_on@2x.png │ │ │ │ │ │ ├── UMS_qzone_icon.png │ │ │ │ │ │ ├── UMS_qzone_icon@2x.png │ │ │ │ │ │ ├── UMS_qzone_off.png │ │ │ │ │ │ ├── UMS_qzone_off@2x.png │ │ │ │ │ │ ├── UMS_qzone_on.png │ │ │ │ │ │ ├── UMS_qzone_on@2x.png │ │ │ │ │ │ ├── UMS_renren_icon.png │ │ │ │ │ │ ├── UMS_renren_icon@2x.png │ │ │ │ │ │ ├── UMS_renren_off.png │ │ │ │ │ │ ├── UMS_renren_off@2x.png │ │ │ │ │ │ ├── UMS_renren_on.png │ │ │ │ │ │ ├── UMS_renren_on@2x.png │ │ │ │ │ │ ├── UMS_sina_icon.png │ │ │ │ │ │ ├── UMS_sina_icon@2x.png │ │ │ │ │ │ ├── UMS_sina_off.png │ │ │ │ │ │ ├── UMS_sina_off@2x.png │ │ │ │ │ │ ├── UMS_sina_on.png │ │ │ │ │ │ ├── UMS_sina_on@2x.png │ │ │ │ │ │ ├── UMS_sms_icon.png │ │ │ │ │ │ ├── UMS_sms_icon@2x.png │ │ │ │ │ │ ├── UMS_sms_off.png │ │ │ │ │ │ ├── UMS_sms_off@2x.png │ │ │ │ │ │ ├── UMS_sms_on@2x.png │ │ │ │ │ │ ├── UMS_tencent_icon.png │ │ │ │ │ │ ├── UMS_tencent_icon@2x.png │ │ │ │ │ │ ├── UMS_tencent_off.png │ │ │ │ │ │ ├── UMS_tencent_off@2x.png │ │ │ │ │ │ ├── UMS_tencent_on.png │ │ │ │ │ │ ├── UMS_tencent_on@2x.png │ │ │ │ │ │ ├── UMS_tumblr_icon@2x.png │ │ │ │ │ │ ├── UMS_twitter_icon.png │ │ │ │ │ │ ├── UMS_twitter_icon@2x.png │ │ │ │ │ │ ├── UMS_twitter_off.png │ │ │ │ │ │ ├── UMS_twitter_off@2x.png │ │ │ │ │ │ ├── UMS_twitter_on.png │ │ │ │ │ │ ├── UMS_twitter_on@2x.png │ │ │ │ │ │ ├── UMS_wechat_favorite_icon.png │ │ │ │ │ │ ├── UMS_wechat_favorite_icon@2x.png │ │ │ │ │ │ ├── UMS_wechat_icon.png │ │ │ │ │ │ ├── UMS_wechat_icon@2x.png │ │ │ │ │ │ ├── UMS_wechat_off.png │ │ │ │ │ │ ├── UMS_wechat_off@2x.png │ │ │ │ │ │ ├── UMS_wechat_on@2x.png │ │ │ │ │ │ ├── UMS_wechat_session_icon.png │ │ │ │ │ │ ├── UMS_wechat_session_icon@2x.png │ │ │ │ │ │ ├── UMS_wechat_timeline_icon.png │ │ │ │ │ │ ├── UMS_wechat_timeline_icon@2x.png │ │ │ │ │ │ ├── UMS_wechat_timeline_off.png │ │ │ │ │ │ ├── UMS_wechat_timeline_off@2x.png │ │ │ │ │ │ ├── UMS_wechat_timeline_on.png │ │ │ │ │ │ ├── UMS_wechat_timeline_on@2x.png │ │ │ │ │ │ ├── UMS_whatsapp_icon@2x.png │ │ │ │ │ │ ├── UMS_yixin_session@2x.png │ │ │ │ │ │ └── UMS_yixin_timeline@2x.png │ │ │ │ │ ├── SocialSDKBar │ │ │ │ │ │ ├── UMS_account_normal_white.png │ │ │ │ │ │ ├── UMS_account_normal_white@2x.png │ │ │ │ │ │ ├── UMS_account_tap_white.png │ │ │ │ │ │ ├── UMS_account_tap_white@2x.png │ │ │ │ │ │ ├── UMS_comment_normal_white.png │ │ │ │ │ │ ├── UMS_comment_normal_white@2x.png │ │ │ │ │ │ ├── UMS_comment_tap_white.png │ │ │ │ │ │ ├── UMS_comment_tap_white@2x.png │ │ │ │ │ │ ├── UMS_like_off_white.png │ │ │ │ │ │ ├── UMS_like_off_white@2x.png │ │ │ │ │ │ ├── UMS_like_on_white.png │ │ │ │ │ │ ├── UMS_like_on_white@2x.png │ │ │ │ │ │ ├── UMS_share_normal_white.png │ │ │ │ │ │ ├── UMS_share_normal_white@2x.png │ │ │ │ │ │ ├── UMS_share_tap_white.png │ │ │ │ │ │ └── UMS_share_tap_white@2x.png │ │ │ │ │ └── Sound │ │ │ │ │ │ └── shake_sound.mp3 │ │ │ │ ├── en.lproj │ │ │ │ │ └── UMSocialLocalizable.strings │ │ │ │ ├── libUMSocial_Sdk_5.2.1.a │ │ │ │ └── zh-Hans.lproj │ │ │ │ │ └── UMSocialLocalizable.strings │ │ │ │ ├── UMSocial_Sdk_Extra_Frameworks │ │ │ │ ├── SinaSSO │ │ │ │ │ ├── UMSocialSinaSSOHandler.h │ │ │ │ │ ├── WBHttpRequest+WeiboGame.h │ │ │ │ │ ├── WBHttpRequest+WeiboShare.h │ │ │ │ │ ├── WBHttpRequest+WeiboToken.h │ │ │ │ │ ├── WBHttpRequest+WeiboUser.h │ │ │ │ │ ├── WBHttpRequest.h │ │ │ │ │ ├── WBSDKBasicButton.h │ │ │ │ │ ├── WBSDKCommentButton.h │ │ │ │ │ ├── WBSDKRelationshipButton.h │ │ │ │ │ ├── WeiboSDK+Statistics.h │ │ │ │ │ ├── WeiboSDK.bundle │ │ │ │ │ │ ├── images │ │ │ │ │ │ │ ├── alert_error_icon@2x.png │ │ │ │ │ │ │ ├── alert_success_icon@2x.png │ │ │ │ │ │ │ ├── close.png │ │ │ │ │ │ │ ├── close@2x.png │ │ │ │ │ │ │ ├── common_button_big_blue@2x.png │ │ │ │ │ │ │ ├── common_button_big_blue_disable@2x.png │ │ │ │ │ │ │ ├── common_button_big_blue_highlighted@2x.png │ │ │ │ │ │ │ ├── common_button_white.png │ │ │ │ │ │ │ ├── common_button_white@2x.png │ │ │ │ │ │ │ ├── common_button_white_highlighted.png │ │ │ │ │ │ │ ├── common_button_white_highlighted@2x.png │ │ │ │ │ │ │ ├── common_icon_arrow@2x.png │ │ │ │ │ │ │ ├── compose_keyboardbutton_background.png │ │ │ │ │ │ │ ├── compose_keyboardbutton_background@2x.png │ │ │ │ │ │ │ ├── compose_toolbar_background.png │ │ │ │ │ │ │ ├── compose_toolbar_background@2x.png │ │ │ │ │ │ │ ├── empty_failed.png │ │ │ │ │ │ │ ├── empty_failed@2x.png │ │ │ │ │ │ │ ├── login_background@2x.png │ │ │ │ │ │ │ ├── login_country_background@2x.png │ │ │ │ │ │ │ ├── login_country_background_highlighted@2x.png │ │ │ │ │ │ │ ├── navigationbar_background.png │ │ │ │ │ │ │ ├── navigationbar_background@2x.png │ │ │ │ │ │ │ ├── navigationbar_background_os7.png │ │ │ │ │ │ │ ├── navigationbar_background_os7@2x.png │ │ │ │ │ │ │ ├── progresshud_background@2x.png │ │ │ │ │ │ │ ├── sdk_weibo_logo.png │ │ │ │ │ │ │ ├── sdk_weibo_logo@2x.png │ │ │ │ │ │ │ ├── sdk_weibo_logo@3x.png │ │ │ │ │ │ │ ├── timeline_relationship_icon_addattention.png │ │ │ │ │ │ │ ├── timeline_relationship_icon_addattention@2x.png │ │ │ │ │ │ │ ├── timeline_relationship_icon_addattention@3x.png │ │ │ │ │ │ │ ├── timeline_relationship_icon_attention.png │ │ │ │ │ │ │ ├── timeline_relationship_icon_attention@2x.png │ │ │ │ │ │ │ ├── timeline_relationship_icon_attention@3x.png │ │ │ │ │ │ │ ├── verify_code_button@2x.png │ │ │ │ │ │ │ ├── verify_code_button@3x.png │ │ │ │ │ │ │ ├── verify_code_button_highlighted@2x.png │ │ │ │ │ │ │ └── verify_code_button_highlighted@3x.png │ │ │ │ │ │ └── others │ │ │ │ │ │ │ ├── countryList │ │ │ │ │ │ │ └── mfp.cer │ │ │ │ │ ├── WeiboSDK.h │ │ │ │ │ ├── WeiboUser.h │ │ │ │ │ ├── libSocialSinaSSO.a │ │ │ │ │ └── libWeiboSDK.a │ │ │ │ ├── TencentOpenAPI │ │ │ │ │ ├── TencentOpenAPI.framework │ │ │ │ │ │ ├── Headers │ │ │ │ │ │ │ ├── QQApiInterface.h │ │ │ │ │ │ │ ├── QQApiInterfaceObject.h │ │ │ │ │ │ │ ├── TencentApiInterface.h │ │ │ │ │ │ │ ├── TencentMessageObject.h │ │ │ │ │ │ │ ├── TencentOAuth.h │ │ │ │ │ │ │ ├── TencentOAuthObject.h │ │ │ │ │ │ │ └── sdkdef.h │ │ │ │ │ │ ├── Resources │ │ │ │ │ │ │ └── ios_open_sdk_3.1.0.3_iphone │ │ │ │ │ │ └── TencentOpenAPI │ │ │ │ │ ├── TencentOpenApi_IOS_Bundle.bundle │ │ │ │ │ │ ├── error.png │ │ │ │ │ │ ├── local.html │ │ │ │ │ │ ├── qqicon.png │ │ │ │ │ │ └── success.png │ │ │ │ │ ├── UMSocialQQHandler.h │ │ │ │ │ └── libSocialQQ.a │ │ │ │ └── Wechat │ │ │ │ │ ├── README.txt │ │ │ │ │ ├── UMSocialWechatHandler.h │ │ │ │ │ ├── WXApi.h │ │ │ │ │ ├── WXApiObject.h │ │ │ │ │ ├── WechatAuthSDK.h │ │ │ │ │ ├── libSocialWechat.a │ │ │ │ │ └── libWeChatSDK.a │ │ │ │ └── UMSocial_Sdk_Instructions │ │ │ │ ├── iOS-social-analytics-releasenote.html │ │ │ │ ├── iOS-social-releasenote.html │ │ │ │ ├── ios-social-sdk-comment-detail.html │ │ │ │ ├── ios-social-sdk-comment-quick.html │ │ │ │ ├── ios-social-sdk-like.html │ │ │ │ ├── ios-social-sdk-login-detail.html │ │ │ │ ├── ios-social-sdk-login-quick.html │ │ │ │ ├── ios-social-sdk-shake.html │ │ │ │ ├── ios-social-sdk-share-detail.html │ │ │ │ ├── ios-social-sdk-share-quick.html │ │ │ │ ├── ios-social-sdk-socialbar.html │ │ │ │ └── markdown.css │ │ ├── PrefixHeader.pch │ │ ├── XLShareSingle.h │ │ └── main.m │ ├── Search │ │ └── Controller │ │ │ ├── XLSearchViewController.h │ │ │ └── XLSearchViewController.m │ └── UserInfo │ │ ├── Collect │ │ └── Controller │ │ │ ├── XLCollectViewController.h │ │ │ └── XLCollectViewController.m │ │ ├── NavBasicController │ │ ├── XLNavBasicViewController.h │ │ └── XLNavBasicViewController.m │ │ ├── RecentBrowse │ │ └── Controller │ │ │ ├── XLRecentViewController.h │ │ │ └── XLRecentViewController.m │ │ └── Tool │ │ ├── XLCRTool.h │ │ └── XLCRTool.m └── Info.plist ├── 团购Tests ├── Info.plist └── __Tests.m ├── 团购UITests ├── Info.plist └── __UITests.m └── 注意事项.docx /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLAccount/XLGroupBuy/HEAD/README.md -------------------------------------------------------------------------------- /团购.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLAccount/XLGroupBuy/HEAD/团购.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /团购.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLAccount/XLGroupBuy/HEAD/团购.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /团购.xcodeproj/project.xcworkspace/xcuserdata/xuli.xcuserdatad/UserInterfaceState.xcuserstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLAccount/XLGroupBuy/HEAD/团购.xcodeproj/project.xcworkspace/xcuserdata/xuli.xcuserdatad/UserInterfaceState.xcuserstate -------------------------------------------------------------------------------- /团购.xcodeproj/xcuserdata/xuli.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLAccount/XLGroupBuy/HEAD/团购.xcodeproj/xcuserdata/xuli.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist -------------------------------------------------------------------------------- /团购.xcodeproj/xcuserdata/xuli.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLAccount/XLGroupBuy/HEAD/团购.xcodeproj/xcuserdata/xuli.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /团购.xcodeproj/xcuserdata/xuli.xcuserdatad/xcschemes/团购.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLAccount/XLGroupBuy/HEAD/团购.xcodeproj/xcuserdata/xuli.xcuserdatad/xcschemes/团购.xcscheme -------------------------------------------------------------------------------- /团购/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLAccount/XLGroupBuy/HEAD/团购/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /团购/Assets.xcassets/AppIcon.appiconset/Icon-1024.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLAccount/XLGroupBuy/HEAD/团购/Assets.xcassets/AppIcon.appiconset/Icon-1024.png -------------------------------------------------------------------------------- /团购/Assets.xcassets/AppIcon.appiconset/Icon-29.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLAccount/XLGroupBuy/HEAD/团购/Assets.xcassets/AppIcon.appiconset/Icon-29.png -------------------------------------------------------------------------------- /团购/Assets.xcassets/AppIcon.appiconset/Icon-29@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLAccount/XLGroupBuy/HEAD/团购/Assets.xcassets/AppIcon.appiconset/Icon-29@2x.png -------------------------------------------------------------------------------- /团购/Assets.xcassets/AppIcon.appiconset/Icon-40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLAccount/XLGroupBuy/HEAD/团购/Assets.xcassets/AppIcon.appiconset/Icon-40.png -------------------------------------------------------------------------------- /团购/Assets.xcassets/AppIcon.appiconset/Icon-40@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLAccount/XLGroupBuy/HEAD/团购/Assets.xcassets/AppIcon.appiconset/Icon-40@2x.png -------------------------------------------------------------------------------- /团购/Assets.xcassets/AppIcon.appiconset/Icon-72.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLAccount/XLGroupBuy/HEAD/团购/Assets.xcassets/AppIcon.appiconset/Icon-72.png -------------------------------------------------------------------------------- /团购/Assets.xcassets/AppIcon.appiconset/Icon-72@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLAccount/XLGroupBuy/HEAD/团购/Assets.xcassets/AppIcon.appiconset/Icon-72@2x.png -------------------------------------------------------------------------------- /团购/Assets.xcassets/AppIcon.appiconset/Icon-76.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLAccount/XLGroupBuy/HEAD/团购/Assets.xcassets/AppIcon.appiconset/Icon-76.png -------------------------------------------------------------------------------- /团购/Assets.xcassets/AppIcon.appiconset/Icon-76@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLAccount/XLGroupBuy/HEAD/团购/Assets.xcassets/AppIcon.appiconset/Icon-76@2x.png -------------------------------------------------------------------------------- /团购/Assets.xcassets/AppIcon.appiconset/Icon-Small-50.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLAccount/XLGroupBuy/HEAD/团购/Assets.xcassets/AppIcon.appiconset/Icon-Small-50.png -------------------------------------------------------------------------------- /团购/Assets.xcassets/AppIcon.appiconset/Icon-Small-50@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLAccount/XLGroupBuy/HEAD/团购/Assets.xcassets/AppIcon.appiconset/Icon-Small-50@2x.png -------------------------------------------------------------------------------- /团购/Assets.xcassets/AppIcon.appiconset/u=2979192898,1423858049&fm=21&gp=0.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLAccount/XLGroupBuy/HEAD/团购/Assets.xcassets/AppIcon.appiconset/u=2979192898,1423858049&fm=21&gp=0.jpg -------------------------------------------------------------------------------- /团购/Assets.xcassets/Button/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLAccount/XLGroupBuy/HEAD/团购/Assets.xcassets/Button/Contents.json -------------------------------------------------------------------------------- /团购/Assets.xcassets/Button/btn_filter_normal.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLAccount/XLGroupBuy/HEAD/团购/Assets.xcassets/Button/btn_filter_normal.imageset/Contents.json -------------------------------------------------------------------------------- /团购/Assets.xcassets/Button/btn_filter_normal.imageset/btn_filter_normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLAccount/XLGroupBuy/HEAD/团购/Assets.xcassets/Button/btn_filter_normal.imageset/btn_filter_normal.png -------------------------------------------------------------------------------- /团购/Assets.xcassets/Button/btn_filter_normal.imageset/btn_filter_normal@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLAccount/XLGroupBuy/HEAD/团购/Assets.xcassets/Button/btn_filter_normal.imageset/btn_filter_normal@2x.png -------------------------------------------------------------------------------- /团购/Assets.xcassets/Button/btn_filter_selected.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLAccount/XLGroupBuy/HEAD/团购/Assets.xcassets/Button/btn_filter_selected.imageset/Contents.json -------------------------------------------------------------------------------- /团购/Assets.xcassets/Button/btn_filter_selected.imageset/btn_filter_selected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLAccount/XLGroupBuy/HEAD/团购/Assets.xcassets/Button/btn_filter_selected.imageset/btn_filter_selected.png -------------------------------------------------------------------------------- /团购/Assets.xcassets/Button/btn_filter_selected.imageset/btn_filter_selected@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLAccount/XLGroupBuy/HEAD/团购/Assets.xcassets/Button/btn_filter_selected.imageset/btn_filter_selected@2x.png -------------------------------------------------------------------------------- /团购/Assets.xcassets/CategoryIcon/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLAccount/XLGroupBuy/HEAD/团购/Assets.xcassets/CategoryIcon/Contents.json -------------------------------------------------------------------------------- /团购/Assets.xcassets/CategoryIcon/icon_category_-1.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLAccount/XLGroupBuy/HEAD/团购/Assets.xcassets/CategoryIcon/icon_category_-1.imageset/Contents.json -------------------------------------------------------------------------------- /团购/Assets.xcassets/CategoryIcon/icon_category_-1.imageset/icon_category_-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLAccount/XLGroupBuy/HEAD/团购/Assets.xcassets/CategoryIcon/icon_category_-1.imageset/icon_category_-1.png -------------------------------------------------------------------------------- /团购/Assets.xcassets/CategoryIcon/icon_category_-1.imageset/icon_category_-1@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLAccount/XLGroupBuy/HEAD/团购/Assets.xcassets/CategoryIcon/icon_category_-1.imageset/icon_category_-1@2x.png -------------------------------------------------------------------------------- /团购/Assets.xcassets/CategoryIcon/icon_category_0.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLAccount/XLGroupBuy/HEAD/团购/Assets.xcassets/CategoryIcon/icon_category_0.imageset/Contents.json -------------------------------------------------------------------------------- /团购/Assets.xcassets/CategoryIcon/icon_category_0.imageset/icon_category_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLAccount/XLGroupBuy/HEAD/团购/Assets.xcassets/CategoryIcon/icon_category_0.imageset/icon_category_0.png -------------------------------------------------------------------------------- /团购/Assets.xcassets/CategoryIcon/icon_category_0.imageset/icon_category_0@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLAccount/XLGroupBuy/HEAD/团购/Assets.xcassets/CategoryIcon/icon_category_0.imageset/icon_category_0@2x.png -------------------------------------------------------------------------------- /团购/Assets.xcassets/CategoryIcon/icon_category_1.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLAccount/XLGroupBuy/HEAD/团购/Assets.xcassets/CategoryIcon/icon_category_1.imageset/Contents.json -------------------------------------------------------------------------------- /团购/Assets.xcassets/CategoryIcon/icon_category_1.imageset/icon_category_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLAccount/XLGroupBuy/HEAD/团购/Assets.xcassets/CategoryIcon/icon_category_1.imageset/icon_category_1.png -------------------------------------------------------------------------------- /团购/Assets.xcassets/CategoryIcon/icon_category_1.imageset/icon_category_1@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLAccount/XLGroupBuy/HEAD/团购/Assets.xcassets/CategoryIcon/icon_category_1.imageset/icon_category_1@2x.png -------------------------------------------------------------------------------- /团购/Assets.xcassets/CategoryIcon/icon_category_2.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLAccount/XLGroupBuy/HEAD/团购/Assets.xcassets/CategoryIcon/icon_category_2.imageset/Contents.json -------------------------------------------------------------------------------- /团购/Assets.xcassets/CategoryIcon/icon_category_2.imageset/icon_category_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLAccount/XLGroupBuy/HEAD/团购/Assets.xcassets/CategoryIcon/icon_category_2.imageset/icon_category_2.png -------------------------------------------------------------------------------- /团购/Assets.xcassets/CategoryIcon/icon_category_2.imageset/icon_category_2@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLAccount/XLGroupBuy/HEAD/团购/Assets.xcassets/CategoryIcon/icon_category_2.imageset/icon_category_2@2x.png -------------------------------------------------------------------------------- /团购/Assets.xcassets/CategoryIcon/icon_category_20.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLAccount/XLGroupBuy/HEAD/团购/Assets.xcassets/CategoryIcon/icon_category_20.imageset/Contents.json -------------------------------------------------------------------------------- /团购/Assets.xcassets/CategoryIcon/icon_category_20.imageset/icon_category_20.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLAccount/XLGroupBuy/HEAD/团购/Assets.xcassets/CategoryIcon/icon_category_20.imageset/icon_category_20.png -------------------------------------------------------------------------------- /团购/Assets.xcassets/CategoryIcon/icon_category_20.imageset/icon_category_20@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLAccount/XLGroupBuy/HEAD/团购/Assets.xcassets/CategoryIcon/icon_category_20.imageset/icon_category_20@2x.png -------------------------------------------------------------------------------- /团购/Assets.xcassets/CategoryIcon/icon_category_22.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLAccount/XLGroupBuy/HEAD/团购/Assets.xcassets/CategoryIcon/icon_category_22.imageset/Contents.json -------------------------------------------------------------------------------- /团购/Assets.xcassets/CategoryIcon/icon_category_22.imageset/icon_category_22.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLAccount/XLGroupBuy/HEAD/团购/Assets.xcassets/CategoryIcon/icon_category_22.imageset/icon_category_22.png -------------------------------------------------------------------------------- /团购/Assets.xcassets/CategoryIcon/icon_category_22.imageset/icon_category_22@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLAccount/XLGroupBuy/HEAD/团购/Assets.xcassets/CategoryIcon/icon_category_22.imageset/icon_category_22@2x.png -------------------------------------------------------------------------------- /团购/Assets.xcassets/CategoryIcon/icon_category_3.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLAccount/XLGroupBuy/HEAD/团购/Assets.xcassets/CategoryIcon/icon_category_3.imageset/Contents.json -------------------------------------------------------------------------------- /团购/Assets.xcassets/CategoryIcon/icon_category_3.imageset/icon_category_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLAccount/XLGroupBuy/HEAD/团购/Assets.xcassets/CategoryIcon/icon_category_3.imageset/icon_category_3.png -------------------------------------------------------------------------------- /团购/Assets.xcassets/CategoryIcon/icon_category_3.imageset/icon_category_3@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLAccount/XLGroupBuy/HEAD/团购/Assets.xcassets/CategoryIcon/icon_category_3.imageset/icon_category_3@2x.png -------------------------------------------------------------------------------- /团购/Assets.xcassets/CategoryIcon/icon_category_4.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLAccount/XLGroupBuy/HEAD/团购/Assets.xcassets/CategoryIcon/icon_category_4.imageset/Contents.json -------------------------------------------------------------------------------- /团购/Assets.xcassets/CategoryIcon/icon_category_4.imageset/icon_category_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLAccount/XLGroupBuy/HEAD/团购/Assets.xcassets/CategoryIcon/icon_category_4.imageset/icon_category_4.png -------------------------------------------------------------------------------- /团购/Assets.xcassets/CategoryIcon/icon_category_4.imageset/icon_category_4@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLAccount/XLGroupBuy/HEAD/团购/Assets.xcassets/CategoryIcon/icon_category_4.imageset/icon_category_4@2x.png -------------------------------------------------------------------------------- /团购/Assets.xcassets/CategoryIcon/icon_category_5.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLAccount/XLGroupBuy/HEAD/团购/Assets.xcassets/CategoryIcon/icon_category_5.imageset/Contents.json -------------------------------------------------------------------------------- /团购/Assets.xcassets/CategoryIcon/icon_category_5.imageset/icon_category_5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLAccount/XLGroupBuy/HEAD/团购/Assets.xcassets/CategoryIcon/icon_category_5.imageset/icon_category_5.png -------------------------------------------------------------------------------- /团购/Assets.xcassets/CategoryIcon/icon_category_5.imageset/icon_category_5@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLAccount/XLGroupBuy/HEAD/团购/Assets.xcassets/CategoryIcon/icon_category_5.imageset/icon_category_5@2x.png -------------------------------------------------------------------------------- /团购/Assets.xcassets/CategoryIcon/icon_category_6.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLAccount/XLGroupBuy/HEAD/团购/Assets.xcassets/CategoryIcon/icon_category_6.imageset/Contents.json -------------------------------------------------------------------------------- /团购/Assets.xcassets/CategoryIcon/icon_category_6.imageset/btn_navigation_walking.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLAccount/XLGroupBuy/HEAD/团购/Assets.xcassets/CategoryIcon/icon_category_6.imageset/btn_navigation_walking.png -------------------------------------------------------------------------------- /团购/Assets.xcassets/CategoryIcon/icon_category_6.imageset/btn_navigation_walking@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLAccount/XLGroupBuy/HEAD/团购/Assets.xcassets/CategoryIcon/icon_category_6.imageset/btn_navigation_walking@2x.png -------------------------------------------------------------------------------- /团购/Assets.xcassets/CategoryIcon/icon_category_78.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLAccount/XLGroupBuy/HEAD/团购/Assets.xcassets/CategoryIcon/icon_category_78.imageset/Contents.json -------------------------------------------------------------------------------- /团购/Assets.xcassets/CategoryIcon/icon_category_78.imageset/icon_category_78.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLAccount/XLGroupBuy/HEAD/团购/Assets.xcassets/CategoryIcon/icon_category_78.imageset/icon_category_78.png -------------------------------------------------------------------------------- /团购/Assets.xcassets/CategoryIcon/icon_category_78.imageset/icon_category_78@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLAccount/XLGroupBuy/HEAD/团购/Assets.xcassets/CategoryIcon/icon_category_78.imageset/icon_category_78@2x.png -------------------------------------------------------------------------------- /团购/Assets.xcassets/CategoryIcon/icon_category_99.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLAccount/XLGroupBuy/HEAD/团购/Assets.xcassets/CategoryIcon/icon_category_99.imageset/Contents.json -------------------------------------------------------------------------------- /团购/Assets.xcassets/CategoryIcon/icon_category_99.imageset/icon_category_99.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLAccount/XLGroupBuy/HEAD/团购/Assets.xcassets/CategoryIcon/icon_category_99.imageset/icon_category_99.png -------------------------------------------------------------------------------- /团购/Assets.xcassets/CategoryIcon/icon_category_99.imageset/icon_category_99@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLAccount/XLGroupBuy/HEAD/团购/Assets.xcassets/CategoryIcon/icon_category_99.imageset/icon_category_99@2x.png -------------------------------------------------------------------------------- /团购/Assets.xcassets/CategoryIcon/icon_category_highlighted_-1.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLAccount/XLGroupBuy/HEAD/团购/Assets.xcassets/CategoryIcon/icon_category_highlighted_-1.imageset/Contents.json -------------------------------------------------------------------------------- /团购/Assets.xcassets/CategoryIcon/icon_category_highlighted_-1.imageset/icon_category_highlighted_-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLAccount/XLGroupBuy/HEAD/团购/Assets.xcassets/CategoryIcon/icon_category_highlighted_-1.imageset/icon_category_highlighted_-1.png -------------------------------------------------------------------------------- /团购/Assets.xcassets/CategoryIcon/icon_category_highlighted_-1.imageset/icon_category_highlighted_-1@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLAccount/XLGroupBuy/HEAD/团购/Assets.xcassets/CategoryIcon/icon_category_highlighted_-1.imageset/icon_category_highlighted_-1@2x.png -------------------------------------------------------------------------------- /团购/Assets.xcassets/CategoryIcon/icon_category_highlighted_0.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLAccount/XLGroupBuy/HEAD/团购/Assets.xcassets/CategoryIcon/icon_category_highlighted_0.imageset/Contents.json -------------------------------------------------------------------------------- /团购/Assets.xcassets/CategoryIcon/icon_category_highlighted_0.imageset/icon_category_highlighted_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLAccount/XLGroupBuy/HEAD/团购/Assets.xcassets/CategoryIcon/icon_category_highlighted_0.imageset/icon_category_highlighted_0.png -------------------------------------------------------------------------------- /团购/Assets.xcassets/CategoryIcon/icon_category_highlighted_0.imageset/icon_category_highlighted_0@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLAccount/XLGroupBuy/HEAD/团购/Assets.xcassets/CategoryIcon/icon_category_highlighted_0.imageset/icon_category_highlighted_0@2x.png -------------------------------------------------------------------------------- /团购/Assets.xcassets/CategoryIcon/icon_category_highlighted_1.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLAccount/XLGroupBuy/HEAD/团购/Assets.xcassets/CategoryIcon/icon_category_highlighted_1.imageset/Contents.json -------------------------------------------------------------------------------- /团购/Assets.xcassets/CategoryIcon/icon_category_highlighted_1.imageset/icon_category_highlighted_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLAccount/XLGroupBuy/HEAD/团购/Assets.xcassets/CategoryIcon/icon_category_highlighted_1.imageset/icon_category_highlighted_1.png -------------------------------------------------------------------------------- /团购/Assets.xcassets/CategoryIcon/icon_category_highlighted_1.imageset/icon_category_highlighted_1@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLAccount/XLGroupBuy/HEAD/团购/Assets.xcassets/CategoryIcon/icon_category_highlighted_1.imageset/icon_category_highlighted_1@2x.png -------------------------------------------------------------------------------- /团购/Assets.xcassets/CategoryIcon/icon_category_highlighted_2.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLAccount/XLGroupBuy/HEAD/团购/Assets.xcassets/CategoryIcon/icon_category_highlighted_2.imageset/Contents.json -------------------------------------------------------------------------------- /团购/Assets.xcassets/CategoryIcon/icon_category_highlighted_2.imageset/icon_category_highlighted_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLAccount/XLGroupBuy/HEAD/团购/Assets.xcassets/CategoryIcon/icon_category_highlighted_2.imageset/icon_category_highlighted_2.png -------------------------------------------------------------------------------- /团购/Assets.xcassets/CategoryIcon/icon_category_highlighted_2.imageset/icon_category_highlighted_2@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLAccount/XLGroupBuy/HEAD/团购/Assets.xcassets/CategoryIcon/icon_category_highlighted_2.imageset/icon_category_highlighted_2@2x.png -------------------------------------------------------------------------------- /团购/Assets.xcassets/CategoryIcon/icon_category_highlighted_20.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLAccount/XLGroupBuy/HEAD/团购/Assets.xcassets/CategoryIcon/icon_category_highlighted_20.imageset/Contents.json -------------------------------------------------------------------------------- /团购/Assets.xcassets/CategoryIcon/icon_category_highlighted_20.imageset/icon_category_highlighted_20.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLAccount/XLGroupBuy/HEAD/团购/Assets.xcassets/CategoryIcon/icon_category_highlighted_20.imageset/icon_category_highlighted_20.png -------------------------------------------------------------------------------- /团购/Assets.xcassets/CategoryIcon/icon_category_highlighted_20.imageset/icon_category_highlighted_20@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLAccount/XLGroupBuy/HEAD/团购/Assets.xcassets/CategoryIcon/icon_category_highlighted_20.imageset/icon_category_highlighted_20@2x.png -------------------------------------------------------------------------------- /团购/Assets.xcassets/CategoryIcon/icon_category_highlighted_22.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLAccount/XLGroupBuy/HEAD/团购/Assets.xcassets/CategoryIcon/icon_category_highlighted_22.imageset/Contents.json -------------------------------------------------------------------------------- /团购/Assets.xcassets/CategoryIcon/icon_category_highlighted_22.imageset/icon_category_highlighted_22.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLAccount/XLGroupBuy/HEAD/团购/Assets.xcassets/CategoryIcon/icon_category_highlighted_22.imageset/icon_category_highlighted_22.png -------------------------------------------------------------------------------- /团购/Assets.xcassets/CategoryIcon/icon_category_highlighted_22.imageset/icon_category_highlighted_22@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLAccount/XLGroupBuy/HEAD/团购/Assets.xcassets/CategoryIcon/icon_category_highlighted_22.imageset/icon_category_highlighted_22@2x.png -------------------------------------------------------------------------------- /团购/Assets.xcassets/CategoryIcon/icon_category_highlighted_3.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLAccount/XLGroupBuy/HEAD/团购/Assets.xcassets/CategoryIcon/icon_category_highlighted_3.imageset/Contents.json -------------------------------------------------------------------------------- /团购/Assets.xcassets/CategoryIcon/icon_category_highlighted_3.imageset/icon_category_highlighted_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLAccount/XLGroupBuy/HEAD/团购/Assets.xcassets/CategoryIcon/icon_category_highlighted_3.imageset/icon_category_highlighted_3.png -------------------------------------------------------------------------------- /团购/Assets.xcassets/CategoryIcon/icon_category_highlighted_3.imageset/icon_category_highlighted_3@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLAccount/XLGroupBuy/HEAD/团购/Assets.xcassets/CategoryIcon/icon_category_highlighted_3.imageset/icon_category_highlighted_3@2x.png -------------------------------------------------------------------------------- /团购/Assets.xcassets/CategoryIcon/icon_category_highlighted_4.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLAccount/XLGroupBuy/HEAD/团购/Assets.xcassets/CategoryIcon/icon_category_highlighted_4.imageset/Contents.json -------------------------------------------------------------------------------- /团购/Assets.xcassets/CategoryIcon/icon_category_highlighted_4.imageset/icon_category_highlighted_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLAccount/XLGroupBuy/HEAD/团购/Assets.xcassets/CategoryIcon/icon_category_highlighted_4.imageset/icon_category_highlighted_4.png -------------------------------------------------------------------------------- /团购/Assets.xcassets/CategoryIcon/icon_category_highlighted_4.imageset/icon_category_highlighted_4@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLAccount/XLGroupBuy/HEAD/团购/Assets.xcassets/CategoryIcon/icon_category_highlighted_4.imageset/icon_category_highlighted_4@2x.png -------------------------------------------------------------------------------- /团购/Assets.xcassets/CategoryIcon/icon_category_highlighted_5.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLAccount/XLGroupBuy/HEAD/团购/Assets.xcassets/CategoryIcon/icon_category_highlighted_5.imageset/Contents.json -------------------------------------------------------------------------------- /团购/Assets.xcassets/CategoryIcon/icon_category_highlighted_5.imageset/icon_category_highlighted_5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLAccount/XLGroupBuy/HEAD/团购/Assets.xcassets/CategoryIcon/icon_category_highlighted_5.imageset/icon_category_highlighted_5.png -------------------------------------------------------------------------------- /团购/Assets.xcassets/CategoryIcon/icon_category_highlighted_5.imageset/icon_category_highlighted_5@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLAccount/XLGroupBuy/HEAD/团购/Assets.xcassets/CategoryIcon/icon_category_highlighted_5.imageset/icon_category_highlighted_5@2x.png -------------------------------------------------------------------------------- /团购/Assets.xcassets/CategoryIcon/icon_category_highlighted_6.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLAccount/XLGroupBuy/HEAD/团购/Assets.xcassets/CategoryIcon/icon_category_highlighted_6.imageset/Contents.json -------------------------------------------------------------------------------- /团购/Assets.xcassets/CategoryIcon/icon_category_highlighted_6.imageset/btn_navigation_walking_pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLAccount/XLGroupBuy/HEAD/团购/Assets.xcassets/CategoryIcon/icon_category_highlighted_6.imageset/btn_navigation_walking_pressed.png -------------------------------------------------------------------------------- /团购/Assets.xcassets/CategoryIcon/icon_category_highlighted_6.imageset/btn_navigation_walking_pressed@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLAccount/XLGroupBuy/HEAD/团购/Assets.xcassets/CategoryIcon/icon_category_highlighted_6.imageset/btn_navigation_walking_pressed@2x.png -------------------------------------------------------------------------------- /团购/Assets.xcassets/CategoryIcon/icon_category_highlighted_78.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLAccount/XLGroupBuy/HEAD/团购/Assets.xcassets/CategoryIcon/icon_category_highlighted_78.imageset/Contents.json -------------------------------------------------------------------------------- /团购/Assets.xcassets/CategoryIcon/icon_category_highlighted_78.imageset/icon_category_highlighted_78.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLAccount/XLGroupBuy/HEAD/团购/Assets.xcassets/CategoryIcon/icon_category_highlighted_78.imageset/icon_category_highlighted_78.png -------------------------------------------------------------------------------- /团购/Assets.xcassets/CategoryIcon/icon_category_highlighted_78.imageset/icon_category_highlighted_78@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLAccount/XLGroupBuy/HEAD/团购/Assets.xcassets/CategoryIcon/icon_category_highlighted_78.imageset/icon_category_highlighted_78@2x.png -------------------------------------------------------------------------------- /团购/Assets.xcassets/CategoryIcon/icon_category_highlighted_99.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLAccount/XLGroupBuy/HEAD/团购/Assets.xcassets/CategoryIcon/icon_category_highlighted_99.imageset/Contents.json -------------------------------------------------------------------------------- /团购/Assets.xcassets/CategoryIcon/icon_category_highlighted_99.imageset/icon_category_highlighted_99.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLAccount/XLGroupBuy/HEAD/团购/Assets.xcassets/CategoryIcon/icon_category_highlighted_99.imageset/icon_category_highlighted_99.png -------------------------------------------------------------------------------- /团购/Assets.xcassets/CategoryIcon/icon_category_highlighted_99.imageset/icon_category_highlighted_99@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLAccount/XLGroupBuy/HEAD/团购/Assets.xcassets/CategoryIcon/icon_category_highlighted_99.imageset/icon_category_highlighted_99@2x.png -------------------------------------------------------------------------------- /团购/Assets.xcassets/CategoryIcon/icon_filter_arrow.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLAccount/XLGroupBuy/HEAD/团购/Assets.xcassets/CategoryIcon/icon_filter_arrow.imageset/Contents.json -------------------------------------------------------------------------------- /团购/Assets.xcassets/CategoryIcon/icon_filter_arrow.imageset/icon_filter_arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLAccount/XLGroupBuy/HEAD/团购/Assets.xcassets/CategoryIcon/icon_filter_arrow.imageset/icon_filter_arrow.png -------------------------------------------------------------------------------- /团购/Assets.xcassets/CategoryIcon/icon_filter_arrow.imageset/icon_filter_arrow@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLAccount/XLGroupBuy/HEAD/团购/Assets.xcassets/CategoryIcon/icon_filter_arrow.imageset/icon_filter_arrow@2x.png -------------------------------------------------------------------------------- /团购/Assets.xcassets/CategoryIcon/icon_filter_category_-1.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLAccount/XLGroupBuy/HEAD/团购/Assets.xcassets/CategoryIcon/icon_filter_category_-1.imageset/Contents.json -------------------------------------------------------------------------------- /团购/Assets.xcassets/CategoryIcon/icon_filter_category_-1.imageset/icon_filter_category_-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLAccount/XLGroupBuy/HEAD/团购/Assets.xcassets/CategoryIcon/icon_filter_category_-1.imageset/icon_filter_category_-1.png -------------------------------------------------------------------------------- /团购/Assets.xcassets/CategoryIcon/icon_filter_category_-1.imageset/icon_filter_category_-1@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLAccount/XLGroupBuy/HEAD/团购/Assets.xcassets/CategoryIcon/icon_filter_category_-1.imageset/icon_filter_category_-1@2x.png -------------------------------------------------------------------------------- /团购/Assets.xcassets/CategoryIcon/icon_filter_category_0.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLAccount/XLGroupBuy/HEAD/团购/Assets.xcassets/CategoryIcon/icon_filter_category_0.imageset/Contents.json -------------------------------------------------------------------------------- /团购/Assets.xcassets/CategoryIcon/icon_filter_category_0.imageset/icon_filter_category_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLAccount/XLGroupBuy/HEAD/团购/Assets.xcassets/CategoryIcon/icon_filter_category_0.imageset/icon_filter_category_0.png -------------------------------------------------------------------------------- /团购/Assets.xcassets/CategoryIcon/icon_filter_category_0.imageset/icon_filter_category_0@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLAccount/XLGroupBuy/HEAD/团购/Assets.xcassets/CategoryIcon/icon_filter_category_0.imageset/icon_filter_category_0@2x.png -------------------------------------------------------------------------------- /团购/Assets.xcassets/CategoryIcon/icon_filter_category_1.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLAccount/XLGroupBuy/HEAD/团购/Assets.xcassets/CategoryIcon/icon_filter_category_1.imageset/Contents.json -------------------------------------------------------------------------------- /团购/Assets.xcassets/CategoryIcon/icon_filter_category_1.imageset/icon_filter_category_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLAccount/XLGroupBuy/HEAD/团购/Assets.xcassets/CategoryIcon/icon_filter_category_1.imageset/icon_filter_category_1.png -------------------------------------------------------------------------------- /团购/Assets.xcassets/CategoryIcon/icon_filter_category_1.imageset/icon_filter_category_1@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLAccount/XLGroupBuy/HEAD/团购/Assets.xcassets/CategoryIcon/icon_filter_category_1.imageset/icon_filter_category_1@2x.png -------------------------------------------------------------------------------- /团购/Assets.xcassets/CategoryIcon/icon_filter_category_2.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLAccount/XLGroupBuy/HEAD/团购/Assets.xcassets/CategoryIcon/icon_filter_category_2.imageset/Contents.json -------------------------------------------------------------------------------- /团购/Assets.xcassets/CategoryIcon/icon_filter_category_2.imageset/icon_filter_category_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLAccount/XLGroupBuy/HEAD/团购/Assets.xcassets/CategoryIcon/icon_filter_category_2.imageset/icon_filter_category_2.png -------------------------------------------------------------------------------- /团购/Assets.xcassets/CategoryIcon/icon_filter_category_2.imageset/icon_filter_category_2@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLAccount/XLGroupBuy/HEAD/团购/Assets.xcassets/CategoryIcon/icon_filter_category_2.imageset/icon_filter_category_2@2x.png -------------------------------------------------------------------------------- /团购/Assets.xcassets/CategoryIcon/icon_filter_category_20.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLAccount/XLGroupBuy/HEAD/团购/Assets.xcassets/CategoryIcon/icon_filter_category_20.imageset/Contents.json -------------------------------------------------------------------------------- /团购/Assets.xcassets/CategoryIcon/icon_filter_category_20.imageset/icon_filter_category_20.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLAccount/XLGroupBuy/HEAD/团购/Assets.xcassets/CategoryIcon/icon_filter_category_20.imageset/icon_filter_category_20.png -------------------------------------------------------------------------------- /团购/Assets.xcassets/CategoryIcon/icon_filter_category_20.imageset/icon_filter_category_20@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLAccount/XLGroupBuy/HEAD/团购/Assets.xcassets/CategoryIcon/icon_filter_category_20.imageset/icon_filter_category_20@2x.png -------------------------------------------------------------------------------- /团购/Assets.xcassets/CategoryIcon/icon_filter_category_22.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLAccount/XLGroupBuy/HEAD/团购/Assets.xcassets/CategoryIcon/icon_filter_category_22.imageset/Contents.json -------------------------------------------------------------------------------- /团购/Assets.xcassets/CategoryIcon/icon_filter_category_22.imageset/icon_filter_category_22.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLAccount/XLGroupBuy/HEAD/团购/Assets.xcassets/CategoryIcon/icon_filter_category_22.imageset/icon_filter_category_22.png -------------------------------------------------------------------------------- /团购/Assets.xcassets/CategoryIcon/icon_filter_category_22.imageset/icon_filter_category_22@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLAccount/XLGroupBuy/HEAD/团购/Assets.xcassets/CategoryIcon/icon_filter_category_22.imageset/icon_filter_category_22@2x.png -------------------------------------------------------------------------------- /团购/Assets.xcassets/CategoryIcon/icon_filter_category_3.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLAccount/XLGroupBuy/HEAD/团购/Assets.xcassets/CategoryIcon/icon_filter_category_3.imageset/Contents.json -------------------------------------------------------------------------------- /团购/Assets.xcassets/CategoryIcon/icon_filter_category_3.imageset/icon_filter_category_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLAccount/XLGroupBuy/HEAD/团购/Assets.xcassets/CategoryIcon/icon_filter_category_3.imageset/icon_filter_category_3.png -------------------------------------------------------------------------------- /团购/Assets.xcassets/CategoryIcon/icon_filter_category_3.imageset/icon_filter_category_3@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLAccount/XLGroupBuy/HEAD/团购/Assets.xcassets/CategoryIcon/icon_filter_category_3.imageset/icon_filter_category_3@2x.png -------------------------------------------------------------------------------- /团购/Assets.xcassets/CategoryIcon/icon_filter_category_4.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLAccount/XLGroupBuy/HEAD/团购/Assets.xcassets/CategoryIcon/icon_filter_category_4.imageset/Contents.json -------------------------------------------------------------------------------- /团购/Assets.xcassets/CategoryIcon/icon_filter_category_4.imageset/icon_filter_category_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLAccount/XLGroupBuy/HEAD/团购/Assets.xcassets/CategoryIcon/icon_filter_category_4.imageset/icon_filter_category_4.png -------------------------------------------------------------------------------- /团购/Assets.xcassets/CategoryIcon/icon_filter_category_4.imageset/icon_filter_category_4@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLAccount/XLGroupBuy/HEAD/团购/Assets.xcassets/CategoryIcon/icon_filter_category_4.imageset/icon_filter_category_4@2x.png -------------------------------------------------------------------------------- /团购/Assets.xcassets/CategoryIcon/icon_filter_category_5.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLAccount/XLGroupBuy/HEAD/团购/Assets.xcassets/CategoryIcon/icon_filter_category_5.imageset/Contents.json -------------------------------------------------------------------------------- /团购/Assets.xcassets/CategoryIcon/icon_filter_category_5.imageset/icon_filter_category_5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLAccount/XLGroupBuy/HEAD/团购/Assets.xcassets/CategoryIcon/icon_filter_category_5.imageset/icon_filter_category_5.png -------------------------------------------------------------------------------- /团购/Assets.xcassets/CategoryIcon/icon_filter_category_5.imageset/icon_filter_category_5@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLAccount/XLGroupBuy/HEAD/团购/Assets.xcassets/CategoryIcon/icon_filter_category_5.imageset/icon_filter_category_5@2x.png -------------------------------------------------------------------------------- /团购/Assets.xcassets/CategoryIcon/icon_filter_category_78.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLAccount/XLGroupBuy/HEAD/团购/Assets.xcassets/CategoryIcon/icon_filter_category_78.imageset/Contents.json -------------------------------------------------------------------------------- /团购/Assets.xcassets/CategoryIcon/icon_filter_category_78.imageset/icon_filter_category_78.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLAccount/XLGroupBuy/HEAD/团购/Assets.xcassets/CategoryIcon/icon_filter_category_78.imageset/icon_filter_category_78.png -------------------------------------------------------------------------------- /团购/Assets.xcassets/CategoryIcon/icon_filter_category_78.imageset/icon_filter_category_78@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLAccount/XLGroupBuy/HEAD/团购/Assets.xcassets/CategoryIcon/icon_filter_category_78.imageset/icon_filter_category_78@2x.png -------------------------------------------------------------------------------- /团购/Assets.xcassets/CategoryIcon/icon_filter_category_99.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLAccount/XLGroupBuy/HEAD/团购/Assets.xcassets/CategoryIcon/icon_filter_category_99.imageset/Contents.json -------------------------------------------------------------------------------- /团购/Assets.xcassets/CategoryIcon/icon_filter_category_99.imageset/icon_filter_category_99.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLAccount/XLGroupBuy/HEAD/团购/Assets.xcassets/CategoryIcon/icon_filter_category_99.imageset/icon_filter_category_99.png -------------------------------------------------------------------------------- /团购/Assets.xcassets/CategoryIcon/icon_filter_category_99.imageset/icon_filter_category_99@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLAccount/XLGroupBuy/HEAD/团购/Assets.xcassets/CategoryIcon/icon_filter_category_99.imageset/icon_filter_category_99@2x.png -------------------------------------------------------------------------------- /团购/Assets.xcassets/CategoryIcon/icon_filter_category_highlighted_-1.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLAccount/XLGroupBuy/HEAD/团购/Assets.xcassets/CategoryIcon/icon_filter_category_highlighted_-1.imageset/Contents.json -------------------------------------------------------------------------------- /团购/Assets.xcassets/CategoryIcon/icon_filter_category_highlighted_-1.imageset/icon_filter_category_highlighted_-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLAccount/XLGroupBuy/HEAD/团购/Assets.xcassets/CategoryIcon/icon_filter_category_highlighted_-1.imageset/icon_filter_category_highlighted_-1.png -------------------------------------------------------------------------------- /团购/Assets.xcassets/CategoryIcon/icon_filter_category_highlighted_0.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLAccount/XLGroupBuy/HEAD/团购/Assets.xcassets/CategoryIcon/icon_filter_category_highlighted_0.imageset/Contents.json -------------------------------------------------------------------------------- /团购/Assets.xcassets/CategoryIcon/icon_filter_category_highlighted_0.imageset/icon_filter_category_highlighted_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLAccount/XLGroupBuy/HEAD/团购/Assets.xcassets/CategoryIcon/icon_filter_category_highlighted_0.imageset/icon_filter_category_highlighted_0.png -------------------------------------------------------------------------------- /团购/Assets.xcassets/CategoryIcon/icon_filter_category_highlighted_1.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLAccount/XLGroupBuy/HEAD/团购/Assets.xcassets/CategoryIcon/icon_filter_category_highlighted_1.imageset/Contents.json -------------------------------------------------------------------------------- /团购/Assets.xcassets/CategoryIcon/icon_filter_category_highlighted_1.imageset/icon_filter_category_highlighted_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLAccount/XLGroupBuy/HEAD/团购/Assets.xcassets/CategoryIcon/icon_filter_category_highlighted_1.imageset/icon_filter_category_highlighted_1.png -------------------------------------------------------------------------------- /团购/Assets.xcassets/CategoryIcon/icon_filter_category_highlighted_2.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLAccount/XLGroupBuy/HEAD/团购/Assets.xcassets/CategoryIcon/icon_filter_category_highlighted_2.imageset/Contents.json -------------------------------------------------------------------------------- /团购/Assets.xcassets/CategoryIcon/icon_filter_category_highlighted_2.imageset/icon_filter_category_highlighted_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLAccount/XLGroupBuy/HEAD/团购/Assets.xcassets/CategoryIcon/icon_filter_category_highlighted_2.imageset/icon_filter_category_highlighted_2.png -------------------------------------------------------------------------------- /团购/Assets.xcassets/CategoryIcon/icon_filter_category_highlighted_20.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLAccount/XLGroupBuy/HEAD/团购/Assets.xcassets/CategoryIcon/icon_filter_category_highlighted_20.imageset/Contents.json -------------------------------------------------------------------------------- /团购/Assets.xcassets/CategoryIcon/icon_filter_category_highlighted_20.imageset/icon_filter_category_highlighted_20.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLAccount/XLGroupBuy/HEAD/团购/Assets.xcassets/CategoryIcon/icon_filter_category_highlighted_20.imageset/icon_filter_category_highlighted_20.png -------------------------------------------------------------------------------- /团购/Assets.xcassets/CategoryIcon/icon_filter_category_highlighted_22.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLAccount/XLGroupBuy/HEAD/团购/Assets.xcassets/CategoryIcon/icon_filter_category_highlighted_22.imageset/Contents.json -------------------------------------------------------------------------------- /团购/Assets.xcassets/CategoryIcon/icon_filter_category_highlighted_22.imageset/icon_filter_category_highlighted_22.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLAccount/XLGroupBuy/HEAD/团购/Assets.xcassets/CategoryIcon/icon_filter_category_highlighted_22.imageset/icon_filter_category_highlighted_22.png -------------------------------------------------------------------------------- /团购/Assets.xcassets/CategoryIcon/icon_filter_category_highlighted_3.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLAccount/XLGroupBuy/HEAD/团购/Assets.xcassets/CategoryIcon/icon_filter_category_highlighted_3.imageset/Contents.json -------------------------------------------------------------------------------- /团购/Assets.xcassets/CategoryIcon/icon_filter_category_highlighted_3.imageset/icon_filter_category_highlighted_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLAccount/XLGroupBuy/HEAD/团购/Assets.xcassets/CategoryIcon/icon_filter_category_highlighted_3.imageset/icon_filter_category_highlighted_3.png -------------------------------------------------------------------------------- /团购/Assets.xcassets/CategoryIcon/icon_filter_category_highlighted_4.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLAccount/XLGroupBuy/HEAD/团购/Assets.xcassets/CategoryIcon/icon_filter_category_highlighted_4.imageset/Contents.json -------------------------------------------------------------------------------- /团购/Assets.xcassets/CategoryIcon/icon_filter_category_highlighted_4.imageset/icon_filter_category_highlighted_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLAccount/XLGroupBuy/HEAD/团购/Assets.xcassets/CategoryIcon/icon_filter_category_highlighted_4.imageset/icon_filter_category_highlighted_4.png -------------------------------------------------------------------------------- /团购/Assets.xcassets/CategoryIcon/icon_filter_category_highlighted_5.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLAccount/XLGroupBuy/HEAD/团购/Assets.xcassets/CategoryIcon/icon_filter_category_highlighted_5.imageset/Contents.json -------------------------------------------------------------------------------- /团购/Assets.xcassets/CategoryIcon/icon_filter_category_highlighted_5.imageset/icon_filter_category_highlighted_5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLAccount/XLGroupBuy/HEAD/团购/Assets.xcassets/CategoryIcon/icon_filter_category_highlighted_5.imageset/icon_filter_category_highlighted_5.png -------------------------------------------------------------------------------- /团购/Assets.xcassets/CategoryIcon/icon_filter_category_highlighted_78.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLAccount/XLGroupBuy/HEAD/团购/Assets.xcassets/CategoryIcon/icon_filter_category_highlighted_78.imageset/Contents.json -------------------------------------------------------------------------------- /团购/Assets.xcassets/CategoryIcon/icon_filter_category_highlighted_78.imageset/icon_filter_category_highlighted_78.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLAccount/XLGroupBuy/HEAD/团购/Assets.xcassets/CategoryIcon/icon_filter_category_highlighted_78.imageset/icon_filter_category_highlighted_78.png -------------------------------------------------------------------------------- /团购/Assets.xcassets/CategoryIcon/icon_filter_category_highlighted_99.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLAccount/XLGroupBuy/HEAD/团购/Assets.xcassets/CategoryIcon/icon_filter_category_highlighted_99.imageset/Contents.json -------------------------------------------------------------------------------- /团购/Assets.xcassets/CategoryIcon/icon_filter_category_highlighted_99.imageset/icon_filter_category_highlighted_99.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLAccount/XLGroupBuy/HEAD/团购/Assets.xcassets/CategoryIcon/icon_filter_category_highlighted_99.imageset/icon_filter_category_highlighted_99.png -------------------------------------------------------------------------------- /团购/Assets.xcassets/Cell/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLAccount/XLGroupBuy/HEAD/团购/Assets.xcassets/Cell/Contents.json -------------------------------------------------------------------------------- /团购/Assets.xcassets/Cell/bg_dealcell.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLAccount/XLGroupBuy/HEAD/团购/Assets.xcassets/Cell/bg_dealcell.imageset/Contents.json -------------------------------------------------------------------------------- /团购/Assets.xcassets/Cell/bg_dealcell.imageset/bg_dealcell.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLAccount/XLGroupBuy/HEAD/团购/Assets.xcassets/Cell/bg_dealcell.imageset/bg_dealcell.png -------------------------------------------------------------------------------- /团购/Assets.xcassets/Cell/bg_dealcell.imageset/bg_dealcell@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLAccount/XLGroupBuy/HEAD/团购/Assets.xcassets/Cell/bg_dealcell.imageset/bg_dealcell@2x.png -------------------------------------------------------------------------------- /团购/Assets.xcassets/Cell/bg_ordercell.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLAccount/XLGroupBuy/HEAD/团购/Assets.xcassets/Cell/bg_ordercell.imageset/Contents.json -------------------------------------------------------------------------------- /团购/Assets.xcassets/Cell/bg_ordercell.imageset/bg_ordercell.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLAccount/XLGroupBuy/HEAD/团购/Assets.xcassets/Cell/bg_ordercell.imageset/bg_ordercell.png -------------------------------------------------------------------------------- /团购/Assets.xcassets/Cell/bg_ordercell.imageset/bg_ordercell@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLAccount/XLGroupBuy/HEAD/团购/Assets.xcassets/Cell/bg_ordercell.imageset/bg_ordercell@2x.png -------------------------------------------------------------------------------- /团购/Assets.xcassets/Cell/ic_choosed.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLAccount/XLGroupBuy/HEAD/团购/Assets.xcassets/Cell/ic_choosed.imageset/Contents.json -------------------------------------------------------------------------------- /团购/Assets.xcassets/Cell/ic_choosed.imageset/ic_choosed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLAccount/XLGroupBuy/HEAD/团购/Assets.xcassets/Cell/ic_choosed.imageset/ic_choosed.png -------------------------------------------------------------------------------- /团购/Assets.xcassets/Cell/ic_choosed_large.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLAccount/XLGroupBuy/HEAD/团购/Assets.xcassets/Cell/ic_choosed_large.imageset/Contents.json -------------------------------------------------------------------------------- /团购/Assets.xcassets/Cell/ic_choosed_large.imageset/ic_choosed_large.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLAccount/XLGroupBuy/HEAD/团购/Assets.xcassets/Cell/ic_choosed_large.imageset/ic_choosed_large.png -------------------------------------------------------------------------------- /团购/Assets.xcassets/Cell/ic_deal_new.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLAccount/XLGroupBuy/HEAD/团购/Assets.xcassets/Cell/ic_deal_new.imageset/Contents.json -------------------------------------------------------------------------------- /团购/Assets.xcassets/Cell/ic_deal_new.imageset/ic_deal_new.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLAccount/XLGroupBuy/HEAD/团购/Assets.xcassets/Cell/ic_deal_new.imageset/ic_deal_new.png -------------------------------------------------------------------------------- /团购/Assets.xcassets/Cell/ic_deal_new.imageset/ic_deal_new@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLAccount/XLGroupBuy/HEAD/团购/Assets.xcassets/Cell/ic_deal_new.imageset/ic_deal_new@2x.png -------------------------------------------------------------------------------- /团购/Assets.xcassets/Cell/ic_deal_notOrder.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLAccount/XLGroupBuy/HEAD/团购/Assets.xcassets/Cell/ic_deal_notOrder.imageset/Contents.json -------------------------------------------------------------------------------- /团购/Assets.xcassets/Cell/ic_deal_notOrder.imageset/ic_deal_notOrder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLAccount/XLGroupBuy/HEAD/团购/Assets.xcassets/Cell/ic_deal_notOrder.imageset/ic_deal_notOrder.png -------------------------------------------------------------------------------- /团购/Assets.xcassets/Cell/ic_deal_notOrder.imageset/ic_deal_notOrder@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLAccount/XLGroupBuy/HEAD/团购/Assets.xcassets/Cell/ic_deal_notOrder.imageset/ic_deal_notOrder@2x.png -------------------------------------------------------------------------------- /团购/Assets.xcassets/Cell/placeholder_deal.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLAccount/XLGroupBuy/HEAD/团购/Assets.xcassets/Cell/placeholder_deal.imageset/Contents.json -------------------------------------------------------------------------------- /团购/Assets.xcassets/Cell/placeholder_deal.imageset/placeholder_deal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLAccount/XLGroupBuy/HEAD/团购/Assets.xcassets/Cell/placeholder_deal.imageset/placeholder_deal.png -------------------------------------------------------------------------------- /团购/Assets.xcassets/Cell/placeholder_deal.imageset/placeholder_deal@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLAccount/XLGroupBuy/HEAD/团购/Assets.xcassets/Cell/placeholder_deal.imageset/placeholder_deal@2x.png -------------------------------------------------------------------------------- /团购/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLAccount/XLGroupBuy/HEAD/团购/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /团购/Assets.xcassets/Detail/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLAccount/XLGroupBuy/HEAD/团购/Assets.xcassets/Detail/Contents.json -------------------------------------------------------------------------------- /团购/Assets.xcassets/Detail/bg_deal_purchaseButton.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLAccount/XLGroupBuy/HEAD/团购/Assets.xcassets/Detail/bg_deal_purchaseButton.imageset/Contents.json -------------------------------------------------------------------------------- /团购/Assets.xcassets/Detail/bg_deal_purchaseButton.imageset/bg_deal_purchaseButton.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLAccount/XLGroupBuy/HEAD/团购/Assets.xcassets/Detail/bg_deal_purchaseButton.imageset/bg_deal_purchaseButton.png -------------------------------------------------------------------------------- /团购/Assets.xcassets/Detail/bg_deal_purchaseButton.imageset/bg_deal_purchaseButton@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLAccount/XLGroupBuy/HEAD/团购/Assets.xcassets/Detail/bg_deal_purchaseButton.imageset/bg_deal_purchaseButton@2x.png -------------------------------------------------------------------------------- /团购/Assets.xcassets/Detail/bg_deal_purchaseButton_highlighted.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLAccount/XLGroupBuy/HEAD/团购/Assets.xcassets/Detail/bg_deal_purchaseButton_highlighted.imageset/Contents.json -------------------------------------------------------------------------------- /团购/Assets.xcassets/Detail/bg_deal_purchaseButton_highlighted.imageset/bg_deal_purchaseButton_highlighted.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLAccount/XLGroupBuy/HEAD/团购/Assets.xcassets/Detail/bg_deal_purchaseButton_highlighted.imageset/bg_deal_purchaseButton_highlighted.png -------------------------------------------------------------------------------- /团购/Assets.xcassets/Detail/bg_deal_purchaseButton_highlighted.imageset/bg_deal_purchaseButton_highlighted@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLAccount/XLGroupBuy/HEAD/团购/Assets.xcassets/Detail/bg_deal_purchaseButton_highlighted.imageset/bg_deal_purchaseButton_highlighted@2x.png -------------------------------------------------------------------------------- /团购/Assets.xcassets/Detail/icon_collect.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLAccount/XLGroupBuy/HEAD/团购/Assets.xcassets/Detail/icon_collect.imageset/Contents.json -------------------------------------------------------------------------------- /团购/Assets.xcassets/Detail/icon_collect.imageset/icon_collect.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLAccount/XLGroupBuy/HEAD/团购/Assets.xcassets/Detail/icon_collect.imageset/icon_collect.png -------------------------------------------------------------------------------- /团购/Assets.xcassets/Detail/icon_collect.imageset/icon_collect@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLAccount/XLGroupBuy/HEAD/团购/Assets.xcassets/Detail/icon_collect.imageset/icon_collect@2x.png -------------------------------------------------------------------------------- /团购/Assets.xcassets/Detail/icon_collect_highlighted.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLAccount/XLGroupBuy/HEAD/团购/Assets.xcassets/Detail/icon_collect_highlighted.imageset/Contents.json -------------------------------------------------------------------------------- /团购/Assets.xcassets/Detail/icon_collect_highlighted.imageset/icon_collect_highlighted.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLAccount/XLGroupBuy/HEAD/团购/Assets.xcassets/Detail/icon_collect_highlighted.imageset/icon_collect_highlighted.png -------------------------------------------------------------------------------- /团购/Assets.xcassets/Detail/icon_collect_highlighted.imageset/icon_collect_highlighted@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLAccount/XLGroupBuy/HEAD/团购/Assets.xcassets/Detail/icon_collect_highlighted.imageset/icon_collect_highlighted@2x.png -------------------------------------------------------------------------------- /团购/Assets.xcassets/Detail/icon_deal_soldNumber.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLAccount/XLGroupBuy/HEAD/团购/Assets.xcassets/Detail/icon_deal_soldNumber.imageset/Contents.json -------------------------------------------------------------------------------- /团购/Assets.xcassets/Detail/icon_deal_soldNumber.imageset/icon_deal_soldNumber.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLAccount/XLGroupBuy/HEAD/团购/Assets.xcassets/Detail/icon_deal_soldNumber.imageset/icon_deal_soldNumber.png -------------------------------------------------------------------------------- /团购/Assets.xcassets/Detail/icon_deal_soldNumber.imageset/icon_deal_soldNumber@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLAccount/XLGroupBuy/HEAD/团购/Assets.xcassets/Detail/icon_deal_soldNumber.imageset/icon_deal_soldNumber@2x.png -------------------------------------------------------------------------------- /团购/Assets.xcassets/Detail/icon_deal_timer.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLAccount/XLGroupBuy/HEAD/团购/Assets.xcassets/Detail/icon_deal_timer.imageset/Contents.json -------------------------------------------------------------------------------- /团购/Assets.xcassets/Detail/icon_deal_timer.imageset/icon_deal_timer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLAccount/XLGroupBuy/HEAD/团购/Assets.xcassets/Detail/icon_deal_timer.imageset/icon_deal_timer.png -------------------------------------------------------------------------------- /团购/Assets.xcassets/Detail/icon_deal_timer.imageset/icon_deal_timer@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLAccount/XLGroupBuy/HEAD/团购/Assets.xcassets/Detail/icon_deal_timer.imageset/icon_deal_timer@2x.png -------------------------------------------------------------------------------- /团购/Assets.xcassets/Detail/icon_detail_address.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLAccount/XLGroupBuy/HEAD/团购/Assets.xcassets/Detail/icon_detail_address.imageset/Contents.json -------------------------------------------------------------------------------- /团购/Assets.xcassets/Detail/icon_detail_address.imageset/icon_detail_address.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLAccount/XLGroupBuy/HEAD/团购/Assets.xcassets/Detail/icon_detail_address.imageset/icon_detail_address.png -------------------------------------------------------------------------------- /团购/Assets.xcassets/Detail/icon_detail_address.imageset/icon_detail_address@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLAccount/XLGroupBuy/HEAD/团购/Assets.xcassets/Detail/icon_detail_address.imageset/icon_detail_address@2x.png -------------------------------------------------------------------------------- /团购/Assets.xcassets/Detail/icon_detail_basic.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLAccount/XLGroupBuy/HEAD/团购/Assets.xcassets/Detail/icon_detail_basic.imageset/Contents.json -------------------------------------------------------------------------------- /团购/Assets.xcassets/Detail/icon_detail_basic.imageset/icon_detail_basic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLAccount/XLGroupBuy/HEAD/团购/Assets.xcassets/Detail/icon_detail_basic.imageset/icon_detail_basic.png -------------------------------------------------------------------------------- /团购/Assets.xcassets/Detail/icon_detail_basic.imageset/icon_detail_basic@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLAccount/XLGroupBuy/HEAD/团购/Assets.xcassets/Detail/icon_detail_basic.imageset/icon_detail_basic@2x.png -------------------------------------------------------------------------------- /团购/Assets.xcassets/Detail/icon_detail_basic_selected.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLAccount/XLGroupBuy/HEAD/团购/Assets.xcassets/Detail/icon_detail_basic_selected.imageset/Contents.json -------------------------------------------------------------------------------- /团购/Assets.xcassets/Detail/icon_detail_basic_selected.imageset/icon_detail_basic_selected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLAccount/XLGroupBuy/HEAD/团购/Assets.xcassets/Detail/icon_detail_basic_selected.imageset/icon_detail_basic_selected.png -------------------------------------------------------------------------------- /团购/Assets.xcassets/Detail/icon_detail_basic_selected.imageset/icon_detail_basic_selected@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLAccount/XLGroupBuy/HEAD/团购/Assets.xcassets/Detail/icon_detail_basic_selected.imageset/icon_detail_basic_selected@2x.png -------------------------------------------------------------------------------- /团购/Assets.xcassets/Detail/icon_detail_branches.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLAccount/XLGroupBuy/HEAD/团购/Assets.xcassets/Detail/icon_detail_branches.imageset/Contents.json -------------------------------------------------------------------------------- /团购/Assets.xcassets/Detail/icon_detail_branches.imageset/icon_detail_branches.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLAccount/XLGroupBuy/HEAD/团购/Assets.xcassets/Detail/icon_detail_branches.imageset/icon_detail_branches.png -------------------------------------------------------------------------------- /团购/Assets.xcassets/Detail/icon_detail_branches.imageset/icon_detail_branches@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLAccount/XLGroupBuy/HEAD/团购/Assets.xcassets/Detail/icon_detail_branches.imageset/icon_detail_branches@2x.png -------------------------------------------------------------------------------- /团购/Assets.xcassets/Detail/icon_detail_comment.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLAccount/XLGroupBuy/HEAD/团购/Assets.xcassets/Detail/icon_detail_comment.imageset/Contents.json -------------------------------------------------------------------------------- /团购/Assets.xcassets/Detail/icon_detail_comment.imageset/icon_detail_comment.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLAccount/XLGroupBuy/HEAD/团购/Assets.xcassets/Detail/icon_detail_comment.imageset/icon_detail_comment.png -------------------------------------------------------------------------------- /团购/Assets.xcassets/Detail/icon_detail_comment.imageset/icon_detail_comment@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLAccount/XLGroupBuy/HEAD/团购/Assets.xcassets/Detail/icon_detail_comment.imageset/icon_detail_comment@2x.png -------------------------------------------------------------------------------- /团购/Assets.xcassets/Detail/icon_detail_merchants.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLAccount/XLGroupBuy/HEAD/团购/Assets.xcassets/Detail/icon_detail_merchants.imageset/Contents.json -------------------------------------------------------------------------------- /团购/Assets.xcassets/Detail/icon_detail_merchants.imageset/icon_detail_merchants.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLAccount/XLGroupBuy/HEAD/团购/Assets.xcassets/Detail/icon_detail_merchants.imageset/icon_detail_merchants.png -------------------------------------------------------------------------------- /团购/Assets.xcassets/Detail/icon_detail_merchants.imageset/icon_detail_merchants@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLAccount/XLGroupBuy/HEAD/团购/Assets.xcassets/Detail/icon_detail_merchants.imageset/icon_detail_merchants@2x.png -------------------------------------------------------------------------------- /团购/Assets.xcassets/Detail/icon_detail_merchants_selected.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLAccount/XLGroupBuy/HEAD/团购/Assets.xcassets/Detail/icon_detail_merchants_selected.imageset/Contents.json -------------------------------------------------------------------------------- /团购/Assets.xcassets/Detail/icon_detail_merchants_selected.imageset/icon_detail_merchants_selected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLAccount/XLGroupBuy/HEAD/团购/Assets.xcassets/Detail/icon_detail_merchants_selected.imageset/icon_detail_merchants_selected.png -------------------------------------------------------------------------------- /团购/Assets.xcassets/Detail/icon_detail_merchants_selected.imageset/icon_detail_merchants_selected@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLAccount/XLGroupBuy/HEAD/团购/Assets.xcassets/Detail/icon_detail_merchants_selected.imageset/icon_detail_merchants_selected@2x.png -------------------------------------------------------------------------------- /团购/Assets.xcassets/Detail/icon_detail_phone.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLAccount/XLGroupBuy/HEAD/团购/Assets.xcassets/Detail/icon_detail_phone.imageset/Contents.json -------------------------------------------------------------------------------- /团购/Assets.xcassets/Detail/icon_detail_phone.imageset/icon_detail_phone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLAccount/XLGroupBuy/HEAD/团购/Assets.xcassets/Detail/icon_detail_phone.imageset/icon_detail_phone.png -------------------------------------------------------------------------------- /团购/Assets.xcassets/Detail/icon_detail_phone.imageset/icon_detail_phone@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLAccount/XLGroupBuy/HEAD/团购/Assets.xcassets/Detail/icon_detail_phone.imageset/icon_detail_phone@2x.png -------------------------------------------------------------------------------- /团购/Assets.xcassets/Detail/icon_detail_reviews.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLAccount/XLGroupBuy/HEAD/团购/Assets.xcassets/Detail/icon_detail_reviews.imageset/Contents.json -------------------------------------------------------------------------------- /团购/Assets.xcassets/Detail/icon_detail_reviews.imageset/icon_detail_reviews.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLAccount/XLGroupBuy/HEAD/团购/Assets.xcassets/Detail/icon_detail_reviews.imageset/icon_detail_reviews.png -------------------------------------------------------------------------------- /团购/Assets.xcassets/Detail/icon_detail_reviews.imageset/icon_detail_reviews@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLAccount/XLGroupBuy/HEAD/团购/Assets.xcassets/Detail/icon_detail_reviews.imageset/icon_detail_reviews@2x.png -------------------------------------------------------------------------------- /团购/Assets.xcassets/Detail/icon_detail_reviews_selected.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLAccount/XLGroupBuy/HEAD/团购/Assets.xcassets/Detail/icon_detail_reviews_selected.imageset/Contents.json -------------------------------------------------------------------------------- /团购/Assets.xcassets/Detail/icon_detail_reviews_selected.imageset/icon_detail_reviews_selected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLAccount/XLGroupBuy/HEAD/团购/Assets.xcassets/Detail/icon_detail_reviews_selected.imageset/icon_detail_reviews_selected.png -------------------------------------------------------------------------------- /团购/Assets.xcassets/Detail/icon_detail_reviews_selected.imageset/icon_detail_reviews_selected@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLAccount/XLGroupBuy/HEAD/团购/Assets.xcassets/Detail/icon_detail_reviews_selected.imageset/icon_detail_reviews_selected@2x.png -------------------------------------------------------------------------------- /团购/Assets.xcassets/Detail/icon_detail_showtimes.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLAccount/XLGroupBuy/HEAD/团购/Assets.xcassets/Detail/icon_detail_showtimes.imageset/Contents.json -------------------------------------------------------------------------------- /团购/Assets.xcassets/Detail/icon_detail_showtimes.imageset/icon_detail_showtimes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLAccount/XLGroupBuy/HEAD/团购/Assets.xcassets/Detail/icon_detail_showtimes.imageset/icon_detail_showtimes.png -------------------------------------------------------------------------------- /团购/Assets.xcassets/Detail/icon_detail_showtimes.imageset/icon_detail_showtimes@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLAccount/XLGroupBuy/HEAD/团购/Assets.xcassets/Detail/icon_detail_showtimes.imageset/icon_detail_showtimes@2x.png -------------------------------------------------------------------------------- /团购/Assets.xcassets/Detail/icon_detail_showtimes_selected.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLAccount/XLGroupBuy/HEAD/团购/Assets.xcassets/Detail/icon_detail_showtimes_selected.imageset/Contents.json -------------------------------------------------------------------------------- /团购/Assets.xcassets/Detail/icon_detail_showtimes_selected.imageset/icon_detail_showtimes_selected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLAccount/XLGroupBuy/HEAD/团购/Assets.xcassets/Detail/icon_detail_showtimes_selected.imageset/icon_detail_showtimes_selected.png -------------------------------------------------------------------------------- /团购/Assets.xcassets/Detail/icon_detail_showtimes_selected.imageset/icon_detail_showtimes_selected@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLAccount/XLGroupBuy/HEAD/团购/Assets.xcassets/Detail/icon_detail_showtimes_selected.imageset/icon_detail_showtimes_selected@2x.png -------------------------------------------------------------------------------- /团购/Assets.xcassets/Detail/icon_order_refundable.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLAccount/XLGroupBuy/HEAD/团购/Assets.xcassets/Detail/icon_order_refundable.imageset/Contents.json -------------------------------------------------------------------------------- /团购/Assets.xcassets/Detail/icon_order_refundable.imageset/icon_order_refundable@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLAccount/XLGroupBuy/HEAD/团购/Assets.xcassets/Detail/icon_order_refundable.imageset/icon_order_refundable@2x.png -------------------------------------------------------------------------------- /团购/Assets.xcassets/Detail/icon_order_unrefundable.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLAccount/XLGroupBuy/HEAD/团购/Assets.xcassets/Detail/icon_order_unrefundable.imageset/Contents.json -------------------------------------------------------------------------------- /团购/Assets.xcassets/Detail/icon_order_unrefundable.imageset/icon_order_unrefundable@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLAccount/XLGroupBuy/HEAD/团购/Assets.xcassets/Detail/icon_order_unrefundable.imageset/icon_order_unrefundable@2x.png -------------------------------------------------------------------------------- /团购/Assets.xcassets/Detail/icon_share.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLAccount/XLGroupBuy/HEAD/团购/Assets.xcassets/Detail/icon_share.imageset/Contents.json -------------------------------------------------------------------------------- /团购/Assets.xcassets/Detail/icon_share.imageset/icon_share.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLAccount/XLGroupBuy/HEAD/团购/Assets.xcassets/Detail/icon_share.imageset/icon_share.png -------------------------------------------------------------------------------- /团购/Assets.xcassets/Detail/icon_share.imageset/icon_share@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLAccount/XLGroupBuy/HEAD/团购/Assets.xcassets/Detail/icon_share.imageset/icon_share@2x.png -------------------------------------------------------------------------------- /团购/Assets.xcassets/Detail/icon_share_highlighted.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLAccount/XLGroupBuy/HEAD/团购/Assets.xcassets/Detail/icon_share_highlighted.imageset/Contents.json -------------------------------------------------------------------------------- /团购/Assets.xcassets/Detail/icon_share_highlighted.imageset/icon_share_highlighted.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLAccount/XLGroupBuy/HEAD/团购/Assets.xcassets/Detail/icon_share_highlighted.imageset/icon_share_highlighted.png -------------------------------------------------------------------------------- /团购/Assets.xcassets/Detail/icon_share_highlighted.imageset/icon_share_highlighted@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLAccount/XLGroupBuy/HEAD/团购/Assets.xcassets/Detail/icon_share_highlighted.imageset/icon_share_highlighted@2x.png -------------------------------------------------------------------------------- /团购/Assets.xcassets/Dropdown/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLAccount/XLGroupBuy/HEAD/团购/Assets.xcassets/Dropdown/Contents.json -------------------------------------------------------------------------------- /团购/Assets.xcassets/Dropdown/bg_dropdown_left_selected.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLAccount/XLGroupBuy/HEAD/团购/Assets.xcassets/Dropdown/bg_dropdown_left_selected.imageset/Contents.json -------------------------------------------------------------------------------- /团购/Assets.xcassets/Dropdown/bg_dropdown_left_selected.imageset/bg_dropdown_left_selected@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLAccount/XLGroupBuy/HEAD/团购/Assets.xcassets/Dropdown/bg_dropdown_left_selected.imageset/bg_dropdown_left_selected@2x.png -------------------------------------------------------------------------------- /团购/Assets.xcassets/Dropdown/bg_dropdown_leftpart.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLAccount/XLGroupBuy/HEAD/团购/Assets.xcassets/Dropdown/bg_dropdown_leftpart.imageset/Contents.json -------------------------------------------------------------------------------- /团购/Assets.xcassets/Dropdown/bg_dropdown_leftpart.imageset/bg_dropdown_leftpart@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLAccount/XLGroupBuy/HEAD/团购/Assets.xcassets/Dropdown/bg_dropdown_leftpart.imageset/bg_dropdown_leftpart@2x.png -------------------------------------------------------------------------------- /团购/Assets.xcassets/Dropdown/bg_dropdown_right_selected.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLAccount/XLGroupBuy/HEAD/团购/Assets.xcassets/Dropdown/bg_dropdown_right_selected.imageset/Contents.json -------------------------------------------------------------------------------- /团购/Assets.xcassets/Dropdown/bg_dropdown_right_selected.imageset/bg_dropdown_right_selected@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLAccount/XLGroupBuy/HEAD/团购/Assets.xcassets/Dropdown/bg_dropdown_right_selected.imageset/bg_dropdown_right_selected@2x.png -------------------------------------------------------------------------------- /团购/Assets.xcassets/Dropdown/bg_dropdown_rightpart.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLAccount/XLGroupBuy/HEAD/团购/Assets.xcassets/Dropdown/bg_dropdown_rightpart.imageset/Contents.json -------------------------------------------------------------------------------- /团购/Assets.xcassets/Dropdown/bg_dropdown_rightpart.imageset/bg_dropdown_rightpart@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLAccount/XLGroupBuy/HEAD/团购/Assets.xcassets/Dropdown/bg_dropdown_rightpart.imageset/bg_dropdown_rightpart@2x.png -------------------------------------------------------------------------------- /团购/Assets.xcassets/Icon/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLAccount/XLGroupBuy/HEAD/团购/Assets.xcassets/Icon/Contents.json -------------------------------------------------------------------------------- /团购/Assets.xcassets/Icon/icon_cell_rightArrow.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLAccount/XLGroupBuy/HEAD/团购/Assets.xcassets/Icon/icon_cell_rightArrow.imageset/Contents.json -------------------------------------------------------------------------------- /团购/Assets.xcassets/Icon/icon_cell_rightArrow.imageset/icon_cell_rightArrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLAccount/XLGroupBuy/HEAD/团购/Assets.xcassets/Icon/icon_cell_rightArrow.imageset/icon_cell_rightArrow.png -------------------------------------------------------------------------------- /团购/Assets.xcassets/Icon/icon_cell_rightArrow_disabled.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLAccount/XLGroupBuy/HEAD/团购/Assets.xcassets/Icon/icon_cell_rightArrow_disabled.imageset/Contents.json -------------------------------------------------------------------------------- /团购/Assets.xcassets/Icon/icon_cell_rightArrow_disabled.imageset/icon_cell_rightArrow_disabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLAccount/XLGroupBuy/HEAD/团购/Assets.xcassets/Icon/icon_cell_rightArrow_disabled.imageset/icon_cell_rightArrow_disabled.png -------------------------------------------------------------------------------- /团购/Assets.xcassets/Icon/icon_cell_rightArrow_selected.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLAccount/XLGroupBuy/HEAD/团购/Assets.xcassets/Icon/icon_cell_rightArrow_selected.imageset/Contents.json -------------------------------------------------------------------------------- /团购/Assets.xcassets/Icon/icon_cell_rightArrow_selected.imageset/icon_cell_rightArrow_selected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLAccount/XLGroupBuy/HEAD/团购/Assets.xcassets/Icon/icon_cell_rightArrow_selected.imageset/icon_cell_rightArrow_selected.png -------------------------------------------------------------------------------- /团购/Assets.xcassets/LaunchImage.launchimage/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLAccount/XLGroupBuy/HEAD/团购/Assets.xcassets/LaunchImage.launchimage/Contents.json -------------------------------------------------------------------------------- /团购/Assets.xcassets/LaunchImage.launchimage/Default-Portrait@2x~ipad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLAccount/XLGroupBuy/HEAD/团购/Assets.xcassets/LaunchImage.launchimage/Default-Portrait@2x~ipad.png -------------------------------------------------------------------------------- /团购/Assets.xcassets/LaunchImage.launchimage/Default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLAccount/XLGroupBuy/HEAD/团购/Assets.xcassets/LaunchImage.launchimage/Default.png -------------------------------------------------------------------------------- /团购/Assets.xcassets/LaunchImage.launchimage/Default@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLAccount/XLGroupBuy/HEAD/团购/Assets.xcassets/LaunchImage.launchimage/Default@2x.png -------------------------------------------------------------------------------- /团购/Assets.xcassets/LaunchImage.launchimage/Default~ipad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLAccount/XLGroupBuy/HEAD/团购/Assets.xcassets/LaunchImage.launchimage/Default~ipad.png -------------------------------------------------------------------------------- /团购/Assets.xcassets/Map/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLAccount/XLGroupBuy/HEAD/团购/Assets.xcassets/Map/Contents.json -------------------------------------------------------------------------------- /团购/Assets.xcassets/Map/ic_category_1.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLAccount/XLGroupBuy/HEAD/团购/Assets.xcassets/Map/ic_category_1.imageset/Contents.json -------------------------------------------------------------------------------- /团购/Assets.xcassets/Map/ic_category_1.imageset/icon_map_cateid_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLAccount/XLGroupBuy/HEAD/团购/Assets.xcassets/Map/ic_category_1.imageset/icon_map_cateid_1.png -------------------------------------------------------------------------------- /团购/Assets.xcassets/Map/ic_category_2.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLAccount/XLGroupBuy/HEAD/团购/Assets.xcassets/Map/ic_category_2.imageset/Contents.json -------------------------------------------------------------------------------- /团购/Assets.xcassets/Map/ic_category_2.imageset/icon_map_cateid_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLAccount/XLGroupBuy/HEAD/团购/Assets.xcassets/Map/ic_category_2.imageset/icon_map_cateid_2.png -------------------------------------------------------------------------------- /团购/Assets.xcassets/Map/ic_category_20.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLAccount/XLGroupBuy/HEAD/团购/Assets.xcassets/Map/ic_category_20.imageset/Contents.json -------------------------------------------------------------------------------- /团购/Assets.xcassets/Map/ic_category_20.imageset/icon_map_cateid_20.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLAccount/XLGroupBuy/HEAD/团购/Assets.xcassets/Map/ic_category_20.imageset/icon_map_cateid_20.png -------------------------------------------------------------------------------- /团购/Assets.xcassets/Map/ic_category_22.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLAccount/XLGroupBuy/HEAD/团购/Assets.xcassets/Map/ic_category_22.imageset/Contents.json -------------------------------------------------------------------------------- /团购/Assets.xcassets/Map/ic_category_22.imageset/icon_map_cateid_22.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLAccount/XLGroupBuy/HEAD/团购/Assets.xcassets/Map/ic_category_22.imageset/icon_map_cateid_22.png -------------------------------------------------------------------------------- /团购/Assets.xcassets/Map/ic_category_3.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLAccount/XLGroupBuy/HEAD/团购/Assets.xcassets/Map/ic_category_3.imageset/Contents.json -------------------------------------------------------------------------------- /团购/Assets.xcassets/Map/ic_category_3.imageset/icon_map_cateid_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLAccount/XLGroupBuy/HEAD/团购/Assets.xcassets/Map/ic_category_3.imageset/icon_map_cateid_3.png -------------------------------------------------------------------------------- /团购/Assets.xcassets/Map/ic_category_4.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLAccount/XLGroupBuy/HEAD/团购/Assets.xcassets/Map/ic_category_4.imageset/Contents.json -------------------------------------------------------------------------------- /团购/Assets.xcassets/Map/ic_category_4.imageset/icon_map_cateid_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLAccount/XLGroupBuy/HEAD/团购/Assets.xcassets/Map/ic_category_4.imageset/icon_map_cateid_4.png -------------------------------------------------------------------------------- /团购/Assets.xcassets/Map/ic_category_5.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLAccount/XLGroupBuy/HEAD/团购/Assets.xcassets/Map/ic_category_5.imageset/Contents.json -------------------------------------------------------------------------------- /团购/Assets.xcassets/Map/ic_category_5.imageset/icon_map_cateid_5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLAccount/XLGroupBuy/HEAD/团购/Assets.xcassets/Map/ic_category_5.imageset/icon_map_cateid_5.png -------------------------------------------------------------------------------- /团购/Assets.xcassets/Map/ic_category_78.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLAccount/XLGroupBuy/HEAD/团购/Assets.xcassets/Map/ic_category_78.imageset/Contents.json -------------------------------------------------------------------------------- /团购/Assets.xcassets/Map/ic_category_78.imageset/icon_map_cateid_78.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLAccount/XLGroupBuy/HEAD/团购/Assets.xcassets/Map/ic_category_78.imageset/icon_map_cateid_78.png -------------------------------------------------------------------------------- /团购/Assets.xcassets/Map/ic_category_99.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLAccount/XLGroupBuy/HEAD/团购/Assets.xcassets/Map/ic_category_99.imageset/Contents.json -------------------------------------------------------------------------------- /团购/Assets.xcassets/Map/ic_category_99.imageset/icon_map_cateid_99.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLAccount/XLGroupBuy/HEAD/团购/Assets.xcassets/Map/ic_category_99.imageset/icon_map_cateid_99.png -------------------------------------------------------------------------------- /团购/Assets.xcassets/Map/ic_category_default.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLAccount/XLGroupBuy/HEAD/团购/Assets.xcassets/Map/ic_category_default.imageset/Contents.json -------------------------------------------------------------------------------- /团购/Assets.xcassets/Map/ic_category_default.imageset/icon_map_cateid_default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLAccount/XLGroupBuy/HEAD/团购/Assets.xcassets/Map/ic_category_default.imageset/icon_map_cateid_default.png -------------------------------------------------------------------------------- /团购/Assets.xcassets/Map/icon_map_location.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLAccount/XLGroupBuy/HEAD/团购/Assets.xcassets/Map/icon_map_location.imageset/Contents.json -------------------------------------------------------------------------------- /团购/Assets.xcassets/Map/icon_map_location.imageset/icon_map_location@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLAccount/XLGroupBuy/HEAD/团购/Assets.xcassets/Map/icon_map_location.imageset/icon_map_location@2x.png -------------------------------------------------------------------------------- /团购/Assets.xcassets/Map/icon_map_location_highlighted.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLAccount/XLGroupBuy/HEAD/团购/Assets.xcassets/Map/icon_map_location_highlighted.imageset/Contents.json -------------------------------------------------------------------------------- /团购/Assets.xcassets/Map/icon_map_location_highlighted.imageset/icon_map_location_highlighted@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLAccount/XLGroupBuy/HEAD/团购/Assets.xcassets/Map/icon_map_location_highlighted.imageset/icon_map_location_highlighted@2x.png -------------------------------------------------------------------------------- /团购/Assets.xcassets/Map/icon_map_refresh.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLAccount/XLGroupBuy/HEAD/团购/Assets.xcassets/Map/icon_map_refresh.imageset/Contents.json -------------------------------------------------------------------------------- /团购/Assets.xcassets/Map/icon_map_refresh.imageset/icon_map_refresh@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLAccount/XLGroupBuy/HEAD/团购/Assets.xcassets/Map/icon_map_refresh.imageset/icon_map_refresh@2x.png -------------------------------------------------------------------------------- /团购/Assets.xcassets/Map/icon_map_refresh_highlighted.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLAccount/XLGroupBuy/HEAD/团购/Assets.xcassets/Map/icon_map_refresh_highlighted.imageset/Contents.json -------------------------------------------------------------------------------- /团购/Assets.xcassets/Map/icon_map_refresh_highlighted.imageset/icon_map_refresh_highlighted@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLAccount/XLGroupBuy/HEAD/团购/Assets.xcassets/Map/icon_map_refresh_highlighted.imageset/icon_map_refresh_highlighted@2x.png -------------------------------------------------------------------------------- /团购/Assets.xcassets/Map/iconpng.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLAccount/XLGroupBuy/HEAD/团购/Assets.xcassets/Map/iconpng.imageset/Contents.json -------------------------------------------------------------------------------- /团购/Assets.xcassets/Map/iconpng.imageset/iconpng.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLAccount/XLGroupBuy/HEAD/团购/Assets.xcassets/Map/iconpng.imageset/iconpng.png -------------------------------------------------------------------------------- /团购/Assets.xcassets/Nav/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLAccount/XLGroupBuy/HEAD/团购/Assets.xcassets/Nav/Contents.json -------------------------------------------------------------------------------- /团购/Assets.xcassets/Nav/bg_navigationBar_normal.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLAccount/XLGroupBuy/HEAD/团购/Assets.xcassets/Nav/bg_navigationBar_normal.imageset/Contents.json -------------------------------------------------------------------------------- /团购/Assets.xcassets/Nav/bg_navigationBar_normal.imageset/bg_navigationBar_normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLAccount/XLGroupBuy/HEAD/团购/Assets.xcassets/Nav/bg_navigationBar_normal.imageset/bg_navigationBar_normal.png -------------------------------------------------------------------------------- /团购/Assets.xcassets/Nav/btn_changeCity.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLAccount/XLGroupBuy/HEAD/团购/Assets.xcassets/Nav/btn_changeCity.imageset/Contents.json -------------------------------------------------------------------------------- /团购/Assets.xcassets/Nav/btn_changeCity.imageset/btn_changeCity.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLAccount/XLGroupBuy/HEAD/团购/Assets.xcassets/Nav/btn_changeCity.imageset/btn_changeCity.png -------------------------------------------------------------------------------- /团购/Assets.xcassets/Nav/btn_changeCity.imageset/btn_changeCity@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLAccount/XLGroupBuy/HEAD/团购/Assets.xcassets/Nav/btn_changeCity.imageset/btn_changeCity@2x.png -------------------------------------------------------------------------------- /团购/Assets.xcassets/Nav/btn_changeCity_selected.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLAccount/XLGroupBuy/HEAD/团购/Assets.xcassets/Nav/btn_changeCity_selected.imageset/Contents.json -------------------------------------------------------------------------------- /团购/Assets.xcassets/Nav/btn_changeCity_selected.imageset/btn_changeCity_selected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLAccount/XLGroupBuy/HEAD/团购/Assets.xcassets/Nav/btn_changeCity_selected.imageset/btn_changeCity_selected.png -------------------------------------------------------------------------------- /团购/Assets.xcassets/Nav/btn_changeCity_selected.imageset/btn_changeCity_selected@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLAccount/XLGroupBuy/HEAD/团购/Assets.xcassets/Nav/btn_changeCity_selected.imageset/btn_changeCity_selected@2x.png -------------------------------------------------------------------------------- /团购/Assets.xcassets/Nav/btn_navigation_close.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLAccount/XLGroupBuy/HEAD/团购/Assets.xcassets/Nav/btn_navigation_close.imageset/Contents.json -------------------------------------------------------------------------------- /团购/Assets.xcassets/Nav/btn_navigation_close.imageset/btn_navigation_close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLAccount/XLGroupBuy/HEAD/团购/Assets.xcassets/Nav/btn_navigation_close.imageset/btn_navigation_close.png -------------------------------------------------------------------------------- /团购/Assets.xcassets/Nav/btn_navigation_close.imageset/btn_navigation_close@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLAccount/XLGroupBuy/HEAD/团购/Assets.xcassets/Nav/btn_navigation_close.imageset/btn_navigation_close@2x.png -------------------------------------------------------------------------------- /团购/Assets.xcassets/Nav/btn_navigation_close_hl.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLAccount/XLGroupBuy/HEAD/团购/Assets.xcassets/Nav/btn_navigation_close_hl.imageset/Contents.json -------------------------------------------------------------------------------- /团购/Assets.xcassets/Nav/btn_navigation_close_hl.imageset/btn_navigation_close_hl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLAccount/XLGroupBuy/HEAD/团购/Assets.xcassets/Nav/btn_navigation_close_hl.imageset/btn_navigation_close_hl.png -------------------------------------------------------------------------------- /团购/Assets.xcassets/Nav/btn_navigation_close_hl.imageset/btn_navigation_close_hl@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLAccount/XLGroupBuy/HEAD/团购/Assets.xcassets/Nav/btn_navigation_close_hl.imageset/btn_navigation_close_hl@2x.png -------------------------------------------------------------------------------- /团购/Assets.xcassets/Nav/btn_search.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLAccount/XLGroupBuy/HEAD/团购/Assets.xcassets/Nav/btn_search.imageset/Contents.json -------------------------------------------------------------------------------- /团购/Assets.xcassets/Nav/btn_search.imageset/btn_search.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLAccount/XLGroupBuy/HEAD/团购/Assets.xcassets/Nav/btn_search.imageset/btn_search.png -------------------------------------------------------------------------------- /团购/Assets.xcassets/Nav/btn_search.imageset/btn_search@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLAccount/XLGroupBuy/HEAD/团购/Assets.xcassets/Nav/btn_search.imageset/btn_search@2x.png -------------------------------------------------------------------------------- /团购/Assets.xcassets/Nav/icon_back.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLAccount/XLGroupBuy/HEAD/团购/Assets.xcassets/Nav/icon_back.imageset/Contents.json -------------------------------------------------------------------------------- /团购/Assets.xcassets/Nav/icon_back.imageset/icon_back.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLAccount/XLGroupBuy/HEAD/团购/Assets.xcassets/Nav/icon_back.imageset/icon_back.png -------------------------------------------------------------------------------- /团购/Assets.xcassets/Nav/icon_back.imageset/icon_back@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLAccount/XLGroupBuy/HEAD/团购/Assets.xcassets/Nav/icon_back.imageset/icon_back@2x.png -------------------------------------------------------------------------------- /团购/Assets.xcassets/Nav/icon_back_highlighted.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLAccount/XLGroupBuy/HEAD/团购/Assets.xcassets/Nav/icon_back_highlighted.imageset/Contents.json -------------------------------------------------------------------------------- /团购/Assets.xcassets/Nav/icon_back_highlighted.imageset/icon_back_highlighted.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLAccount/XLGroupBuy/HEAD/团购/Assets.xcassets/Nav/icon_back_highlighted.imageset/icon_back_highlighted.png -------------------------------------------------------------------------------- /团购/Assets.xcassets/Nav/icon_back_highlighted.imageset/icon_back_highlighted@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLAccount/XLGroupBuy/HEAD/团购/Assets.xcassets/Nav/icon_back_highlighted.imageset/icon_back_highlighted@2x.png -------------------------------------------------------------------------------- /团购/Assets.xcassets/Nav/icon_district.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLAccount/XLGroupBuy/HEAD/团购/Assets.xcassets/Nav/icon_district.imageset/Contents.json -------------------------------------------------------------------------------- /团购/Assets.xcassets/Nav/icon_district.imageset/icon_district.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLAccount/XLGroupBuy/HEAD/团购/Assets.xcassets/Nav/icon_district.imageset/icon_district.png -------------------------------------------------------------------------------- /团购/Assets.xcassets/Nav/icon_district.imageset/icon_district@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLAccount/XLGroupBuy/HEAD/团购/Assets.xcassets/Nav/icon_district.imageset/icon_district@2x.png -------------------------------------------------------------------------------- /团购/Assets.xcassets/Nav/icon_district_highlighted.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLAccount/XLGroupBuy/HEAD/团购/Assets.xcassets/Nav/icon_district_highlighted.imageset/Contents.json -------------------------------------------------------------------------------- /团购/Assets.xcassets/Nav/icon_district_highlighted.imageset/icon_district_highlighted.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLAccount/XLGroupBuy/HEAD/团购/Assets.xcassets/Nav/icon_district_highlighted.imageset/icon_district_highlighted.png -------------------------------------------------------------------------------- /团购/Assets.xcassets/Nav/icon_district_highlighted.imageset/icon_district_highlighted@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLAccount/XLGroupBuy/HEAD/团购/Assets.xcassets/Nav/icon_district_highlighted.imageset/icon_district_highlighted@2x.png -------------------------------------------------------------------------------- /团购/Assets.xcassets/Nav/icon_map.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLAccount/XLGroupBuy/HEAD/团购/Assets.xcassets/Nav/icon_map.imageset/Contents.json -------------------------------------------------------------------------------- /团购/Assets.xcassets/Nav/icon_map.imageset/icon_map.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLAccount/XLGroupBuy/HEAD/团购/Assets.xcassets/Nav/icon_map.imageset/icon_map.png -------------------------------------------------------------------------------- /团购/Assets.xcassets/Nav/icon_map.imageset/icon_map@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLAccount/XLGroupBuy/HEAD/团购/Assets.xcassets/Nav/icon_map.imageset/icon_map@2x.png -------------------------------------------------------------------------------- /团购/Assets.xcassets/Nav/icon_map_highlighted.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLAccount/XLGroupBuy/HEAD/团购/Assets.xcassets/Nav/icon_map_highlighted.imageset/Contents.json -------------------------------------------------------------------------------- /团购/Assets.xcassets/Nav/icon_map_highlighted.imageset/icon_map_highlighted.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLAccount/XLGroupBuy/HEAD/团购/Assets.xcassets/Nav/icon_map_highlighted.imageset/icon_map_highlighted.png -------------------------------------------------------------------------------- /团购/Assets.xcassets/Nav/icon_map_highlighted.imageset/icon_map_highlighted@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLAccount/XLGroupBuy/HEAD/团购/Assets.xcassets/Nav/icon_map_highlighted.imageset/icon_map_highlighted@2x.png -------------------------------------------------------------------------------- /团购/Assets.xcassets/Nav/icon_meituan_logo.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLAccount/XLGroupBuy/HEAD/团购/Assets.xcassets/Nav/icon_meituan_logo.imageset/Contents.json -------------------------------------------------------------------------------- /团购/Assets.xcassets/Nav/icon_meituan_logo.imageset/icon_meituan_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLAccount/XLGroupBuy/HEAD/团购/Assets.xcassets/Nav/icon_meituan_logo.imageset/icon_meituan_logo.png -------------------------------------------------------------------------------- /团购/Assets.xcassets/Nav/icon_meituan_logo.imageset/icon_meituan_logo@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLAccount/XLGroupBuy/HEAD/团购/Assets.xcassets/Nav/icon_meituan_logo.imageset/icon_meituan_logo@2x.png -------------------------------------------------------------------------------- /团购/Assets.xcassets/Nav/icon_search.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLAccount/XLGroupBuy/HEAD/团购/Assets.xcassets/Nav/icon_search.imageset/Contents.json -------------------------------------------------------------------------------- /团购/Assets.xcassets/Nav/icon_search.imageset/icon_search.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLAccount/XLGroupBuy/HEAD/团购/Assets.xcassets/Nav/icon_search.imageset/icon_search.png -------------------------------------------------------------------------------- /团购/Assets.xcassets/Nav/icon_search.imageset/icon_search@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLAccount/XLGroupBuy/HEAD/团购/Assets.xcassets/Nav/icon_search.imageset/icon_search@2x.png -------------------------------------------------------------------------------- /团购/Assets.xcassets/Nav/icon_search_highlighted.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLAccount/XLGroupBuy/HEAD/团购/Assets.xcassets/Nav/icon_search_highlighted.imageset/Contents.json -------------------------------------------------------------------------------- /团购/Assets.xcassets/Nav/icon_search_highlighted.imageset/icon_search_highlighted.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLAccount/XLGroupBuy/HEAD/团购/Assets.xcassets/Nav/icon_search_highlighted.imageset/icon_search_highlighted.png -------------------------------------------------------------------------------- /团购/Assets.xcassets/Nav/icon_search_highlighted.imageset/icon_search_highlighted@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLAccount/XLGroupBuy/HEAD/团购/Assets.xcassets/Nav/icon_search_highlighted.imageset/icon_search_highlighted@2x.png -------------------------------------------------------------------------------- /团购/Assets.xcassets/Nav/icon_sort.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLAccount/XLGroupBuy/HEAD/团购/Assets.xcassets/Nav/icon_sort.imageset/Contents.json -------------------------------------------------------------------------------- /团购/Assets.xcassets/Nav/icon_sort.imageset/icon_sort.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLAccount/XLGroupBuy/HEAD/团购/Assets.xcassets/Nav/icon_sort.imageset/icon_sort.png -------------------------------------------------------------------------------- /团购/Assets.xcassets/Nav/icon_sort.imageset/icon_sort@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLAccount/XLGroupBuy/HEAD/团购/Assets.xcassets/Nav/icon_sort.imageset/icon_sort@2x.png -------------------------------------------------------------------------------- /团购/Assets.xcassets/Nav/icon_sort_highlighted.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLAccount/XLGroupBuy/HEAD/团购/Assets.xcassets/Nav/icon_sort_highlighted.imageset/Contents.json -------------------------------------------------------------------------------- /团购/Assets.xcassets/Nav/icon_sort_highlighted.imageset/icon_sort_highlighted.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLAccount/XLGroupBuy/HEAD/团购/Assets.xcassets/Nav/icon_sort_highlighted.imageset/icon_sort_highlighted.png -------------------------------------------------------------------------------- /团购/Assets.xcassets/Nav/icon_sort_highlighted.imageset/icon_sort_highlighted@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLAccount/XLGroupBuy/HEAD/团购/Assets.xcassets/Nav/icon_sort_highlighted.imageset/icon_sort_highlighted@2x.png -------------------------------------------------------------------------------- /团购/Assets.xcassets/NoData/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLAccount/XLGroupBuy/HEAD/团购/Assets.xcassets/NoData/Contents.json -------------------------------------------------------------------------------- /团购/Assets.xcassets/NoData/bg_rotNetwork.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLAccount/XLGroupBuy/HEAD/团购/Assets.xcassets/NoData/bg_rotNetwork.imageset/Contents.json -------------------------------------------------------------------------------- /团购/Assets.xcassets/NoData/bg_rotNetwork.imageset/bg_rotNetwork.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLAccount/XLGroupBuy/HEAD/团购/Assets.xcassets/NoData/bg_rotNetwork.imageset/bg_rotNetwork.png -------------------------------------------------------------------------------- /团购/Assets.xcassets/NoData/bg_rotNetwork.imageset/bg_rotNetwork@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLAccount/XLGroupBuy/HEAD/团购/Assets.xcassets/NoData/bg_rotNetwork.imageset/bg_rotNetwork@2x.png -------------------------------------------------------------------------------- /团购/Assets.xcassets/NoData/ic_order_empty.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLAccount/XLGroupBuy/HEAD/团购/Assets.xcassets/NoData/ic_order_empty.imageset/Contents.json -------------------------------------------------------------------------------- /团购/Assets.xcassets/NoData/ic_order_empty.imageset/ic_order_empty.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLAccount/XLGroupBuy/HEAD/团购/Assets.xcassets/NoData/ic_order_empty.imageset/ic_order_empty.png -------------------------------------------------------------------------------- /团购/Assets.xcassets/NoData/ic_order_empty.imageset/ic_order_empty@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLAccount/XLGroupBuy/HEAD/团购/Assets.xcassets/NoData/ic_order_empty.imageset/ic_order_empty@2x.png -------------------------------------------------------------------------------- /团购/Assets.xcassets/NoData/icon_cinemas_empty.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLAccount/XLGroupBuy/HEAD/团购/Assets.xcassets/NoData/icon_cinemas_empty.imageset/Contents.json -------------------------------------------------------------------------------- /团购/Assets.xcassets/NoData/icon_cinemas_empty.imageset/icon_cinemas_empty.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLAccount/XLGroupBuy/HEAD/团购/Assets.xcassets/NoData/icon_cinemas_empty.imageset/icon_cinemas_empty.png -------------------------------------------------------------------------------- /团购/Assets.xcassets/NoData/icon_cinemas_empty.imageset/icon_cinemas_empty@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLAccount/XLGroupBuy/HEAD/团购/Assets.xcassets/NoData/icon_cinemas_empty.imageset/icon_cinemas_empty@2x.png -------------------------------------------------------------------------------- /团购/Assets.xcassets/NoData/icon_collects_empty.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLAccount/XLGroupBuy/HEAD/团购/Assets.xcassets/NoData/icon_collects_empty.imageset/Contents.json -------------------------------------------------------------------------------- /团购/Assets.xcassets/NoData/icon_collects_empty.imageset/icon_collects_empty.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLAccount/XLGroupBuy/HEAD/团购/Assets.xcassets/NoData/icon_collects_empty.imageset/icon_collects_empty.png -------------------------------------------------------------------------------- /团购/Assets.xcassets/NoData/icon_collects_empty.imageset/icon_collects_empty@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLAccount/XLGroupBuy/HEAD/团购/Assets.xcassets/NoData/icon_collects_empty.imageset/icon_collects_empty@2x.png -------------------------------------------------------------------------------- /团购/Assets.xcassets/NoData/icon_deals_empty.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLAccount/XLGroupBuy/HEAD/团购/Assets.xcassets/NoData/icon_deals_empty.imageset/Contents.json -------------------------------------------------------------------------------- /团购/Assets.xcassets/NoData/icon_deals_empty.imageset/icon_deals_empty.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLAccount/XLGroupBuy/HEAD/团购/Assets.xcassets/NoData/icon_deals_empty.imageset/icon_deals_empty.png -------------------------------------------------------------------------------- /团购/Assets.xcassets/NoData/icon_deals_empty.imageset/icon_deals_empty@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLAccount/XLGroupBuy/HEAD/团购/Assets.xcassets/NoData/icon_deals_empty.imageset/icon_deals_empty@2x.png -------------------------------------------------------------------------------- /团购/Assets.xcassets/NoData/icon_latestBrowse_empty.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLAccount/XLGroupBuy/HEAD/团购/Assets.xcassets/NoData/icon_latestBrowse_empty.imageset/Contents.json -------------------------------------------------------------------------------- /团购/Assets.xcassets/NoData/icon_latestBrowse_empty.imageset/icon_latestBrowse_empty.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLAccount/XLGroupBuy/HEAD/团购/Assets.xcassets/NoData/icon_latestBrowse_empty.imageset/icon_latestBrowse_empty.png -------------------------------------------------------------------------------- /团购/Assets.xcassets/NoData/icon_latestBrowse_empty.imageset/icon_latestBrowse_empty@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLAccount/XLGroupBuy/HEAD/团购/Assets.xcassets/NoData/icon_latestBrowse_empty.imageset/icon_latestBrowse_empty@2x.png -------------------------------------------------------------------------------- /团购/Assets.xcassets/NoData/icon_map_search_empty.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLAccount/XLGroupBuy/HEAD/团购/Assets.xcassets/NoData/icon_map_search_empty.imageset/Contents.json -------------------------------------------------------------------------------- /团购/Assets.xcassets/NoData/icon_map_search_empty.imageset/icon_map_search_empty@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLAccount/XLGroupBuy/HEAD/团购/Assets.xcassets/NoData/icon_map_search_empty.imageset/icon_map_search_empty@2x.png -------------------------------------------------------------------------------- /团购/Assets.xcassets/Other/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLAccount/XLGroupBuy/HEAD/团购/Assets.xcassets/Other/Contents.json -------------------------------------------------------------------------------- /团购/Assets.xcassets/Other/bg_login_textfield.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLAccount/XLGroupBuy/HEAD/团购/Assets.xcassets/Other/bg_login_textfield.imageset/Contents.json -------------------------------------------------------------------------------- /团购/Assets.xcassets/Other/bg_login_textfield.imageset/bg_login_textfield.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLAccount/XLGroupBuy/HEAD/团购/Assets.xcassets/Other/bg_login_textfield.imageset/bg_login_textfield.png -------------------------------------------------------------------------------- /团购/Assets.xcassets/Other/bg_login_textfield.imageset/bg_login_textfield@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLAccount/XLGroupBuy/HEAD/团购/Assets.xcassets/Other/bg_login_textfield.imageset/bg_login_textfield@2x.png -------------------------------------------------------------------------------- /团购/Assets.xcassets/Other/bg_login_textfield_hl.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLAccount/XLGroupBuy/HEAD/团购/Assets.xcassets/Other/bg_login_textfield_hl.imageset/Contents.json -------------------------------------------------------------------------------- /团购/Assets.xcassets/Other/bg_login_textfield_hl.imageset/bg_login_textfield_hl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLAccount/XLGroupBuy/HEAD/团购/Assets.xcassets/Other/bg_login_textfield_hl.imageset/bg_login_textfield_hl.png -------------------------------------------------------------------------------- /团购/Assets.xcassets/Other/bg_login_textfield_hl.imageset/bg_login_textfield_hl@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLAccount/XLGroupBuy/HEAD/团购/Assets.xcassets/Other/bg_login_textfield_hl.imageset/bg_login_textfield_hl@2x.png -------------------------------------------------------------------------------- /团购/Assets.xcassets/Other/share_text_frame.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLAccount/XLGroupBuy/HEAD/团购/Assets.xcassets/Other/share_text_frame.imageset/Contents.json -------------------------------------------------------------------------------- /团购/Assets.xcassets/Other/share_text_frame.imageset/share_text_frame.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLAccount/XLGroupBuy/HEAD/团购/Assets.xcassets/Other/share_text_frame.imageset/share_text_frame.png -------------------------------------------------------------------------------- /团购/Assets.xcassets/Other/share_text_frame.imageset/share_text_frame@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLAccount/XLGroupBuy/HEAD/团购/Assets.xcassets/Other/share_text_frame.imageset/share_text_frame@2x.png -------------------------------------------------------------------------------- /团购/Assets.xcassets/Other/share_text_frame_on.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLAccount/XLGroupBuy/HEAD/团购/Assets.xcassets/Other/share_text_frame_on.imageset/Contents.json -------------------------------------------------------------------------------- /团购/Assets.xcassets/Other/share_text_frame_on.imageset/share_text_frame_on.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLAccount/XLGroupBuy/HEAD/团购/Assets.xcassets/Other/share_text_frame_on.imageset/share_text_frame_on.png -------------------------------------------------------------------------------- /团购/Assets.xcassets/Other/share_text_frame_on.imageset/share_text_frame_on@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLAccount/XLGroupBuy/HEAD/团购/Assets.xcassets/Other/share_text_frame_on.imageset/share_text_frame_on@2x.png -------------------------------------------------------------------------------- /团购/Assets.xcassets/UserMenu/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLAccount/XLGroupBuy/HEAD/团购/Assets.xcassets/UserMenu/Contents.json -------------------------------------------------------------------------------- /团购/Assets.xcassets/UserMenu/bg_pathMenu_black_normal.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLAccount/XLGroupBuy/HEAD/团购/Assets.xcassets/UserMenu/bg_pathMenu_black_normal.imageset/Contents.json -------------------------------------------------------------------------------- /团购/Assets.xcassets/UserMenu/bg_pathMenu_black_normal.imageset/bg_pathMenu_black_normal@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLAccount/XLGroupBuy/HEAD/团购/Assets.xcassets/UserMenu/bg_pathMenu_black_normal.imageset/bg_pathMenu_black_normal@2x.png -------------------------------------------------------------------------------- /团购/Assets.xcassets/UserMenu/icon_pathMenu_background.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLAccount/XLGroupBuy/HEAD/团购/Assets.xcassets/UserMenu/icon_pathMenu_background.imageset/Contents.json -------------------------------------------------------------------------------- /团购/Assets.xcassets/UserMenu/icon_pathMenu_background.imageset/icon_pathMenu_background@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLAccount/XLGroupBuy/HEAD/团购/Assets.xcassets/UserMenu/icon_pathMenu_background.imageset/icon_pathMenu_background@2x.png -------------------------------------------------------------------------------- /团购/Assets.xcassets/UserMenu/icon_pathMenu_background_highlighted.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLAccount/XLGroupBuy/HEAD/团购/Assets.xcassets/UserMenu/icon_pathMenu_background_highlighted.imageset/Contents.json -------------------------------------------------------------------------------- /团购/Assets.xcassets/UserMenu/icon_pathMenu_background_normal.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLAccount/XLGroupBuy/HEAD/团购/Assets.xcassets/UserMenu/icon_pathMenu_background_normal.imageset/Contents.json -------------------------------------------------------------------------------- /团购/Assets.xcassets/UserMenu/icon_pathMenu_background_normal.imageset/icon_pathMenu_background_normal@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLAccount/XLGroupBuy/HEAD/团购/Assets.xcassets/UserMenu/icon_pathMenu_background_normal.imageset/icon_pathMenu_background_normal@2x.png -------------------------------------------------------------------------------- /团购/Assets.xcassets/UserMenu/icon_pathMenu_collect_highlighted.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLAccount/XLGroupBuy/HEAD/团购/Assets.xcassets/UserMenu/icon_pathMenu_collect_highlighted.imageset/Contents.json -------------------------------------------------------------------------------- /团购/Assets.xcassets/UserMenu/icon_pathMenu_collect_highlighted.imageset/icon_pathMenu_collect_highlighted.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLAccount/XLGroupBuy/HEAD/团购/Assets.xcassets/UserMenu/icon_pathMenu_collect_highlighted.imageset/icon_pathMenu_collect_highlighted.png -------------------------------------------------------------------------------- /团购/Assets.xcassets/UserMenu/icon_pathMenu_collect_highlighted.imageset/icon_pathMenu_collect_highlighted@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLAccount/XLGroupBuy/HEAD/团购/Assets.xcassets/UserMenu/icon_pathMenu_collect_highlighted.imageset/icon_pathMenu_collect_highlighted@2x.png -------------------------------------------------------------------------------- /团购/Assets.xcassets/UserMenu/icon_pathMenu_collect_normal.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLAccount/XLGroupBuy/HEAD/团购/Assets.xcassets/UserMenu/icon_pathMenu_collect_normal.imageset/Contents.json -------------------------------------------------------------------------------- /团购/Assets.xcassets/UserMenu/icon_pathMenu_collect_normal.imageset/icon_pathMenu_collect_normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLAccount/XLGroupBuy/HEAD/团购/Assets.xcassets/UserMenu/icon_pathMenu_collect_normal.imageset/icon_pathMenu_collect_normal.png -------------------------------------------------------------------------------- /团购/Assets.xcassets/UserMenu/icon_pathMenu_collect_normal.imageset/icon_pathMenu_collect_normal@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLAccount/XLGroupBuy/HEAD/团购/Assets.xcassets/UserMenu/icon_pathMenu_collect_normal.imageset/icon_pathMenu_collect_normal@2x.png -------------------------------------------------------------------------------- /团购/Assets.xcassets/UserMenu/icon_pathMenu_cross_highlighted.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLAccount/XLGroupBuy/HEAD/团购/Assets.xcassets/UserMenu/icon_pathMenu_cross_highlighted.imageset/Contents.json -------------------------------------------------------------------------------- /团购/Assets.xcassets/UserMenu/icon_pathMenu_cross_highlighted.imageset/icon_pathMenu_cross_highlighted.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLAccount/XLGroupBuy/HEAD/团购/Assets.xcassets/UserMenu/icon_pathMenu_cross_highlighted.imageset/icon_pathMenu_cross_highlighted.png -------------------------------------------------------------------------------- /团购/Assets.xcassets/UserMenu/icon_pathMenu_cross_highlighted.imageset/icon_pathMenu_cross_highlighted@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLAccount/XLGroupBuy/HEAD/团购/Assets.xcassets/UserMenu/icon_pathMenu_cross_highlighted.imageset/icon_pathMenu_cross_highlighted@2x.png -------------------------------------------------------------------------------- /团购/Assets.xcassets/UserMenu/icon_pathMenu_cross_normal.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLAccount/XLGroupBuy/HEAD/团购/Assets.xcassets/UserMenu/icon_pathMenu_cross_normal.imageset/Contents.json -------------------------------------------------------------------------------- /团购/Assets.xcassets/UserMenu/icon_pathMenu_cross_normal.imageset/icon_pathMenu_cross_normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLAccount/XLGroupBuy/HEAD/团购/Assets.xcassets/UserMenu/icon_pathMenu_cross_normal.imageset/icon_pathMenu_cross_normal.png -------------------------------------------------------------------------------- /团购/Assets.xcassets/UserMenu/icon_pathMenu_cross_normal.imageset/icon_pathMenu_cross_normal@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLAccount/XLGroupBuy/HEAD/团购/Assets.xcassets/UserMenu/icon_pathMenu_cross_normal.imageset/icon_pathMenu_cross_normal@2x.png -------------------------------------------------------------------------------- /团购/Assets.xcassets/UserMenu/icon_pathMenu_mainMine_highlighted.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLAccount/XLGroupBuy/HEAD/团购/Assets.xcassets/UserMenu/icon_pathMenu_mainMine_highlighted.imageset/Contents.json -------------------------------------------------------------------------------- /团购/Assets.xcassets/UserMenu/icon_pathMenu_mainMine_highlighted.imageset/icon_pathMenu_mainMine_highlighted.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLAccount/XLGroupBuy/HEAD/团购/Assets.xcassets/UserMenu/icon_pathMenu_mainMine_highlighted.imageset/icon_pathMenu_mainMine_highlighted.png -------------------------------------------------------------------------------- /团购/Assets.xcassets/UserMenu/icon_pathMenu_mainMine_highlighted.imageset/icon_pathMenu_mainMine_highlighted@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLAccount/XLGroupBuy/HEAD/团购/Assets.xcassets/UserMenu/icon_pathMenu_mainMine_highlighted.imageset/icon_pathMenu_mainMine_highlighted@2x.png -------------------------------------------------------------------------------- /团购/Assets.xcassets/UserMenu/icon_pathMenu_mainMine_normal.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLAccount/XLGroupBuy/HEAD/团购/Assets.xcassets/UserMenu/icon_pathMenu_mainMine_normal.imageset/Contents.json -------------------------------------------------------------------------------- /团购/Assets.xcassets/UserMenu/icon_pathMenu_mainMine_normal.imageset/icon_pathMenu_mainMine_normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLAccount/XLGroupBuy/HEAD/团购/Assets.xcassets/UserMenu/icon_pathMenu_mainMine_normal.imageset/icon_pathMenu_mainMine_normal.png -------------------------------------------------------------------------------- /团购/Assets.xcassets/UserMenu/icon_pathMenu_mainMine_normal.imageset/icon_pathMenu_mainMine_normal@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLAccount/XLGroupBuy/HEAD/团购/Assets.xcassets/UserMenu/icon_pathMenu_mainMine_normal.imageset/icon_pathMenu_mainMine_normal@2x.png -------------------------------------------------------------------------------- /团购/Assets.xcassets/UserMenu/icon_pathMenu_mine_highlighted.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLAccount/XLGroupBuy/HEAD/团购/Assets.xcassets/UserMenu/icon_pathMenu_mine_highlighted.imageset/Contents.json -------------------------------------------------------------------------------- /团购/Assets.xcassets/UserMenu/icon_pathMenu_mine_highlighted.imageset/icon_pathMenu_mine_highlighted.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLAccount/XLGroupBuy/HEAD/团购/Assets.xcassets/UserMenu/icon_pathMenu_mine_highlighted.imageset/icon_pathMenu_mine_highlighted.png -------------------------------------------------------------------------------- /团购/Assets.xcassets/UserMenu/icon_pathMenu_mine_highlighted.imageset/icon_pathMenu_mine_highlighted@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLAccount/XLGroupBuy/HEAD/团购/Assets.xcassets/UserMenu/icon_pathMenu_mine_highlighted.imageset/icon_pathMenu_mine_highlighted@2x.png -------------------------------------------------------------------------------- /团购/Assets.xcassets/UserMenu/icon_pathMenu_mine_normal.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLAccount/XLGroupBuy/HEAD/团购/Assets.xcassets/UserMenu/icon_pathMenu_mine_normal.imageset/Contents.json -------------------------------------------------------------------------------- /团购/Assets.xcassets/UserMenu/icon_pathMenu_mine_normal.imageset/icon_pathMenu_mine_normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLAccount/XLGroupBuy/HEAD/团购/Assets.xcassets/UserMenu/icon_pathMenu_mine_normal.imageset/icon_pathMenu_mine_normal.png -------------------------------------------------------------------------------- /团购/Assets.xcassets/UserMenu/icon_pathMenu_mine_normal.imageset/icon_pathMenu_mine_normal@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLAccount/XLGroupBuy/HEAD/团购/Assets.xcassets/UserMenu/icon_pathMenu_mine_normal.imageset/icon_pathMenu_mine_normal@2x.png -------------------------------------------------------------------------------- /团购/Assets.xcassets/UserMenu/icon_pathMenu_more_highlighted.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLAccount/XLGroupBuy/HEAD/团购/Assets.xcassets/UserMenu/icon_pathMenu_more_highlighted.imageset/Contents.json -------------------------------------------------------------------------------- /团购/Assets.xcassets/UserMenu/icon_pathMenu_more_highlighted.imageset/icon_pathMenu_more_highlighted.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLAccount/XLGroupBuy/HEAD/团购/Assets.xcassets/UserMenu/icon_pathMenu_more_highlighted.imageset/icon_pathMenu_more_highlighted.png -------------------------------------------------------------------------------- /团购/Assets.xcassets/UserMenu/icon_pathMenu_more_highlighted.imageset/icon_pathMenu_more_highlighted@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLAccount/XLGroupBuy/HEAD/团购/Assets.xcassets/UserMenu/icon_pathMenu_more_highlighted.imageset/icon_pathMenu_more_highlighted@2x.png -------------------------------------------------------------------------------- /团购/Assets.xcassets/UserMenu/icon_pathMenu_more_normal.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLAccount/XLGroupBuy/HEAD/团购/Assets.xcassets/UserMenu/icon_pathMenu_more_normal.imageset/Contents.json -------------------------------------------------------------------------------- /团购/Assets.xcassets/UserMenu/icon_pathMenu_more_normal.imageset/icon_pathMenu_more_normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLAccount/XLGroupBuy/HEAD/团购/Assets.xcassets/UserMenu/icon_pathMenu_more_normal.imageset/icon_pathMenu_more_normal.png -------------------------------------------------------------------------------- /团购/Assets.xcassets/UserMenu/icon_pathMenu_more_normal.imageset/icon_pathMenu_more_normal@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLAccount/XLGroupBuy/HEAD/团购/Assets.xcassets/UserMenu/icon_pathMenu_more_normal.imageset/icon_pathMenu_more_normal@2x.png -------------------------------------------------------------------------------- /团购/Assets.xcassets/UserMenu/icon_pathMenu_scan_highlighted.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLAccount/XLGroupBuy/HEAD/团购/Assets.xcassets/UserMenu/icon_pathMenu_scan_highlighted.imageset/Contents.json -------------------------------------------------------------------------------- /团购/Assets.xcassets/UserMenu/icon_pathMenu_scan_highlighted.imageset/icon_pathMenu_scan_highlighted.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLAccount/XLGroupBuy/HEAD/团购/Assets.xcassets/UserMenu/icon_pathMenu_scan_highlighted.imageset/icon_pathMenu_scan_highlighted.png -------------------------------------------------------------------------------- /团购/Assets.xcassets/UserMenu/icon_pathMenu_scan_highlighted.imageset/icon_pathMenu_scan_highlighted@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLAccount/XLGroupBuy/HEAD/团购/Assets.xcassets/UserMenu/icon_pathMenu_scan_highlighted.imageset/icon_pathMenu_scan_highlighted@2x.png -------------------------------------------------------------------------------- /团购/Assets.xcassets/UserMenu/icon_pathMenu_scan_normal.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLAccount/XLGroupBuy/HEAD/团购/Assets.xcassets/UserMenu/icon_pathMenu_scan_normal.imageset/Contents.json -------------------------------------------------------------------------------- /团购/Assets.xcassets/UserMenu/icon_pathMenu_scan_normal.imageset/icon_pathMenu_scan_normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLAccount/XLGroupBuy/HEAD/团购/Assets.xcassets/UserMenu/icon_pathMenu_scan_normal.imageset/icon_pathMenu_scan_normal.png -------------------------------------------------------------------------------- /团购/Assets.xcassets/UserMenu/icon_pathMenu_scan_normal.imageset/icon_pathMenu_scan_normal@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLAccount/XLGroupBuy/HEAD/团购/Assets.xcassets/UserMenu/icon_pathMenu_scan_normal.imageset/icon_pathMenu_scan_normal@2x.png -------------------------------------------------------------------------------- /团购/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLAccount/XLGroupBuy/HEAD/团购/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /团购/Classes/DealDetail/VIewController/XLDealDetailViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLAccount/XLGroupBuy/HEAD/团购/Classes/DealDetail/VIewController/XLDealDetailViewController.h -------------------------------------------------------------------------------- /团购/Classes/DealDetail/VIewController/XLDealDetailViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLAccount/XLGroupBuy/HEAD/团购/Classes/DealDetail/VIewController/XLDealDetailViewController.m -------------------------------------------------------------------------------- /团购/Classes/DealDetail/VIewController/XLDealDetailViewController.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLAccount/XLGroupBuy/HEAD/团购/Classes/DealDetail/VIewController/XLDealDetailViewController.xib -------------------------------------------------------------------------------- /团购/Classes/Deals/CItyAndRegions/Controller/XLCityMenuViewContriller.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLAccount/XLGroupBuy/HEAD/团购/Classes/Deals/CItyAndRegions/Controller/XLCityMenuViewContriller.h -------------------------------------------------------------------------------- /团购/Classes/Deals/CItyAndRegions/Controller/XLCityMenuViewContriller.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLAccount/XLGroupBuy/HEAD/团购/Classes/Deals/CItyAndRegions/Controller/XLCityMenuViewContriller.m -------------------------------------------------------------------------------- /团购/Classes/Deals/CItyAndRegions/Controller/XLCityMenuViewContriller.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLAccount/XLGroupBuy/HEAD/团购/Classes/Deals/CItyAndRegions/Controller/XLCityMenuViewContriller.xib -------------------------------------------------------------------------------- /团购/Classes/Deals/CItyAndRegions/Controller/XLRegionsViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLAccount/XLGroupBuy/HEAD/团购/Classes/Deals/CItyAndRegions/Controller/XLRegionsViewController.h -------------------------------------------------------------------------------- /团购/Classes/Deals/CItyAndRegions/Controller/XLRegionsViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLAccount/XLGroupBuy/HEAD/团购/Classes/Deals/CItyAndRegions/Controller/XLRegionsViewController.m -------------------------------------------------------------------------------- /团购/Classes/Deals/CItyAndRegions/Controller/XLSearchCityController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLAccount/XLGroupBuy/HEAD/团购/Classes/Deals/CItyAndRegions/Controller/XLSearchCityController.h -------------------------------------------------------------------------------- /团购/Classes/Deals/CItyAndRegions/Controller/XLSearchCityController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLAccount/XLGroupBuy/HEAD/团购/Classes/Deals/CItyAndRegions/Controller/XLSearchCityController.m -------------------------------------------------------------------------------- /团购/Classes/Deals/CItyAndRegions/Modal/XLCityGroupModal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLAccount/XLGroupBuy/HEAD/团购/Classes/Deals/CItyAndRegions/Modal/XLCityGroupModal.h -------------------------------------------------------------------------------- /团购/Classes/Deals/CItyAndRegions/Modal/XLCityGroupModal.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLAccount/XLGroupBuy/HEAD/团购/Classes/Deals/CItyAndRegions/Modal/XLCityGroupModal.m -------------------------------------------------------------------------------- /团购/Classes/Deals/CItyAndRegions/Modal/XLCityModal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLAccount/XLGroupBuy/HEAD/团购/Classes/Deals/CItyAndRegions/Modal/XLCityModal.h -------------------------------------------------------------------------------- /团购/Classes/Deals/CItyAndRegions/Modal/XLCityModal.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLAccount/XLGroupBuy/HEAD/团购/Classes/Deals/CItyAndRegions/Modal/XLCityModal.m -------------------------------------------------------------------------------- /团购/Classes/Deals/CItyAndRegions/Modal/XLRegionModal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLAccount/XLGroupBuy/HEAD/团购/Classes/Deals/CItyAndRegions/Modal/XLRegionModal.h -------------------------------------------------------------------------------- /团购/Classes/Deals/CItyAndRegions/Modal/XLRegionModal.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLAccount/XLGroupBuy/HEAD/团购/Classes/Deals/CItyAndRegions/Modal/XLRegionModal.m -------------------------------------------------------------------------------- /团购/Classes/Deals/Category/Controller/XLCatagoryViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLAccount/XLGroupBuy/HEAD/团购/Classes/Deals/Category/Controller/XLCatagoryViewController.h -------------------------------------------------------------------------------- /团购/Classes/Deals/Category/Controller/XLCatagoryViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLAccount/XLGroupBuy/HEAD/团购/Classes/Deals/Category/Controller/XLCatagoryViewController.m -------------------------------------------------------------------------------- /团购/Classes/Deals/Category/Modal/XLCategoryModal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLAccount/XLGroupBuy/HEAD/团购/Classes/Deals/Category/Modal/XLCategoryModal.h -------------------------------------------------------------------------------- /团购/Classes/Deals/Category/Modal/XLCategoryModal.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLAccount/XLGroupBuy/HEAD/团购/Classes/Deals/Category/Modal/XLCategoryModal.m -------------------------------------------------------------------------------- /团购/Classes/Deals/Sort/Controller/XLSortViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLAccount/XLGroupBuy/HEAD/团购/Classes/Deals/Sort/Controller/XLSortViewController.h -------------------------------------------------------------------------------- /团购/Classes/Deals/Sort/Controller/XLSortViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLAccount/XLGroupBuy/HEAD/团购/Classes/Deals/Sort/Controller/XLSortViewController.m -------------------------------------------------------------------------------- /团购/Classes/Deals/Sort/Controller/XLSortViewController.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLAccount/XLGroupBuy/HEAD/团购/Classes/Deals/Sort/Controller/XLSortViewController.xib -------------------------------------------------------------------------------- /团购/Classes/Deals/Sort/Modal/XLSortModal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLAccount/XLGroupBuy/HEAD/团购/Classes/Deals/Sort/Modal/XLSortModal.h -------------------------------------------------------------------------------- /团购/Classes/Deals/Sort/Modal/XLSortModal.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLAccount/XLGroupBuy/HEAD/团购/Classes/Deals/Sort/Modal/XLSortModal.m -------------------------------------------------------------------------------- /团购/Classes/Deals/View/XLDropDownMenu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLAccount/XLGroupBuy/HEAD/团购/Classes/Deals/View/XLDropDownMenu.h -------------------------------------------------------------------------------- /团购/Classes/Deals/View/XLDropDownMenu.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLAccount/XLGroupBuy/HEAD/团购/Classes/Deals/View/XLDropDownMenu.m -------------------------------------------------------------------------------- /团购/Classes/Deals/View/XLDropDownMenu.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLAccount/XLGroupBuy/HEAD/团购/Classes/Deals/View/XLDropDownMenu.xib -------------------------------------------------------------------------------- /团购/Classes/Deals/View/XLMainCell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLAccount/XLGroupBuy/HEAD/团购/Classes/Deals/View/XLMainCell.h -------------------------------------------------------------------------------- /团购/Classes/Deals/View/XLMainCell.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLAccount/XLGroupBuy/HEAD/团购/Classes/Deals/View/XLMainCell.m -------------------------------------------------------------------------------- /团购/Classes/Deals/View/XLNavMenu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLAccount/XLGroupBuy/HEAD/团购/Classes/Deals/View/XLNavMenu.h -------------------------------------------------------------------------------- /团购/Classes/Deals/View/XLNavMenu.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLAccount/XLGroupBuy/HEAD/团购/Classes/Deals/View/XLNavMenu.m -------------------------------------------------------------------------------- /团购/Classes/Deals/View/XLNavMenu.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLAccount/XLGroupBuy/HEAD/团购/Classes/Deals/View/XLNavMenu.xib -------------------------------------------------------------------------------- /团购/Classes/Deals/View/XLSubViewCell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLAccount/XLGroupBuy/HEAD/团购/Classes/Deals/View/XLSubViewCell.h -------------------------------------------------------------------------------- /团购/Classes/Deals/View/XLSubViewCell.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLAccount/XLGroupBuy/HEAD/团购/Classes/Deals/View/XLSubViewCell.m -------------------------------------------------------------------------------- /团购/Classes/Main/Controller/XLBasicCollectionViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLAccount/XLGroupBuy/HEAD/团购/Classes/Main/Controller/XLBasicCollectionViewController.h -------------------------------------------------------------------------------- /团购/Classes/Main/Controller/XLBasicCollectionViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLAccount/XLGroupBuy/HEAD/团购/Classes/Main/Controller/XLBasicCollectionViewController.m -------------------------------------------------------------------------------- /团购/Classes/Main/Controller/XLMainController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLAccount/XLGroupBuy/HEAD/团购/Classes/Main/Controller/XLMainController.h -------------------------------------------------------------------------------- /团购/Classes/Main/Controller/XLMainController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLAccount/XLGroupBuy/HEAD/团购/Classes/Main/Controller/XLMainController.m -------------------------------------------------------------------------------- /团购/Classes/Main/Modal/dealModal/XLBusinesses.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLAccount/XLGroupBuy/HEAD/团购/Classes/Main/Modal/dealModal/XLBusinesses.h -------------------------------------------------------------------------------- /团购/Classes/Main/Modal/dealModal/XLBusinesses.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLAccount/XLGroupBuy/HEAD/团购/Classes/Main/Modal/dealModal/XLBusinesses.m -------------------------------------------------------------------------------- /团购/Classes/Main/Modal/dealModal/XLDeal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLAccount/XLGroupBuy/HEAD/团购/Classes/Main/Modal/dealModal/XLDeal.h -------------------------------------------------------------------------------- /团购/Classes/Main/Modal/dealModal/XLDeal.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLAccount/XLGroupBuy/HEAD/团购/Classes/Main/Modal/dealModal/XLDeal.m -------------------------------------------------------------------------------- /团购/Classes/Main/Modal/dealModal/XLFindDealsParam.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLAccount/XLGroupBuy/HEAD/团购/Classes/Main/Modal/dealModal/XLFindDealsParam.h -------------------------------------------------------------------------------- /团购/Classes/Main/Modal/dealModal/XLFindDealsParam.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLAccount/XLGroupBuy/HEAD/团购/Classes/Main/Modal/dealModal/XLFindDealsParam.m -------------------------------------------------------------------------------- /团购/Classes/Main/Modal/dealModal/XLFindDealsResult.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLAccount/XLGroupBuy/HEAD/团购/Classes/Main/Modal/dealModal/XLFindDealsResult.h -------------------------------------------------------------------------------- /团购/Classes/Main/Modal/dealModal/XLFindDealsResult.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLAccount/XLGroupBuy/HEAD/团购/Classes/Main/Modal/dealModal/XLFindDealsResult.m -------------------------------------------------------------------------------- /团购/Classes/Main/Modal/dealModal/XLRestrictionModal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLAccount/XLGroupBuy/HEAD/团购/Classes/Main/Modal/dealModal/XLRestrictionModal.h -------------------------------------------------------------------------------- /团购/Classes/Main/Modal/dealModal/XLRestrictionModal.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLAccount/XLGroupBuy/HEAD/团购/Classes/Main/Modal/dealModal/XLRestrictionModal.m -------------------------------------------------------------------------------- /团购/Classes/Main/Modal/dealModal/XLSingleParam.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLAccount/XLGroupBuy/HEAD/团购/Classes/Main/Modal/dealModal/XLSingleParam.h -------------------------------------------------------------------------------- /团购/Classes/Main/Modal/dealModal/XLSingleParam.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLAccount/XLGroupBuy/HEAD/团购/Classes/Main/Modal/dealModal/XLSingleParam.m -------------------------------------------------------------------------------- /团购/Classes/Main/Modal/dealModal/XLSingleResult.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLAccount/XLGroupBuy/HEAD/团购/Classes/Main/Modal/dealModal/XLSingleResult.h -------------------------------------------------------------------------------- /团购/Classes/Main/Modal/dealModal/XLSingleResult.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLAccount/XLGroupBuy/HEAD/团购/Classes/Main/Modal/dealModal/XLSingleResult.m -------------------------------------------------------------------------------- /团购/Classes/Main/Tool/XLApiTool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLAccount/XLGroupBuy/HEAD/团购/Classes/Main/Tool/XLApiTool.h -------------------------------------------------------------------------------- /团购/Classes/Main/Tool/XLApiTool.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLAccount/XLGroupBuy/HEAD/团购/Classes/Main/Tool/XLApiTool.m -------------------------------------------------------------------------------- /团购/Classes/Main/Tool/XLDataTool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLAccount/XLGroupBuy/HEAD/团购/Classes/Main/Tool/XLDataTool.h -------------------------------------------------------------------------------- /团购/Classes/Main/Tool/XLDataTool.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLAccount/XLGroupBuy/HEAD/团购/Classes/Main/Tool/XLDataTool.m -------------------------------------------------------------------------------- /团购/Classes/Main/Tool/XLDealTool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLAccount/XLGroupBuy/HEAD/团购/Classes/Main/Tool/XLDealTool.h -------------------------------------------------------------------------------- /团购/Classes/Main/Tool/XLDealTool.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLAccount/XLGroupBuy/HEAD/团购/Classes/Main/Tool/XLDealTool.m -------------------------------------------------------------------------------- /团购/Classes/Main/UINavigationController/XLNavController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLAccount/XLGroupBuy/HEAD/团购/Classes/Main/UINavigationController/XLNavController.h -------------------------------------------------------------------------------- /团购/Classes/Main/UINavigationController/XLNavController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLAccount/XLGroupBuy/HEAD/团购/Classes/Main/UINavigationController/XLNavController.m -------------------------------------------------------------------------------- /团购/Classes/Main/View/XLBiasLineLabel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLAccount/XLGroupBuy/HEAD/团购/Classes/Main/View/XLBiasLineLabel.h -------------------------------------------------------------------------------- /团购/Classes/Main/View/XLBiasLineLabel.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLAccount/XLGroupBuy/HEAD/团购/Classes/Main/View/XLBiasLineLabel.m -------------------------------------------------------------------------------- /团购/Classes/Main/View/XLCollectionViewCell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLAccount/XLGroupBuy/HEAD/团购/Classes/Main/View/XLCollectionViewCell.h -------------------------------------------------------------------------------- /团购/Classes/Main/View/XLCollectionViewCell.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLAccount/XLGroupBuy/HEAD/团购/Classes/Main/View/XLCollectionViewCell.m -------------------------------------------------------------------------------- /团购/Classes/Main/View/XLCollectionViewCell.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLAccount/XLGroupBuy/HEAD/团购/Classes/Main/View/XLCollectionViewCell.xib -------------------------------------------------------------------------------- /团购/Classes/Main/View/XLEmptyView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLAccount/XLGroupBuy/HEAD/团购/Classes/Main/View/XLEmptyView.h -------------------------------------------------------------------------------- /团购/Classes/Main/View/XLEmptyView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLAccount/XLGroupBuy/HEAD/团购/Classes/Main/View/XLEmptyView.m -------------------------------------------------------------------------------- /团购/Classes/Map/Controller/XLMapViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLAccount/XLGroupBuy/HEAD/团购/Classes/Map/Controller/XLMapViewController.h -------------------------------------------------------------------------------- /团购/Classes/Map/Controller/XLMapViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLAccount/XLGroupBuy/HEAD/团购/Classes/Map/Controller/XLMapViewController.m -------------------------------------------------------------------------------- /团购/Classes/Map/Controller/XLMapViewController.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLAccount/XLGroupBuy/HEAD/团购/Classes/Map/Controller/XLMapViewController.xib -------------------------------------------------------------------------------- /团购/Classes/Map/Modal/XLAnnotationModal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLAccount/XLGroupBuy/HEAD/团购/Classes/Map/Modal/XLAnnotationModal.h -------------------------------------------------------------------------------- /团购/Classes/Map/Modal/XLAnnotationModal.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLAccount/XLGroupBuy/HEAD/团购/Classes/Map/Modal/XLAnnotationModal.m -------------------------------------------------------------------------------- /团购/Classes/Map/View/XLAnnotationRightBtn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLAccount/XLGroupBuy/HEAD/团购/Classes/Map/View/XLAnnotationRightBtn.h -------------------------------------------------------------------------------- /团购/Classes/Map/View/XLAnnotationRightBtn.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLAccount/XLGroupBuy/HEAD/团购/Classes/Map/View/XLAnnotationRightBtn.m -------------------------------------------------------------------------------- /团购/Classes/Mine/COntroller/XLMineCollectionViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLAccount/XLGroupBuy/HEAD/团购/Classes/Mine/COntroller/XLMineCollectionViewController.h -------------------------------------------------------------------------------- /团购/Classes/Mine/COntroller/XLMineCollectionViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLAccount/XLGroupBuy/HEAD/团购/Classes/Mine/COntroller/XLMineCollectionViewController.m -------------------------------------------------------------------------------- /团购/Classes/More/Controller/XLMoreCollectionViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLAccount/XLGroupBuy/HEAD/团购/Classes/More/Controller/XLMoreCollectionViewController.h -------------------------------------------------------------------------------- /团购/Classes/More/Controller/XLMoreCollectionViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLAccount/XLGroupBuy/HEAD/团购/Classes/More/Controller/XLMoreCollectionViewController.m -------------------------------------------------------------------------------- /团购/Classes/Other/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLAccount/XLGroupBuy/HEAD/团购/Classes/Other/AppDelegate.h -------------------------------------------------------------------------------- /团购/Classes/Other/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLAccount/XLGroupBuy/HEAD/团购/Classes/Other/AppDelegate.m -------------------------------------------------------------------------------- /团购/Classes/Other/Category/NSArray+Extension.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLAccount/XLGroupBuy/HEAD/团购/Classes/Other/Category/NSArray+Extension.h -------------------------------------------------------------------------------- /团购/Classes/Other/Category/NSArray+Extension.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLAccount/XLGroupBuy/HEAD/团购/Classes/Other/Category/NSArray+Extension.m -------------------------------------------------------------------------------- /团购/Classes/Other/Category/NSDate+comperWithOther.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLAccount/XLGroupBuy/HEAD/团购/Classes/Other/Category/NSDate+comperWithOther.h -------------------------------------------------------------------------------- /团购/Classes/Other/Category/NSDate+comperWithOther.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLAccount/XLGroupBuy/HEAD/团购/Classes/Other/Category/NSDate+comperWithOther.m -------------------------------------------------------------------------------- /团购/Classes/Other/Category/UIBarButtonItem+Extension.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLAccount/XLGroupBuy/HEAD/团购/Classes/Other/Category/UIBarButtonItem+Extension.h -------------------------------------------------------------------------------- /团购/Classes/Other/Category/UIBarButtonItem+Extension.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLAccount/XLGroupBuy/HEAD/团购/Classes/Other/Category/UIBarButtonItem+Extension.m -------------------------------------------------------------------------------- /团购/Classes/Other/Category/UIView+AutoLayout.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLAccount/XLGroupBuy/HEAD/团购/Classes/Other/Category/UIView+AutoLayout.h -------------------------------------------------------------------------------- /团购/Classes/Other/Category/UIView+AutoLayout.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLAccount/XLGroupBuy/HEAD/团购/Classes/Other/Category/UIView+AutoLayout.m -------------------------------------------------------------------------------- /团购/Classes/Other/Category/UIView+Extension.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLAccount/XLGroupBuy/HEAD/团购/Classes/Other/Category/UIView+Extension.h -------------------------------------------------------------------------------- /团购/Classes/Other/Category/UIView+Extension.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLAccount/XLGroupBuy/HEAD/团购/Classes/Other/Category/UIView+Extension.m -------------------------------------------------------------------------------- /团购/Classes/Other/JSON/categories.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLAccount/XLGroupBuy/HEAD/团购/Classes/Other/JSON/categories.plist -------------------------------------------------------------------------------- /团购/Classes/Other/JSON/cities.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLAccount/XLGroupBuy/HEAD/团购/Classes/Other/JSON/cities.plist -------------------------------------------------------------------------------- /团购/Classes/Other/JSON/cityGroups.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLAccount/XLGroupBuy/HEAD/团购/Classes/Other/JSON/cityGroups.plist -------------------------------------------------------------------------------- /团购/Classes/Other/JSON/sorts.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLAccount/XLGroupBuy/HEAD/团购/Classes/Other/JSON/sorts.plist -------------------------------------------------------------------------------- /团购/Classes/Other/Lib/AwesomeMenu/AwesomeMenu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLAccount/XLGroupBuy/HEAD/团购/Classes/Other/Lib/AwesomeMenu/AwesomeMenu.h -------------------------------------------------------------------------------- /团购/Classes/Other/Lib/AwesomeMenu/AwesomeMenu.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLAccount/XLGroupBuy/HEAD/团购/Classes/Other/Lib/AwesomeMenu/AwesomeMenu.m -------------------------------------------------------------------------------- /团购/Classes/Other/Lib/AwesomeMenu/AwesomeMenuItem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLAccount/XLGroupBuy/HEAD/团购/Classes/Other/Lib/AwesomeMenu/AwesomeMenuItem.h -------------------------------------------------------------------------------- /团购/Classes/Other/Lib/AwesomeMenu/AwesomeMenuItem.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLAccount/XLGroupBuy/HEAD/团购/Classes/Other/Lib/AwesomeMenu/AwesomeMenuItem.m -------------------------------------------------------------------------------- /团购/Classes/Other/Lib/MBProgressHUD/MBProgressHUD+MJ.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLAccount/XLGroupBuy/HEAD/团购/Classes/Other/Lib/MBProgressHUD/MBProgressHUD+MJ.h -------------------------------------------------------------------------------- /团购/Classes/Other/Lib/MBProgressHUD/MBProgressHUD+MJ.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLAccount/XLGroupBuy/HEAD/团购/Classes/Other/Lib/MBProgressHUD/MBProgressHUD+MJ.m -------------------------------------------------------------------------------- /团购/Classes/Other/Lib/MBProgressHUD/MBProgressHUD.bundle/error.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLAccount/XLGroupBuy/HEAD/团购/Classes/Other/Lib/MBProgressHUD/MBProgressHUD.bundle/error.png -------------------------------------------------------------------------------- /团购/Classes/Other/Lib/MBProgressHUD/MBProgressHUD.bundle/error@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLAccount/XLGroupBuy/HEAD/团购/Classes/Other/Lib/MBProgressHUD/MBProgressHUD.bundle/error@2x.png -------------------------------------------------------------------------------- /团购/Classes/Other/Lib/MBProgressHUD/MBProgressHUD.bundle/success.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLAccount/XLGroupBuy/HEAD/团购/Classes/Other/Lib/MBProgressHUD/MBProgressHUD.bundle/success.png -------------------------------------------------------------------------------- /团购/Classes/Other/Lib/MBProgressHUD/MBProgressHUD.bundle/success@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLAccount/XLGroupBuy/HEAD/团购/Classes/Other/Lib/MBProgressHUD/MBProgressHUD.bundle/success@2x.png -------------------------------------------------------------------------------- /团购/Classes/Other/Lib/MBProgressHUD/MBProgressHUD.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLAccount/XLGroupBuy/HEAD/团购/Classes/Other/Lib/MBProgressHUD/MBProgressHUD.h -------------------------------------------------------------------------------- /团购/Classes/Other/Lib/MBProgressHUD/MBProgressHUD.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLAccount/XLGroupBuy/HEAD/团购/Classes/Other/Lib/MBProgressHUD/MBProgressHUD.m -------------------------------------------------------------------------------- /团购/Classes/Other/Lib/MJExtension/MJArgument.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLAccount/XLGroupBuy/HEAD/团购/Classes/Other/Lib/MJExtension/MJArgument.h -------------------------------------------------------------------------------- /团购/Classes/Other/Lib/MJExtension/MJArgument.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLAccount/XLGroupBuy/HEAD/团购/Classes/Other/Lib/MJExtension/MJArgument.m -------------------------------------------------------------------------------- /团购/Classes/Other/Lib/MJExtension/MJConst.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLAccount/XLGroupBuy/HEAD/团购/Classes/Other/Lib/MJExtension/MJConst.h -------------------------------------------------------------------------------- /团购/Classes/Other/Lib/MJExtension/MJConst.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLAccount/XLGroupBuy/HEAD/团购/Classes/Other/Lib/MJExtension/MJConst.m -------------------------------------------------------------------------------- /团购/Classes/Other/Lib/MJExtension/MJExtension.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLAccount/XLGroupBuy/HEAD/团购/Classes/Other/Lib/MJExtension/MJExtension.h -------------------------------------------------------------------------------- /团购/Classes/Other/Lib/MJExtension/MJFoundation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLAccount/XLGroupBuy/HEAD/团购/Classes/Other/Lib/MJExtension/MJFoundation.h -------------------------------------------------------------------------------- /团购/Classes/Other/Lib/MJExtension/MJFoundation.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLAccount/XLGroupBuy/HEAD/团购/Classes/Other/Lib/MJExtension/MJFoundation.m -------------------------------------------------------------------------------- /团购/Classes/Other/Lib/MJExtension/MJIvar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLAccount/XLGroupBuy/HEAD/团购/Classes/Other/Lib/MJExtension/MJIvar.h -------------------------------------------------------------------------------- /团购/Classes/Other/Lib/MJExtension/MJIvar.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLAccount/XLGroupBuy/HEAD/团购/Classes/Other/Lib/MJExtension/MJIvar.m -------------------------------------------------------------------------------- /团购/Classes/Other/Lib/MJExtension/MJMember.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLAccount/XLGroupBuy/HEAD/团购/Classes/Other/Lib/MJExtension/MJMember.h -------------------------------------------------------------------------------- /团购/Classes/Other/Lib/MJExtension/MJMember.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLAccount/XLGroupBuy/HEAD/团购/Classes/Other/Lib/MJExtension/MJMember.m -------------------------------------------------------------------------------- /团购/Classes/Other/Lib/MJExtension/MJMethod.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLAccount/XLGroupBuy/HEAD/团购/Classes/Other/Lib/MJExtension/MJMethod.h -------------------------------------------------------------------------------- /团购/Classes/Other/Lib/MJExtension/MJMethod.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLAccount/XLGroupBuy/HEAD/团购/Classes/Other/Lib/MJExtension/MJMethod.m -------------------------------------------------------------------------------- /团购/Classes/Other/Lib/MJExtension/MJType.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLAccount/XLGroupBuy/HEAD/团购/Classes/Other/Lib/MJExtension/MJType.h -------------------------------------------------------------------------------- /团购/Classes/Other/Lib/MJExtension/MJType.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLAccount/XLGroupBuy/HEAD/团购/Classes/Other/Lib/MJExtension/MJType.m -------------------------------------------------------------------------------- /团购/Classes/Other/Lib/MJExtension/MJTypeEncoding.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLAccount/XLGroupBuy/HEAD/团购/Classes/Other/Lib/MJExtension/MJTypeEncoding.h -------------------------------------------------------------------------------- /团购/Classes/Other/Lib/MJExtension/MJTypeEncoding.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLAccount/XLGroupBuy/HEAD/团购/Classes/Other/Lib/MJExtension/MJTypeEncoding.m -------------------------------------------------------------------------------- /团购/Classes/Other/Lib/MJExtension/NSObject+MJCoding.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLAccount/XLGroupBuy/HEAD/团购/Classes/Other/Lib/MJExtension/NSObject+MJCoding.h -------------------------------------------------------------------------------- /团购/Classes/Other/Lib/MJExtension/NSObject+MJCoding.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLAccount/XLGroupBuy/HEAD/团购/Classes/Other/Lib/MJExtension/NSObject+MJCoding.m -------------------------------------------------------------------------------- /团购/Classes/Other/Lib/MJExtension/NSObject+MJKeyValue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLAccount/XLGroupBuy/HEAD/团购/Classes/Other/Lib/MJExtension/NSObject+MJKeyValue.h -------------------------------------------------------------------------------- /团购/Classes/Other/Lib/MJExtension/NSObject+MJKeyValue.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLAccount/XLGroupBuy/HEAD/团购/Classes/Other/Lib/MJExtension/NSObject+MJKeyValue.m -------------------------------------------------------------------------------- /团购/Classes/Other/Lib/MJExtension/NSObject+MJMember.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLAccount/XLGroupBuy/HEAD/团购/Classes/Other/Lib/MJExtension/NSObject+MJMember.h -------------------------------------------------------------------------------- /团购/Classes/Other/Lib/MJExtension/NSObject+MJMember.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLAccount/XLGroupBuy/HEAD/团购/Classes/Other/Lib/MJExtension/NSObject+MJMember.m -------------------------------------------------------------------------------- /团购/Classes/Other/Lib/MJRefresh/Base/MJRefreshAutoFooter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLAccount/XLGroupBuy/HEAD/团购/Classes/Other/Lib/MJRefresh/Base/MJRefreshAutoFooter.h -------------------------------------------------------------------------------- /团购/Classes/Other/Lib/MJRefresh/Base/MJRefreshAutoFooter.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLAccount/XLGroupBuy/HEAD/团购/Classes/Other/Lib/MJRefresh/Base/MJRefreshAutoFooter.m -------------------------------------------------------------------------------- /团购/Classes/Other/Lib/MJRefresh/Base/MJRefreshBackFooter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLAccount/XLGroupBuy/HEAD/团购/Classes/Other/Lib/MJRefresh/Base/MJRefreshBackFooter.h -------------------------------------------------------------------------------- /团购/Classes/Other/Lib/MJRefresh/Base/MJRefreshBackFooter.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLAccount/XLGroupBuy/HEAD/团购/Classes/Other/Lib/MJRefresh/Base/MJRefreshBackFooter.m -------------------------------------------------------------------------------- /团购/Classes/Other/Lib/MJRefresh/Base/MJRefreshComponent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLAccount/XLGroupBuy/HEAD/团购/Classes/Other/Lib/MJRefresh/Base/MJRefreshComponent.h -------------------------------------------------------------------------------- /团购/Classes/Other/Lib/MJRefresh/Base/MJRefreshComponent.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLAccount/XLGroupBuy/HEAD/团购/Classes/Other/Lib/MJRefresh/Base/MJRefreshComponent.m -------------------------------------------------------------------------------- /团购/Classes/Other/Lib/MJRefresh/Base/MJRefreshFooter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLAccount/XLGroupBuy/HEAD/团购/Classes/Other/Lib/MJRefresh/Base/MJRefreshFooter.h -------------------------------------------------------------------------------- /团购/Classes/Other/Lib/MJRefresh/Base/MJRefreshFooter.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLAccount/XLGroupBuy/HEAD/团购/Classes/Other/Lib/MJRefresh/Base/MJRefreshFooter.m -------------------------------------------------------------------------------- /团购/Classes/Other/Lib/MJRefresh/Base/MJRefreshHeader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLAccount/XLGroupBuy/HEAD/团购/Classes/Other/Lib/MJRefresh/Base/MJRefreshHeader.h -------------------------------------------------------------------------------- /团购/Classes/Other/Lib/MJRefresh/Base/MJRefreshHeader.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLAccount/XLGroupBuy/HEAD/团购/Classes/Other/Lib/MJRefresh/Base/MJRefreshHeader.m -------------------------------------------------------------------------------- /团购/Classes/Other/Lib/MJRefresh/Custom/Footer/Auto/MJRefreshAutoGifFooter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLAccount/XLGroupBuy/HEAD/团购/Classes/Other/Lib/MJRefresh/Custom/Footer/Auto/MJRefreshAutoGifFooter.h -------------------------------------------------------------------------------- /团购/Classes/Other/Lib/MJRefresh/Custom/Footer/Auto/MJRefreshAutoGifFooter.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLAccount/XLGroupBuy/HEAD/团购/Classes/Other/Lib/MJRefresh/Custom/Footer/Auto/MJRefreshAutoGifFooter.m -------------------------------------------------------------------------------- /团购/Classes/Other/Lib/MJRefresh/Custom/Footer/Auto/MJRefreshAutoNormalFooter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLAccount/XLGroupBuy/HEAD/团购/Classes/Other/Lib/MJRefresh/Custom/Footer/Auto/MJRefreshAutoNormalFooter.h -------------------------------------------------------------------------------- /团购/Classes/Other/Lib/MJRefresh/Custom/Footer/Auto/MJRefreshAutoNormalFooter.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLAccount/XLGroupBuy/HEAD/团购/Classes/Other/Lib/MJRefresh/Custom/Footer/Auto/MJRefreshAutoNormalFooter.m -------------------------------------------------------------------------------- /团购/Classes/Other/Lib/MJRefresh/Custom/Footer/Auto/MJRefreshAutoStateFooter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLAccount/XLGroupBuy/HEAD/团购/Classes/Other/Lib/MJRefresh/Custom/Footer/Auto/MJRefreshAutoStateFooter.h -------------------------------------------------------------------------------- /团购/Classes/Other/Lib/MJRefresh/Custom/Footer/Auto/MJRefreshAutoStateFooter.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLAccount/XLGroupBuy/HEAD/团购/Classes/Other/Lib/MJRefresh/Custom/Footer/Auto/MJRefreshAutoStateFooter.m -------------------------------------------------------------------------------- /团购/Classes/Other/Lib/MJRefresh/Custom/Footer/Back/MJRefreshBackGifFooter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLAccount/XLGroupBuy/HEAD/团购/Classes/Other/Lib/MJRefresh/Custom/Footer/Back/MJRefreshBackGifFooter.h -------------------------------------------------------------------------------- /团购/Classes/Other/Lib/MJRefresh/Custom/Footer/Back/MJRefreshBackGifFooter.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLAccount/XLGroupBuy/HEAD/团购/Classes/Other/Lib/MJRefresh/Custom/Footer/Back/MJRefreshBackGifFooter.m -------------------------------------------------------------------------------- /团购/Classes/Other/Lib/MJRefresh/Custom/Footer/Back/MJRefreshBackNormalFooter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLAccount/XLGroupBuy/HEAD/团购/Classes/Other/Lib/MJRefresh/Custom/Footer/Back/MJRefreshBackNormalFooter.h -------------------------------------------------------------------------------- /团购/Classes/Other/Lib/MJRefresh/Custom/Footer/Back/MJRefreshBackNormalFooter.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLAccount/XLGroupBuy/HEAD/团购/Classes/Other/Lib/MJRefresh/Custom/Footer/Back/MJRefreshBackNormalFooter.m -------------------------------------------------------------------------------- /团购/Classes/Other/Lib/MJRefresh/Custom/Footer/Back/MJRefreshBackStateFooter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLAccount/XLGroupBuy/HEAD/团购/Classes/Other/Lib/MJRefresh/Custom/Footer/Back/MJRefreshBackStateFooter.h -------------------------------------------------------------------------------- /团购/Classes/Other/Lib/MJRefresh/Custom/Footer/Back/MJRefreshBackStateFooter.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLAccount/XLGroupBuy/HEAD/团购/Classes/Other/Lib/MJRefresh/Custom/Footer/Back/MJRefreshBackStateFooter.m -------------------------------------------------------------------------------- /团购/Classes/Other/Lib/MJRefresh/Custom/Header/MJRefreshGifHeader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLAccount/XLGroupBuy/HEAD/团购/Classes/Other/Lib/MJRefresh/Custom/Header/MJRefreshGifHeader.h -------------------------------------------------------------------------------- /团购/Classes/Other/Lib/MJRefresh/Custom/Header/MJRefreshGifHeader.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLAccount/XLGroupBuy/HEAD/团购/Classes/Other/Lib/MJRefresh/Custom/Header/MJRefreshGifHeader.m -------------------------------------------------------------------------------- /团购/Classes/Other/Lib/MJRefresh/Custom/Header/MJRefreshNormalHeader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLAccount/XLGroupBuy/HEAD/团购/Classes/Other/Lib/MJRefresh/Custom/Header/MJRefreshNormalHeader.h -------------------------------------------------------------------------------- /团购/Classes/Other/Lib/MJRefresh/Custom/Header/MJRefreshNormalHeader.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLAccount/XLGroupBuy/HEAD/团购/Classes/Other/Lib/MJRefresh/Custom/Header/MJRefreshNormalHeader.m -------------------------------------------------------------------------------- /团购/Classes/Other/Lib/MJRefresh/Custom/Header/MJRefreshStateHeader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLAccount/XLGroupBuy/HEAD/团购/Classes/Other/Lib/MJRefresh/Custom/Header/MJRefreshStateHeader.h -------------------------------------------------------------------------------- /团购/Classes/Other/Lib/MJRefresh/Custom/Header/MJRefreshStateHeader.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLAccount/XLGroupBuy/HEAD/团购/Classes/Other/Lib/MJRefresh/Custom/Header/MJRefreshStateHeader.m -------------------------------------------------------------------------------- /团购/Classes/Other/Lib/MJRefresh/MJRefresh.bundle/arrow@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLAccount/XLGroupBuy/HEAD/团购/Classes/Other/Lib/MJRefresh/MJRefresh.bundle/arrow@2x.png -------------------------------------------------------------------------------- /团购/Classes/Other/Lib/MJRefresh/MJRefresh.bundle/en.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLAccount/XLGroupBuy/HEAD/团购/Classes/Other/Lib/MJRefresh/MJRefresh.bundle/en.lproj/Localizable.strings -------------------------------------------------------------------------------- /团购/Classes/Other/Lib/MJRefresh/MJRefresh.bundle/zh-Hans.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLAccount/XLGroupBuy/HEAD/团购/Classes/Other/Lib/MJRefresh/MJRefresh.bundle/zh-Hans.lproj/Localizable.strings -------------------------------------------------------------------------------- /团购/Classes/Other/Lib/MJRefresh/MJRefresh.bundle/zh-Hant.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLAccount/XLGroupBuy/HEAD/团购/Classes/Other/Lib/MJRefresh/MJRefresh.bundle/zh-Hant.lproj/Localizable.strings -------------------------------------------------------------------------------- /团购/Classes/Other/Lib/MJRefresh/MJRefresh.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLAccount/XLGroupBuy/HEAD/团购/Classes/Other/Lib/MJRefresh/MJRefresh.h -------------------------------------------------------------------------------- /团购/Classes/Other/Lib/MJRefresh/MJRefreshConst.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLAccount/XLGroupBuy/HEAD/团购/Classes/Other/Lib/MJRefresh/MJRefreshConst.h -------------------------------------------------------------------------------- /团购/Classes/Other/Lib/MJRefresh/MJRefreshConst.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLAccount/XLGroupBuy/HEAD/团购/Classes/Other/Lib/MJRefresh/MJRefreshConst.m -------------------------------------------------------------------------------- /团购/Classes/Other/Lib/MJRefresh/NSBundle+MJRefresh.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLAccount/XLGroupBuy/HEAD/团购/Classes/Other/Lib/MJRefresh/NSBundle+MJRefresh.h -------------------------------------------------------------------------------- /团购/Classes/Other/Lib/MJRefresh/NSBundle+MJRefresh.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLAccount/XLGroupBuy/HEAD/团购/Classes/Other/Lib/MJRefresh/NSBundle+MJRefresh.m -------------------------------------------------------------------------------- /团购/Classes/Other/Lib/MJRefresh/UIScrollView+MJExtension.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLAccount/XLGroupBuy/HEAD/团购/Classes/Other/Lib/MJRefresh/UIScrollView+MJExtension.h -------------------------------------------------------------------------------- /团购/Classes/Other/Lib/MJRefresh/UIScrollView+MJExtension.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLAccount/XLGroupBuy/HEAD/团购/Classes/Other/Lib/MJRefresh/UIScrollView+MJExtension.m -------------------------------------------------------------------------------- /团购/Classes/Other/Lib/MJRefresh/UIScrollView+MJRefresh.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLAccount/XLGroupBuy/HEAD/团购/Classes/Other/Lib/MJRefresh/UIScrollView+MJRefresh.h -------------------------------------------------------------------------------- /团购/Classes/Other/Lib/MJRefresh/UIScrollView+MJRefresh.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLAccount/XLGroupBuy/HEAD/团购/Classes/Other/Lib/MJRefresh/UIScrollView+MJRefresh.m -------------------------------------------------------------------------------- /团购/Classes/Other/Lib/MJRefresh/UIView+MJExtension.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLAccount/XLGroupBuy/HEAD/团购/Classes/Other/Lib/MJRefresh/UIView+MJExtension.h -------------------------------------------------------------------------------- /团购/Classes/Other/Lib/MJRefresh/UIView+MJExtension.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLAccount/XLGroupBuy/HEAD/团购/Classes/Other/Lib/MJRefresh/UIView+MJExtension.m -------------------------------------------------------------------------------- /团购/Classes/Other/Lib/SDWebImage/MKAnnotationView+WebCache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLAccount/XLGroupBuy/HEAD/团购/Classes/Other/Lib/SDWebImage/MKAnnotationView+WebCache.h -------------------------------------------------------------------------------- /团购/Classes/Other/Lib/SDWebImage/MKAnnotationView+WebCache.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLAccount/XLGroupBuy/HEAD/团购/Classes/Other/Lib/SDWebImage/MKAnnotationView+WebCache.m -------------------------------------------------------------------------------- /团购/Classes/Other/Lib/SDWebImage/NSData+ImageContentType.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLAccount/XLGroupBuy/HEAD/团购/Classes/Other/Lib/SDWebImage/NSData+ImageContentType.h -------------------------------------------------------------------------------- /团购/Classes/Other/Lib/SDWebImage/NSData+ImageContentType.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLAccount/XLGroupBuy/HEAD/团购/Classes/Other/Lib/SDWebImage/NSData+ImageContentType.m -------------------------------------------------------------------------------- /团购/Classes/Other/Lib/SDWebImage/SDImageCache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLAccount/XLGroupBuy/HEAD/团购/Classes/Other/Lib/SDWebImage/SDImageCache.h -------------------------------------------------------------------------------- /团购/Classes/Other/Lib/SDWebImage/SDImageCache.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLAccount/XLGroupBuy/HEAD/团购/Classes/Other/Lib/SDWebImage/SDImageCache.m -------------------------------------------------------------------------------- /团购/Classes/Other/Lib/SDWebImage/SDWebImageCompat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLAccount/XLGroupBuy/HEAD/团购/Classes/Other/Lib/SDWebImage/SDWebImageCompat.h -------------------------------------------------------------------------------- /团购/Classes/Other/Lib/SDWebImage/SDWebImageCompat.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLAccount/XLGroupBuy/HEAD/团购/Classes/Other/Lib/SDWebImage/SDWebImageCompat.m -------------------------------------------------------------------------------- /团购/Classes/Other/Lib/SDWebImage/SDWebImageDecoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLAccount/XLGroupBuy/HEAD/团购/Classes/Other/Lib/SDWebImage/SDWebImageDecoder.h -------------------------------------------------------------------------------- /团购/Classes/Other/Lib/SDWebImage/SDWebImageDecoder.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLAccount/XLGroupBuy/HEAD/团购/Classes/Other/Lib/SDWebImage/SDWebImageDecoder.m -------------------------------------------------------------------------------- /团购/Classes/Other/Lib/SDWebImage/SDWebImageDownloader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLAccount/XLGroupBuy/HEAD/团购/Classes/Other/Lib/SDWebImage/SDWebImageDownloader.h -------------------------------------------------------------------------------- /团购/Classes/Other/Lib/SDWebImage/SDWebImageDownloader.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLAccount/XLGroupBuy/HEAD/团购/Classes/Other/Lib/SDWebImage/SDWebImageDownloader.m -------------------------------------------------------------------------------- /团购/Classes/Other/Lib/SDWebImage/SDWebImageDownloaderOperation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLAccount/XLGroupBuy/HEAD/团购/Classes/Other/Lib/SDWebImage/SDWebImageDownloaderOperation.h -------------------------------------------------------------------------------- /团购/Classes/Other/Lib/SDWebImage/SDWebImageDownloaderOperation.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLAccount/XLGroupBuy/HEAD/团购/Classes/Other/Lib/SDWebImage/SDWebImageDownloaderOperation.m -------------------------------------------------------------------------------- /团购/Classes/Other/Lib/SDWebImage/SDWebImageManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLAccount/XLGroupBuy/HEAD/团购/Classes/Other/Lib/SDWebImage/SDWebImageManager.h -------------------------------------------------------------------------------- /团购/Classes/Other/Lib/SDWebImage/SDWebImageManager.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLAccount/XLGroupBuy/HEAD/团购/Classes/Other/Lib/SDWebImage/SDWebImageManager.m -------------------------------------------------------------------------------- /团购/Classes/Other/Lib/SDWebImage/SDWebImageOperation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLAccount/XLGroupBuy/HEAD/团购/Classes/Other/Lib/SDWebImage/SDWebImageOperation.h -------------------------------------------------------------------------------- /团购/Classes/Other/Lib/SDWebImage/SDWebImagePrefetcher.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLAccount/XLGroupBuy/HEAD/团购/Classes/Other/Lib/SDWebImage/SDWebImagePrefetcher.h -------------------------------------------------------------------------------- /团购/Classes/Other/Lib/SDWebImage/SDWebImagePrefetcher.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLAccount/XLGroupBuy/HEAD/团购/Classes/Other/Lib/SDWebImage/SDWebImagePrefetcher.m -------------------------------------------------------------------------------- /团购/Classes/Other/Lib/SDWebImage/UIButton+WebCache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLAccount/XLGroupBuy/HEAD/团购/Classes/Other/Lib/SDWebImage/UIButton+WebCache.h -------------------------------------------------------------------------------- /团购/Classes/Other/Lib/SDWebImage/UIButton+WebCache.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLAccount/XLGroupBuy/HEAD/团购/Classes/Other/Lib/SDWebImage/UIButton+WebCache.m -------------------------------------------------------------------------------- /团购/Classes/Other/Lib/SDWebImage/UIImage+GIF.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLAccount/XLGroupBuy/HEAD/团购/Classes/Other/Lib/SDWebImage/UIImage+GIF.h -------------------------------------------------------------------------------- /团购/Classes/Other/Lib/SDWebImage/UIImage+GIF.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLAccount/XLGroupBuy/HEAD/团购/Classes/Other/Lib/SDWebImage/UIImage+GIF.m -------------------------------------------------------------------------------- /团购/Classes/Other/Lib/SDWebImage/UIImage+MultiFormat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLAccount/XLGroupBuy/HEAD/团购/Classes/Other/Lib/SDWebImage/UIImage+MultiFormat.h -------------------------------------------------------------------------------- /团购/Classes/Other/Lib/SDWebImage/UIImage+MultiFormat.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLAccount/XLGroupBuy/HEAD/团购/Classes/Other/Lib/SDWebImage/UIImage+MultiFormat.m -------------------------------------------------------------------------------- /团购/Classes/Other/Lib/SDWebImage/UIImage+WebP.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLAccount/XLGroupBuy/HEAD/团购/Classes/Other/Lib/SDWebImage/UIImage+WebP.h -------------------------------------------------------------------------------- /团购/Classes/Other/Lib/SDWebImage/UIImage+WebP.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLAccount/XLGroupBuy/HEAD/团购/Classes/Other/Lib/SDWebImage/UIImage+WebP.m -------------------------------------------------------------------------------- /团购/Classes/Other/Lib/SDWebImage/UIImageView+HighlightedWebCache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLAccount/XLGroupBuy/HEAD/团购/Classes/Other/Lib/SDWebImage/UIImageView+HighlightedWebCache.h -------------------------------------------------------------------------------- /团购/Classes/Other/Lib/SDWebImage/UIImageView+HighlightedWebCache.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLAccount/XLGroupBuy/HEAD/团购/Classes/Other/Lib/SDWebImage/UIImageView+HighlightedWebCache.m -------------------------------------------------------------------------------- /团购/Classes/Other/Lib/SDWebImage/UIImageView+WebCache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLAccount/XLGroupBuy/HEAD/团购/Classes/Other/Lib/SDWebImage/UIImageView+WebCache.h -------------------------------------------------------------------------------- /团购/Classes/Other/Lib/SDWebImage/UIImageView+WebCache.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLAccount/XLGroupBuy/HEAD/团购/Classes/Other/Lib/SDWebImage/UIImageView+WebCache.m -------------------------------------------------------------------------------- /团购/Classes/Other/Lib/dianpingapi/DPAPI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLAccount/XLGroupBuy/HEAD/团购/Classes/Other/Lib/dianpingapi/DPAPI.h -------------------------------------------------------------------------------- /团购/Classes/Other/Lib/dianpingapi/DPAPI.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLAccount/XLGroupBuy/HEAD/团购/Classes/Other/Lib/dianpingapi/DPAPI.m -------------------------------------------------------------------------------- /团购/Classes/Other/Lib/dianpingapi/DPConstants.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLAccount/XLGroupBuy/HEAD/团购/Classes/Other/Lib/dianpingapi/DPConstants.h -------------------------------------------------------------------------------- /团购/Classes/Other/Lib/dianpingapi/DPRequest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLAccount/XLGroupBuy/HEAD/团购/Classes/Other/Lib/dianpingapi/DPRequest.h -------------------------------------------------------------------------------- /团购/Classes/Other/Lib/dianpingapi/DPRequest.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLAccount/XLGroupBuy/HEAD/团购/Classes/Other/Lib/dianpingapi/DPRequest.m -------------------------------------------------------------------------------- /团购/Classes/Other/Lib/umeng_ios_social_sdk_5.2.1_arm64_custom/UMSocial_Sdk_5.2.1/Header/UMSocial.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLAccount/XLGroupBuy/HEAD/团购/Classes/Other/Lib/umeng_ios_social_sdk_5.2.1_arm64_custom/UMSocial_Sdk_5.2.1/Header/UMSocial.h -------------------------------------------------------------------------------- /团购/Classes/Other/Lib/umeng_ios_social_sdk_5.2.1_arm64_custom/UMSocial_Sdk_5.2.1/Header/UMSocialAccountManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLAccount/XLGroupBuy/HEAD/团购/Classes/Other/Lib/umeng_ios_social_sdk_5.2.1_arm64_custom/UMSocial_Sdk_5.2.1/Header/UMSocialAccountManager.h -------------------------------------------------------------------------------- /团购/Classes/Other/Lib/umeng_ios_social_sdk_5.2.1_arm64_custom/UMSocial_Sdk_5.2.1/Header/UMSocialBar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLAccount/XLGroupBuy/HEAD/团购/Classes/Other/Lib/umeng_ios_social_sdk_5.2.1_arm64_custom/UMSocial_Sdk_5.2.1/Header/UMSocialBar.h -------------------------------------------------------------------------------- /团购/Classes/Other/Lib/umeng_ios_social_sdk_5.2.1_arm64_custom/UMSocial_Sdk_5.2.1/Header/UMSocialConfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLAccount/XLGroupBuy/HEAD/团购/Classes/Other/Lib/umeng_ios_social_sdk_5.2.1_arm64_custom/UMSocial_Sdk_5.2.1/Header/UMSocialConfig.h -------------------------------------------------------------------------------- /团购/Classes/Other/Lib/umeng_ios_social_sdk_5.2.1_arm64_custom/UMSocial_Sdk_5.2.1/Header/UMSocialControllerService.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLAccount/XLGroupBuy/HEAD/团购/Classes/Other/Lib/umeng_ios_social_sdk_5.2.1_arm64_custom/UMSocial_Sdk_5.2.1/Header/UMSocialControllerService.h -------------------------------------------------------------------------------- /团购/Classes/Other/Lib/umeng_ios_social_sdk_5.2.1_arm64_custom/UMSocial_Sdk_5.2.1/Header/UMSocialData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLAccount/XLGroupBuy/HEAD/团购/Classes/Other/Lib/umeng_ios_social_sdk_5.2.1_arm64_custom/UMSocial_Sdk_5.2.1/Header/UMSocialData.h -------------------------------------------------------------------------------- /团购/Classes/Other/Lib/umeng_ios_social_sdk_5.2.1_arm64_custom/UMSocial_Sdk_5.2.1/Header/UMSocialDataService.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLAccount/XLGroupBuy/HEAD/团购/Classes/Other/Lib/umeng_ios_social_sdk_5.2.1_arm64_custom/UMSocial_Sdk_5.2.1/Header/UMSocialDataService.h -------------------------------------------------------------------------------- /团购/Classes/Other/Lib/umeng_ios_social_sdk_5.2.1_arm64_custom/UMSocial_Sdk_5.2.1/Header/UMSocialSnsData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLAccount/XLGroupBuy/HEAD/团购/Classes/Other/Lib/umeng_ios_social_sdk_5.2.1_arm64_custom/UMSocial_Sdk_5.2.1/Header/UMSocialSnsData.h -------------------------------------------------------------------------------- /团购/Classes/Other/Lib/umeng_ios_social_sdk_5.2.1_arm64_custom/UMSocial_Sdk_5.2.1/Header/UMSocialSnsPlatformManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLAccount/XLGroupBuy/HEAD/团购/Classes/Other/Lib/umeng_ios_social_sdk_5.2.1_arm64_custom/UMSocial_Sdk_5.2.1/Header/UMSocialSnsPlatformManager.h -------------------------------------------------------------------------------- /团购/Classes/Other/Lib/umeng_ios_social_sdk_5.2.1_arm64_custom/UMSocial_Sdk_5.2.1/Header/UMSocialSnsService.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLAccount/XLGroupBuy/HEAD/团购/Classes/Other/Lib/umeng_ios_social_sdk_5.2.1_arm64_custom/UMSocial_Sdk_5.2.1/Header/UMSocialSnsService.h -------------------------------------------------------------------------------- /团购/Classes/Other/Lib/umeng_ios_social_sdk_5.2.1_arm64_custom/UMSocial_Sdk_5.2.1/libUMSocial_Sdk_5.2.1.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLAccount/XLGroupBuy/HEAD/团购/Classes/Other/Lib/umeng_ios_social_sdk_5.2.1_arm64_custom/UMSocial_Sdk_5.2.1/libUMSocial_Sdk_5.2.1.a -------------------------------------------------------------------------------- /团购/Classes/Other/Lib/umeng_ios_social_sdk_5.2.1_arm64_custom/UMSocial_Sdk_Extra_Frameworks/SinaSSO/WeiboSDK.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLAccount/XLGroupBuy/HEAD/团购/Classes/Other/Lib/umeng_ios_social_sdk_5.2.1_arm64_custom/UMSocial_Sdk_Extra_Frameworks/SinaSSO/WeiboSDK.h -------------------------------------------------------------------------------- /团购/Classes/Other/Lib/umeng_ios_social_sdk_5.2.1_arm64_custom/UMSocial_Sdk_Extra_Frameworks/SinaSSO/WeiboUser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLAccount/XLGroupBuy/HEAD/团购/Classes/Other/Lib/umeng_ios_social_sdk_5.2.1_arm64_custom/UMSocial_Sdk_Extra_Frameworks/SinaSSO/WeiboUser.h -------------------------------------------------------------------------------- /团购/Classes/Other/Lib/umeng_ios_social_sdk_5.2.1_arm64_custom/UMSocial_Sdk_Extra_Frameworks/SinaSSO/libWeiboSDK.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLAccount/XLGroupBuy/HEAD/团购/Classes/Other/Lib/umeng_ios_social_sdk_5.2.1_arm64_custom/UMSocial_Sdk_Extra_Frameworks/SinaSSO/libWeiboSDK.a -------------------------------------------------------------------------------- /团购/Classes/Other/Lib/umeng_ios_social_sdk_5.2.1_arm64_custom/UMSocial_Sdk_Extra_Frameworks/TencentOpenAPI/TencentOpenAPI.framework/Resources/ios_open_sdk_3.1.0.3_iphone: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /团购/Classes/Other/Lib/umeng_ios_social_sdk_5.2.1_arm64_custom/UMSocial_Sdk_Extra_Frameworks/Wechat/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLAccount/XLGroupBuy/HEAD/团购/Classes/Other/Lib/umeng_ios_social_sdk_5.2.1_arm64_custom/UMSocial_Sdk_Extra_Frameworks/Wechat/README.txt -------------------------------------------------------------------------------- /团购/Classes/Other/Lib/umeng_ios_social_sdk_5.2.1_arm64_custom/UMSocial_Sdk_Extra_Frameworks/Wechat/WXApi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLAccount/XLGroupBuy/HEAD/团购/Classes/Other/Lib/umeng_ios_social_sdk_5.2.1_arm64_custom/UMSocial_Sdk_Extra_Frameworks/Wechat/WXApi.h -------------------------------------------------------------------------------- /团购/Classes/Other/Lib/umeng_ios_social_sdk_5.2.1_arm64_custom/UMSocial_Sdk_Extra_Frameworks/Wechat/WXApiObject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLAccount/XLGroupBuy/HEAD/团购/Classes/Other/Lib/umeng_ios_social_sdk_5.2.1_arm64_custom/UMSocial_Sdk_Extra_Frameworks/Wechat/WXApiObject.h -------------------------------------------------------------------------------- /团购/Classes/Other/Lib/umeng_ios_social_sdk_5.2.1_arm64_custom/UMSocial_Sdk_Extra_Frameworks/Wechat/WechatAuthSDK.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLAccount/XLGroupBuy/HEAD/团购/Classes/Other/Lib/umeng_ios_social_sdk_5.2.1_arm64_custom/UMSocial_Sdk_Extra_Frameworks/Wechat/WechatAuthSDK.h -------------------------------------------------------------------------------- /团购/Classes/Other/Lib/umeng_ios_social_sdk_5.2.1_arm64_custom/UMSocial_Sdk_Extra_Frameworks/Wechat/libWeChatSDK.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLAccount/XLGroupBuy/HEAD/团购/Classes/Other/Lib/umeng_ios_social_sdk_5.2.1_arm64_custom/UMSocial_Sdk_Extra_Frameworks/Wechat/libWeChatSDK.a -------------------------------------------------------------------------------- /团购/Classes/Other/Lib/umeng_ios_social_sdk_5.2.1_arm64_custom/UMSocial_Sdk_Instructions/ios-social-sdk-like.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLAccount/XLGroupBuy/HEAD/团购/Classes/Other/Lib/umeng_ios_social_sdk_5.2.1_arm64_custom/UMSocial_Sdk_Instructions/ios-social-sdk-like.html -------------------------------------------------------------------------------- /团购/Classes/Other/Lib/umeng_ios_social_sdk_5.2.1_arm64_custom/UMSocial_Sdk_Instructions/ios-social-sdk-shake.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLAccount/XLGroupBuy/HEAD/团购/Classes/Other/Lib/umeng_ios_social_sdk_5.2.1_arm64_custom/UMSocial_Sdk_Instructions/ios-social-sdk-shake.html -------------------------------------------------------------------------------- /团购/Classes/Other/Lib/umeng_ios_social_sdk_5.2.1_arm64_custom/UMSocial_Sdk_Instructions/markdown.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLAccount/XLGroupBuy/HEAD/团购/Classes/Other/Lib/umeng_ios_social_sdk_5.2.1_arm64_custom/UMSocial_Sdk_Instructions/markdown.css -------------------------------------------------------------------------------- /团购/Classes/Other/PrefixHeader.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLAccount/XLGroupBuy/HEAD/团购/Classes/Other/PrefixHeader.pch -------------------------------------------------------------------------------- /团购/Classes/Other/XLShareSingle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLAccount/XLGroupBuy/HEAD/团购/Classes/Other/XLShareSingle.h -------------------------------------------------------------------------------- /团购/Classes/Other/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLAccount/XLGroupBuy/HEAD/团购/Classes/Other/main.m -------------------------------------------------------------------------------- /团购/Classes/Search/Controller/XLSearchViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLAccount/XLGroupBuy/HEAD/团购/Classes/Search/Controller/XLSearchViewController.h -------------------------------------------------------------------------------- /团购/Classes/Search/Controller/XLSearchViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLAccount/XLGroupBuy/HEAD/团购/Classes/Search/Controller/XLSearchViewController.m -------------------------------------------------------------------------------- /团购/Classes/UserInfo/Collect/Controller/XLCollectViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLAccount/XLGroupBuy/HEAD/团购/Classes/UserInfo/Collect/Controller/XLCollectViewController.h -------------------------------------------------------------------------------- /团购/Classes/UserInfo/Collect/Controller/XLCollectViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLAccount/XLGroupBuy/HEAD/团购/Classes/UserInfo/Collect/Controller/XLCollectViewController.m -------------------------------------------------------------------------------- /团购/Classes/UserInfo/NavBasicController/XLNavBasicViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLAccount/XLGroupBuy/HEAD/团购/Classes/UserInfo/NavBasicController/XLNavBasicViewController.h -------------------------------------------------------------------------------- /团购/Classes/UserInfo/NavBasicController/XLNavBasicViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLAccount/XLGroupBuy/HEAD/团购/Classes/UserInfo/NavBasicController/XLNavBasicViewController.m -------------------------------------------------------------------------------- /团购/Classes/UserInfo/RecentBrowse/Controller/XLRecentViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLAccount/XLGroupBuy/HEAD/团购/Classes/UserInfo/RecentBrowse/Controller/XLRecentViewController.h -------------------------------------------------------------------------------- /团购/Classes/UserInfo/RecentBrowse/Controller/XLRecentViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLAccount/XLGroupBuy/HEAD/团购/Classes/UserInfo/RecentBrowse/Controller/XLRecentViewController.m -------------------------------------------------------------------------------- /团购/Classes/UserInfo/Tool/XLCRTool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLAccount/XLGroupBuy/HEAD/团购/Classes/UserInfo/Tool/XLCRTool.h -------------------------------------------------------------------------------- /团购/Classes/UserInfo/Tool/XLCRTool.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLAccount/XLGroupBuy/HEAD/团购/Classes/UserInfo/Tool/XLCRTool.m -------------------------------------------------------------------------------- /团购/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLAccount/XLGroupBuy/HEAD/团购/Info.plist -------------------------------------------------------------------------------- /团购Tests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLAccount/XLGroupBuy/HEAD/团购Tests/Info.plist -------------------------------------------------------------------------------- /团购Tests/__Tests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLAccount/XLGroupBuy/HEAD/团购Tests/__Tests.m -------------------------------------------------------------------------------- /团购UITests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLAccount/XLGroupBuy/HEAD/团购UITests/Info.plist -------------------------------------------------------------------------------- /团购UITests/__UITests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLAccount/XLGroupBuy/HEAD/团购UITests/__UITests.m -------------------------------------------------------------------------------- /注意事项.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XLAccount/XLGroupBuy/HEAD/注意事项.docx --------------------------------------------------------------------------------