├── LICENSE ├── Podfile ├── Podfile.lock ├── Pods ├── Kingfisher │ ├── Kingfisher │ │ ├── ImageCache.swift │ │ ├── ImageDownloader.swift │ │ ├── ImageTransition.swift │ │ ├── KingfisherManager.swift │ │ ├── KingfisherOptions.swift │ │ ├── KingfisherOptionsInfo.swift │ │ ├── Resource.swift │ │ ├── String+MD5.swift │ │ ├── UIButton+Kingfisher.swift │ │ ├── UIImage+Decode.swift │ │ ├── UIImage+Normalize.swift │ │ └── UIImageView+Kingfisher.swift │ ├── LICENSE │ └── README.md ├── Manifest.lock ├── Pods.xcodeproj │ ├── project.pbxproj │ └── xcuserdata │ │ └── nero.xcuserdatad │ │ └── xcschemes │ │ ├── Kingfisher.xcscheme │ │ ├── Pods-Tuan.xcscheme │ │ ├── SwiftDate.xcscheme │ │ └── xcschememanagement.plist ├── SwiftDate │ ├── LICENSE │ ├── README.md │ └── SwiftDate │ │ └── SwiftDate.swift └── Target Support Files │ ├── Kingfisher │ ├── Info.plist │ ├── Kingfisher-Private.xcconfig │ ├── Kingfisher-dummy.m │ ├── Kingfisher-prefix.pch │ ├── Kingfisher-umbrella.h │ ├── Kingfisher.modulemap │ └── Kingfisher.xcconfig │ ├── Pods-Tuan │ ├── Info.plist │ ├── Pods-Tuan-acknowledgements.markdown │ ├── Pods-Tuan-acknowledgements.plist │ ├── Pods-Tuan-dummy.m │ ├── Pods-Tuan-frameworks.sh │ ├── Pods-Tuan-resources.sh │ ├── Pods-Tuan-umbrella.h │ ├── Pods-Tuan.debug.xcconfig │ ├── Pods-Tuan.modulemap │ └── Pods-Tuan.release.xcconfig │ └── SwiftDate │ ├── Info.plist │ ├── SwiftDate-Private.xcconfig │ ├── SwiftDate-dummy.m │ ├── SwiftDate-prefix.pch │ ├── SwiftDate-umbrella.h │ ├── SwiftDate.modulemap │ └── SwiftDate.xcconfig ├── README.md ├── Tuan.xcodeproj ├── project.pbxproj ├── project.xcworkspace │ ├── contents.xcworkspacedata │ ├── xcshareddata │ │ └── Tuan.xccheckout │ └── xcuserdata │ │ └── nero.xcuserdatad │ │ └── UserInterfaceState.xcuserstate ├── xcshareddata │ └── xcschemes │ │ └── Tuan.xcscheme └── xcuserdata │ └── nero.xcuserdatad │ ├── xcdebugger │ └── Breakpoints_v2.xcbkptlist │ └── xcschemes │ └── xcschememanagement.plist ├── Tuan.xcworkspace ├── contents.xcworkspacedata └── xcuserdata │ └── nero.xcuserdatad │ └── UserInterfaceState.xcuserstate ├── Tuan ├── 1.gif ├── AppDelegate.swift ├── Base.lproj │ └── Main.storyboard ├── Cateogry │ ├── UIBarButtonItem+Extension.h │ ├── UIBarButtonItem+Extension.m │ ├── UIButton+Extension.h │ ├── UIButton+Extension.m │ ├── UIView+AutoLayout.h │ ├── UIView+AutoLayout.m │ ├── UIView+Extension.h │ └── UIView+Extension.m ├── Deal │ ├── HMCategoriesViewController.swift │ ├── HMCitiesViewController.swift │ ├── HMCitiesViewController.xib │ ├── HMCitySearchViewController.swift │ ├── HMDealDetailViewController.swift │ ├── HMDealDetailViewController.xib │ ├── HMDealListViewController.swift │ ├── HMDealsViewController.swift │ ├── HMRegionsViewController.swift │ ├── HMRegionsViewController.xib │ ├── HMSortsViewController.swift │ ├── HMSortsViewController.xib │ └── View │ │ ├── HMCenterLineLabel.swift │ │ ├── HMDealCell.swift │ │ ├── HMDealCell.xib │ │ ├── HMDealsTopMenu.h │ │ ├── HMDealsTopMenu.m │ │ ├── HMDealsTopMenu.xib │ │ ├── HMDropdownMainCell.h │ │ ├── HMDropdownMainCell.m │ │ ├── HMDropdownMenu.h │ │ ├── HMDropdownMenu.m │ │ ├── HMDropdownMenu.xib │ │ ├── HMDropdownSubCell.h │ │ ├── HMDropdownSubCell.m │ │ └── HMEmptyView.swift ├── HMNavigationController.swift ├── HMSearchViewController.swift ├── HMSingleton.h ├── Images.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 │ ├── Button │ │ ├── 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 │ │ ├── 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_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_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 │ │ ├── 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 │ ├── Detail │ │ ├── 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 │ │ ├── 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 │ │ ├── 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-2.launchimage │ │ └── Contents.json │ ├── LaunchImage.launchimage │ │ ├── Contents.json │ │ ├── Default-Portrait@2x~ipad.png │ │ ├── Default.png │ │ ├── Default@2x.png │ │ └── Default~ipad.png │ ├── Map │ │ ├── ic_category_1.imageset │ │ │ ├── Contents.json │ │ │ ├── ic_category_1.png │ │ │ └── ic_category_1@2x.png │ │ ├── ic_category_2.imageset │ │ │ ├── Contents.json │ │ │ ├── ic_category_2.png │ │ │ └── ic_category_2@2x.png │ │ ├── ic_category_20.imageset │ │ │ ├── Contents.json │ │ │ ├── ic_category_20.png │ │ │ └── ic_category_20@2x.png │ │ ├── ic_category_22.imageset │ │ │ ├── Contents.json │ │ │ ├── ic_category_22.png │ │ │ └── ic_category_22@2x.png │ │ ├── ic_category_3.imageset │ │ │ ├── Contents.json │ │ │ ├── ic_category_3.png │ │ │ └── ic_category_3@2x.png │ │ ├── ic_category_4.imageset │ │ │ ├── Contents.json │ │ │ ├── ic_category_4.png │ │ │ └── ic_category_4@2x.png │ │ ├── ic_category_78.imageset │ │ │ ├── Contents.json │ │ │ ├── ic_category_78.png │ │ │ └── ic_category_78@2x.png │ │ ├── ic_category_99.imageset │ │ │ ├── Contents.json │ │ │ ├── ic_category_99.png │ │ │ └── ic_category_99@2x.png │ │ ├── ic_category_default.imageset │ │ │ ├── Contents.json │ │ │ ├── ic_category_default.png │ │ │ └── ic_category_default@2x.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 │ ├── Nav │ │ ├── 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 │ │ ├── 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 │ │ ├── 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 │ │ ├── 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 ├── Info.plist ├── 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 │ │ ├── MJRefresh.bundle │ │ │ └── arrow@2x.png │ │ ├── MJRefresh.h │ │ ├── MJRefreshBaseView.h │ │ ├── MJRefreshBaseView.m │ │ ├── MJRefreshConst.h │ │ ├── MJRefreshConst.m │ │ ├── MJRefreshFooterView.h │ │ ├── MJRefreshFooterView.m │ │ ├── MJRefreshHeaderView.h │ │ └── MJRefreshHeaderView.m │ └── dianpingapi │ │ ├── DPAPI.h │ │ ├── DPAPI.m │ │ ├── DPConstants.h │ │ ├── DPRequest.h │ │ └── DPRequest.m ├── Map │ ├── Controller │ │ ├── HMMapViewController.h │ │ ├── HMMapViewController.m │ │ └── HMMapViewController.xib │ ├── Model │ │ ├── HMDealAnnotation.h │ │ └── HMDealAnnotation.m │ └── View │ │ ├── HMDealAnnoRightButton.h │ │ └── HMDealAnnoRightButton.m ├── Model │ ├── HMBusiness.h │ ├── HMBusiness.m │ ├── HMDeal.h │ ├── HMDeal.m │ ├── HMFindDealsParam.h │ ├── HMFindDealsParam.m │ ├── HMFindDealsResult.h │ ├── HMFindDealsResult.m │ ├── HMGetSingleDealParam.h │ ├── HMGetSingleDealParam.m │ ├── HMGetSingleDealResult.h │ ├── HMGetSingleDealResult.m │ ├── HMRestriction.h │ ├── HMRestriction.m │ └── MetaData │ │ ├── HMCategory.h │ │ ├── HMCategory.m │ │ ├── HMCity.h │ │ ├── HMCity.m │ │ ├── HMCityGroup.h │ │ ├── HMCityGroup.m │ │ ├── HMRegion.h │ │ ├── HMRegion.m │ │ ├── HMSort.h │ │ └── HMSort.m ├── NotificationCenter │ └── NotificationCenter.swift ├── Tool │ ├── HMAPITool.h │ ├── HMAPITool.m │ ├── HMDealTool.h │ ├── HMDealTool.m │ ├── HMMetaDataTool.h │ ├── HMMetaDataTool.m │ ├── Test.h │ └── Test.m ├── Tuan-Bridging-Header.h └── UserPrefrence │ ├── Tool │ ├── HMDealLocalTool.h │ └── HMDealLocalTool.m │ └── VC │ ├── HMCollectViewController.swift │ ├── HMDealLocalListViewController.swift │ └── HMHistoryViewController.swift └── 继承结构图.png /Podfile: -------------------------------------------------------------------------------- 1 | # Uncomment this line to define a global platform for your project 2 | platform :ios, '8.0' 3 | use_frameworks! 4 | 5 | target 'Tuan' do 6 | pod 'Kingfisher', '~> 1.6' 7 | pod 'SwiftDate' 8 | end 9 | 10 | target 'TuanTests' do 11 | 12 | end 13 | 14 | -------------------------------------------------------------------------------- /Podfile.lock: -------------------------------------------------------------------------------- 1 | PODS: 2 | - Kingfisher (1.6.0) 3 | - SwiftDate (1.0.11) 4 | 5 | DEPENDENCIES: 6 | - Kingfisher (~> 1.6) 7 | - SwiftDate 8 | 9 | SPEC CHECKSUMS: 10 | Kingfisher: 3308d487e5c2a0fba9c1054fc3b8c45923e03c40 11 | SwiftDate: c2fdcd66c327c799749a435a05521b20a4074009 12 | 13 | COCOAPODS: 0.38.2 14 | -------------------------------------------------------------------------------- /Pods/Manifest.lock: -------------------------------------------------------------------------------- 1 | PODS: 2 | - Kingfisher (1.6.0) 3 | - SwiftDate (1.0.11) 4 | 5 | DEPENDENCIES: 6 | - Kingfisher (~> 1.6) 7 | - SwiftDate 8 | 9 | SPEC CHECKSUMS: 10 | Kingfisher: 3308d487e5c2a0fba9c1054fc3b8c45923e03c40 11 | SwiftDate: c2fdcd66c327c799749a435a05521b20a4074009 12 | 13 | COCOAPODS: 0.38.2 14 | -------------------------------------------------------------------------------- /Pods/Target Support Files/Kingfisher/Kingfisher-Private.xcconfig: -------------------------------------------------------------------------------- 1 | #include "Kingfisher.xcconfig" 2 | GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 3 | HEADER_SEARCH_PATHS = "${PODS_ROOT}/Headers/Private" "${PODS_ROOT}/Headers/Private/Kingfisher" "${PODS_ROOT}/Headers/Public" 4 | OTHER_LDFLAGS = ${KINGFISHER_OTHER_LDFLAGS} 5 | OTHER_SWIFT_FLAGS = $(inherited) "-D" "COCOAPODS" 6 | PODS_ROOT = ${SRCROOT} 7 | SKIP_INSTALL = YES -------------------------------------------------------------------------------- /Pods/Target Support Files/Kingfisher/Kingfisher-dummy.m: -------------------------------------------------------------------------------- 1 | #import 2 | @interface PodsDummy_Kingfisher : NSObject 3 | @end 4 | @implementation PodsDummy_Kingfisher 5 | @end 6 | -------------------------------------------------------------------------------- /Pods/Target Support Files/Kingfisher/Kingfisher-prefix.pch: -------------------------------------------------------------------------------- 1 | #ifdef __OBJC__ 2 | #import 3 | #endif 4 | 5 | -------------------------------------------------------------------------------- /Pods/Target Support Files/Kingfisher/Kingfisher-umbrella.h: -------------------------------------------------------------------------------- 1 | #import 2 | 3 | 4 | FOUNDATION_EXPORT double KingfisherVersionNumber; 5 | FOUNDATION_EXPORT const unsigned char KingfisherVersionString[]; 6 | 7 | -------------------------------------------------------------------------------- /Pods/Target Support Files/Kingfisher/Kingfisher.modulemap: -------------------------------------------------------------------------------- 1 | framework module Kingfisher { 2 | umbrella header "Kingfisher-umbrella.h" 3 | 4 | export * 5 | module * { export * } 6 | } 7 | -------------------------------------------------------------------------------- /Pods/Target Support Files/Kingfisher/Kingfisher.xcconfig: -------------------------------------------------------------------------------- 1 | KINGFISHER_OTHER_LDFLAGS = -framework "CFNetwork" -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-Tuan/Pods-Tuan-dummy.m: -------------------------------------------------------------------------------- 1 | #import 2 | @interface PodsDummy_Pods_Tuan : NSObject 3 | @end 4 | @implementation PodsDummy_Pods_Tuan 5 | @end 6 | -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-Tuan/Pods-Tuan-umbrella.h: -------------------------------------------------------------------------------- 1 | #import 2 | 3 | 4 | FOUNDATION_EXPORT double Pods_TuanVersionNumber; 5 | FOUNDATION_EXPORT const unsigned char Pods_TuanVersionString[]; 6 | 7 | -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-Tuan/Pods-Tuan.debug.xcconfig: -------------------------------------------------------------------------------- 1 | GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 2 | LD_RUNPATH_SEARCH_PATHS = $(inherited) '@executable_path/Frameworks' '@loader_path/Frameworks' 3 | OTHER_CFLAGS = $(inherited) -iquote "$CONFIGURATION_BUILD_DIR/Kingfisher.framework/Headers" -iquote "$CONFIGURATION_BUILD_DIR/SwiftDate.framework/Headers" 4 | OTHER_LDFLAGS = $(inherited) -framework "Kingfisher" -framework "SwiftDate" 5 | OTHER_SWIFT_FLAGS = $(inherited) "-D" "COCOAPODS" 6 | PODS_FRAMEWORK_BUILD_PATH = $(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/Pods-Tuan 7 | PODS_ROOT = ${SRCROOT}/Pods -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-Tuan/Pods-Tuan.modulemap: -------------------------------------------------------------------------------- 1 | framework module Pods_Tuan { 2 | umbrella header "Pods-Tuan-umbrella.h" 3 | 4 | export * 5 | module * { export * } 6 | } 7 | -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-Tuan/Pods-Tuan.release.xcconfig: -------------------------------------------------------------------------------- 1 | GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 2 | LD_RUNPATH_SEARCH_PATHS = $(inherited) '@executable_path/Frameworks' '@loader_path/Frameworks' 3 | OTHER_CFLAGS = $(inherited) -iquote "$CONFIGURATION_BUILD_DIR/Kingfisher.framework/Headers" -iquote "$CONFIGURATION_BUILD_DIR/SwiftDate.framework/Headers" 4 | OTHER_LDFLAGS = $(inherited) -framework "Kingfisher" -framework "SwiftDate" 5 | OTHER_SWIFT_FLAGS = $(inherited) "-D" "COCOAPODS" 6 | PODS_FRAMEWORK_BUILD_PATH = $(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/Pods-Tuan 7 | PODS_ROOT = ${SRCROOT}/Pods -------------------------------------------------------------------------------- /Pods/Target Support Files/SwiftDate/SwiftDate-Private.xcconfig: -------------------------------------------------------------------------------- 1 | #include "SwiftDate.xcconfig" 2 | GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 3 | HEADER_SEARCH_PATHS = "${PODS_ROOT}/Headers/Private" "${PODS_ROOT}/Headers/Private/SwiftDate" "${PODS_ROOT}/Headers/Public" 4 | OTHER_SWIFT_FLAGS = $(inherited) "-D" "COCOAPODS" 5 | PODS_ROOT = ${SRCROOT} 6 | SKIP_INSTALL = YES -------------------------------------------------------------------------------- /Pods/Target Support Files/SwiftDate/SwiftDate-dummy.m: -------------------------------------------------------------------------------- 1 | #import 2 | @interface PodsDummy_SwiftDate : NSObject 3 | @end 4 | @implementation PodsDummy_SwiftDate 5 | @end 6 | -------------------------------------------------------------------------------- /Pods/Target Support Files/SwiftDate/SwiftDate-prefix.pch: -------------------------------------------------------------------------------- 1 | #ifdef __OBJC__ 2 | #import 3 | #endif 4 | 5 | -------------------------------------------------------------------------------- /Pods/Target Support Files/SwiftDate/SwiftDate-umbrella.h: -------------------------------------------------------------------------------- 1 | #import 2 | 3 | 4 | FOUNDATION_EXPORT double SwiftDateVersionNumber; 5 | FOUNDATION_EXPORT const unsigned char SwiftDateVersionString[]; 6 | 7 | -------------------------------------------------------------------------------- /Pods/Target Support Files/SwiftDate/SwiftDate.modulemap: -------------------------------------------------------------------------------- 1 | framework module SwiftDate { 2 | umbrella header "SwiftDate-umbrella.h" 3 | 4 | export * 5 | module * { export * } 6 | } 7 | -------------------------------------------------------------------------------- /Pods/Target Support Files/SwiftDate/SwiftDate.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValiantCat/Tuan/a10214b9bcb58aef99bb51b05d7df825c3ccb326/Pods/Target Support Files/SwiftDate/SwiftDate.xcconfig -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Tuan 2 | 模仿MJ老师ipad版美团(swift版) 偶有bug 见谅 3 | # 4 | 5 | ** 好消息 好消息 已更新到Swift 2.0 基于Xcode 7 6 | 7 | -- 8 | 只是基本兼容 没有用到新语法 😄😄😄😄 9 | 10 | ![image](https://github.com/aiqiuqiu/Tuan/blob/master/Tuan/1.gif) 11 | 12 | -------------------------------------------------------------------------------- /Tuan.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /Tuan.xcodeproj/project.xcworkspace/xcuserdata/nero.xcuserdatad/UserInterfaceState.xcuserstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValiantCat/Tuan/a10214b9bcb58aef99bb51b05d7df825c3ccb326/Tuan.xcodeproj/project.xcworkspace/xcuserdata/nero.xcuserdatad/UserInterfaceState.xcuserstate -------------------------------------------------------------------------------- /Tuan.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /Tuan.xcworkspace/xcuserdata/nero.xcuserdatad/UserInterfaceState.xcuserstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValiantCat/Tuan/a10214b9bcb58aef99bb51b05d7df825c3ccb326/Tuan.xcworkspace/xcuserdata/nero.xcuserdatad/UserInterfaceState.xcuserstate -------------------------------------------------------------------------------- /Tuan/1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValiantCat/Tuan/a10214b9bcb58aef99bb51b05d7df825c3ccb326/Tuan/1.gif -------------------------------------------------------------------------------- /Tuan/Cateogry/UIBarButtonItem+Extension.h: -------------------------------------------------------------------------------- 1 | // 2 | // UIBarButtonItem+Extension.h 3 | // 黑马微博 4 | // 5 | // Created by apple on 14-7-3. 6 | // Copyright (c) 2014年 heima. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | @interface UIBarButtonItem (Extension) 12 | + (UIBarButtonItem *)itemWithImageName:(NSString *)imageName highImageName:(NSString *)highImageName target:(id)target action:(SEL)action; 13 | @end 14 | -------------------------------------------------------------------------------- /Tuan/Cateogry/UIView+Extension.h: -------------------------------------------------------------------------------- 1 | // 2 | // UIView+Extension.h 3 | // 01-黑酷 4 | // 5 | // Created by apple on 14-6-27. 6 | // Copyright (c) 2014年 heima. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | @interface UIView (Extension) 12 | @property (nonatomic, assign) CGFloat x; 13 | @property (nonatomic, assign) CGFloat y; 14 | @property (nonatomic, assign) CGFloat maxX; 15 | @property (nonatomic, assign) CGFloat maxY; 16 | @property (nonatomic, assign) CGFloat centerX; 17 | @property (nonatomic, assign) CGFloat centerY; 18 | @property (nonatomic, assign) CGFloat width; 19 | @property (nonatomic, assign) CGFloat height; 20 | @property (nonatomic, assign) CGSize size; 21 | @end 22 | -------------------------------------------------------------------------------- /Tuan/Deal/View/HMCenterLineLabel.swift: -------------------------------------------------------------------------------- 1 | // 2 | // HMCenterLineLabel.swift 3 | // Tuan 4 | // 5 | // Created by nero on 15/5/25. 6 | // Copyright (c) 2015年 nero. All rights reserved. 7 | // 8 | 9 | import UIKit 10 | 11 | class HMCenterLineLabel: UILabel { 12 | 13 | override func drawRect(rect: CGRect) { 14 | super.drawRect(rect) 15 | // 设置绘图颜色 16 | 17 | textColor.set() 18 | // 矩形框的值 19 | let x:CGFloat = 0; 20 | let y:CGFloat = self.height * 0.5; 21 | let w = self.width; 22 | let h:CGFloat = 0.5; 23 | UIRectFill(CGRectMake(x, y, w, h)); 24 | } 25 | } 26 | -------------------------------------------------------------------------------- /Tuan/Deal/View/HMDealsTopMenu.h: -------------------------------------------------------------------------------- 1 | // 2 | // HMDealsTopMenu.h 3 | // 黑团HD 4 | // 5 | // Created by apple on 14-8-18. 6 | // Copyright (c) 2014年 heima. All rights reserved. 7 | // 团购列表顶部菜单 8 | 9 | #import 10 | 11 | @interface HMDealsTopMenu : UIView 12 | + (instancetype)menu; 13 | 14 | - (void)addTarget:(id)target action:(SEL)action; 15 | 16 | @property (weak, nonatomic) IBOutlet UIButton *imageButton; 17 | @property (weak, nonatomic) IBOutlet UILabel *titleLabel; 18 | @property (weak, nonatomic) IBOutlet UILabel *subtitleLabel; 19 | @end 20 | -------------------------------------------------------------------------------- /Tuan/Deal/View/HMDropdownMainCell.h: -------------------------------------------------------------------------------- 1 | // 2 | // HMDropdownMainCell.h 3 | // 黑团HD 4 | // 5 | // Created by apple on 14-8-18. 6 | // Copyright (c) 2014年 heima. All rights reserved. 7 | // 8 | 9 | #import 10 | #import "HMDropdownMenu.h" 11 | 12 | @interface HMDropdownMainCell : UITableViewCell 13 | + (instancetype)cellWithTableView:(UITableView *)tableView; 14 | @property (nonatomic, strong) id item; 15 | @end 16 | -------------------------------------------------------------------------------- /Tuan/Deal/View/HMDropdownSubCell.h: -------------------------------------------------------------------------------- 1 | // 2 | // HMDropdownSubCell.h 3 | // 黑团HD 4 | // 5 | // Created by apple on 14-8-18. 6 | // Copyright (c) 2014年 heima. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | @interface HMDropdownSubCell : UITableViewCell 12 | + (instancetype)cellWithTableView:(UITableView *)tableView; 13 | @end 14 | -------------------------------------------------------------------------------- /Tuan/Images.xcassets/AppIcon.appiconset/Icon-1024.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValiantCat/Tuan/a10214b9bcb58aef99bb51b05d7df825c3ccb326/Tuan/Images.xcassets/AppIcon.appiconset/Icon-1024.png -------------------------------------------------------------------------------- /Tuan/Images.xcassets/AppIcon.appiconset/Icon-29.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValiantCat/Tuan/a10214b9bcb58aef99bb51b05d7df825c3ccb326/Tuan/Images.xcassets/AppIcon.appiconset/Icon-29.png -------------------------------------------------------------------------------- /Tuan/Images.xcassets/AppIcon.appiconset/Icon-29@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValiantCat/Tuan/a10214b9bcb58aef99bb51b05d7df825c3ccb326/Tuan/Images.xcassets/AppIcon.appiconset/Icon-29@2x.png -------------------------------------------------------------------------------- /Tuan/Images.xcassets/AppIcon.appiconset/Icon-40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValiantCat/Tuan/a10214b9bcb58aef99bb51b05d7df825c3ccb326/Tuan/Images.xcassets/AppIcon.appiconset/Icon-40.png -------------------------------------------------------------------------------- /Tuan/Images.xcassets/AppIcon.appiconset/Icon-40@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValiantCat/Tuan/a10214b9bcb58aef99bb51b05d7df825c3ccb326/Tuan/Images.xcassets/AppIcon.appiconset/Icon-40@2x.png -------------------------------------------------------------------------------- /Tuan/Images.xcassets/AppIcon.appiconset/Icon-72.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValiantCat/Tuan/a10214b9bcb58aef99bb51b05d7df825c3ccb326/Tuan/Images.xcassets/AppIcon.appiconset/Icon-72.png -------------------------------------------------------------------------------- /Tuan/Images.xcassets/AppIcon.appiconset/Icon-72@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValiantCat/Tuan/a10214b9bcb58aef99bb51b05d7df825c3ccb326/Tuan/Images.xcassets/AppIcon.appiconset/Icon-72@2x.png -------------------------------------------------------------------------------- /Tuan/Images.xcassets/AppIcon.appiconset/Icon-76.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValiantCat/Tuan/a10214b9bcb58aef99bb51b05d7df825c3ccb326/Tuan/Images.xcassets/AppIcon.appiconset/Icon-76.png -------------------------------------------------------------------------------- /Tuan/Images.xcassets/AppIcon.appiconset/Icon-76@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValiantCat/Tuan/a10214b9bcb58aef99bb51b05d7df825c3ccb326/Tuan/Images.xcassets/AppIcon.appiconset/Icon-76@2x.png -------------------------------------------------------------------------------- /Tuan/Images.xcassets/AppIcon.appiconset/Icon-Small-50.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValiantCat/Tuan/a10214b9bcb58aef99bb51b05d7df825c3ccb326/Tuan/Images.xcassets/AppIcon.appiconset/Icon-Small-50.png -------------------------------------------------------------------------------- /Tuan/Images.xcassets/AppIcon.appiconset/Icon-Small-50@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValiantCat/Tuan/a10214b9bcb58aef99bb51b05d7df825c3ccb326/Tuan/Images.xcassets/AppIcon.appiconset/Icon-Small-50@2x.png -------------------------------------------------------------------------------- /Tuan/Images.xcassets/Button/btn_filter_normal.imageset/btn_filter_normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValiantCat/Tuan/a10214b9bcb58aef99bb51b05d7df825c3ccb326/Tuan/Images.xcassets/Button/btn_filter_normal.imageset/btn_filter_normal.png -------------------------------------------------------------------------------- /Tuan/Images.xcassets/Button/btn_filter_normal.imageset/btn_filter_normal@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValiantCat/Tuan/a10214b9bcb58aef99bb51b05d7df825c3ccb326/Tuan/Images.xcassets/Button/btn_filter_normal.imageset/btn_filter_normal@2x.png -------------------------------------------------------------------------------- /Tuan/Images.xcassets/Button/btn_filter_selected.imageset/btn_filter_selected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValiantCat/Tuan/a10214b9bcb58aef99bb51b05d7df825c3ccb326/Tuan/Images.xcassets/Button/btn_filter_selected.imageset/btn_filter_selected.png -------------------------------------------------------------------------------- /Tuan/Images.xcassets/Button/btn_filter_selected.imageset/btn_filter_selected@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValiantCat/Tuan/a10214b9bcb58aef99bb51b05d7df825c3ccb326/Tuan/Images.xcassets/Button/btn_filter_selected.imageset/btn_filter_selected@2x.png -------------------------------------------------------------------------------- /Tuan/Images.xcassets/CategoryIcon/icon_category_-1.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x", 6 | "filename" : "icon_category_-1.png" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x", 11 | "filename" : "icon_category_-1@2x.png" 12 | }, 13 | { 14 | "idiom" : "universal", 15 | "scale" : "3x" 16 | } 17 | ], 18 | "info" : { 19 | "version" : 1, 20 | "author" : "xcode" 21 | } 22 | } -------------------------------------------------------------------------------- /Tuan/Images.xcassets/CategoryIcon/icon_category_-1.imageset/icon_category_-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValiantCat/Tuan/a10214b9bcb58aef99bb51b05d7df825c3ccb326/Tuan/Images.xcassets/CategoryIcon/icon_category_-1.imageset/icon_category_-1.png -------------------------------------------------------------------------------- /Tuan/Images.xcassets/CategoryIcon/icon_category_-1.imageset/icon_category_-1@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValiantCat/Tuan/a10214b9bcb58aef99bb51b05d7df825c3ccb326/Tuan/Images.xcassets/CategoryIcon/icon_category_-1.imageset/icon_category_-1@2x.png -------------------------------------------------------------------------------- /Tuan/Images.xcassets/CategoryIcon/icon_category_0.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x", 6 | "filename" : "icon_category_0.png" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x", 11 | "filename" : "icon_category_0@2x.png" 12 | }, 13 | { 14 | "idiom" : "universal", 15 | "scale" : "3x" 16 | } 17 | ], 18 | "info" : { 19 | "version" : 1, 20 | "author" : "xcode" 21 | } 22 | } -------------------------------------------------------------------------------- /Tuan/Images.xcassets/CategoryIcon/icon_category_0.imageset/icon_category_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValiantCat/Tuan/a10214b9bcb58aef99bb51b05d7df825c3ccb326/Tuan/Images.xcassets/CategoryIcon/icon_category_0.imageset/icon_category_0.png -------------------------------------------------------------------------------- /Tuan/Images.xcassets/CategoryIcon/icon_category_0.imageset/icon_category_0@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValiantCat/Tuan/a10214b9bcb58aef99bb51b05d7df825c3ccb326/Tuan/Images.xcassets/CategoryIcon/icon_category_0.imageset/icon_category_0@2x.png -------------------------------------------------------------------------------- /Tuan/Images.xcassets/CategoryIcon/icon_category_1.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x", 6 | "filename" : "icon_category_1.png" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x", 11 | "filename" : "icon_category_1@2x.png" 12 | }, 13 | { 14 | "idiom" : "universal", 15 | "scale" : "3x" 16 | } 17 | ], 18 | "info" : { 19 | "version" : 1, 20 | "author" : "xcode" 21 | } 22 | } -------------------------------------------------------------------------------- /Tuan/Images.xcassets/CategoryIcon/icon_category_1.imageset/icon_category_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValiantCat/Tuan/a10214b9bcb58aef99bb51b05d7df825c3ccb326/Tuan/Images.xcassets/CategoryIcon/icon_category_1.imageset/icon_category_1.png -------------------------------------------------------------------------------- /Tuan/Images.xcassets/CategoryIcon/icon_category_1.imageset/icon_category_1@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValiantCat/Tuan/a10214b9bcb58aef99bb51b05d7df825c3ccb326/Tuan/Images.xcassets/CategoryIcon/icon_category_1.imageset/icon_category_1@2x.png -------------------------------------------------------------------------------- /Tuan/Images.xcassets/CategoryIcon/icon_category_2.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x", 6 | "filename" : "icon_category_2.png" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x", 11 | "filename" : "icon_category_2@2x.png" 12 | }, 13 | { 14 | "idiom" : "universal", 15 | "scale" : "3x" 16 | } 17 | ], 18 | "info" : { 19 | "version" : 1, 20 | "author" : "xcode" 21 | } 22 | } -------------------------------------------------------------------------------- /Tuan/Images.xcassets/CategoryIcon/icon_category_2.imageset/icon_category_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValiantCat/Tuan/a10214b9bcb58aef99bb51b05d7df825c3ccb326/Tuan/Images.xcassets/CategoryIcon/icon_category_2.imageset/icon_category_2.png -------------------------------------------------------------------------------- /Tuan/Images.xcassets/CategoryIcon/icon_category_2.imageset/icon_category_2@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValiantCat/Tuan/a10214b9bcb58aef99bb51b05d7df825c3ccb326/Tuan/Images.xcassets/CategoryIcon/icon_category_2.imageset/icon_category_2@2x.png -------------------------------------------------------------------------------- /Tuan/Images.xcassets/CategoryIcon/icon_category_20.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x", 6 | "filename" : "icon_category_20.png" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x", 11 | "filename" : "icon_category_20@2x.png" 12 | }, 13 | { 14 | "idiom" : "universal", 15 | "scale" : "3x" 16 | } 17 | ], 18 | "info" : { 19 | "version" : 1, 20 | "author" : "xcode" 21 | } 22 | } -------------------------------------------------------------------------------- /Tuan/Images.xcassets/CategoryIcon/icon_category_20.imageset/icon_category_20.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValiantCat/Tuan/a10214b9bcb58aef99bb51b05d7df825c3ccb326/Tuan/Images.xcassets/CategoryIcon/icon_category_20.imageset/icon_category_20.png -------------------------------------------------------------------------------- /Tuan/Images.xcassets/CategoryIcon/icon_category_20.imageset/icon_category_20@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValiantCat/Tuan/a10214b9bcb58aef99bb51b05d7df825c3ccb326/Tuan/Images.xcassets/CategoryIcon/icon_category_20.imageset/icon_category_20@2x.png -------------------------------------------------------------------------------- /Tuan/Images.xcassets/CategoryIcon/icon_category_22.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x", 6 | "filename" : "icon_category_22.png" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x", 11 | "filename" : "icon_category_22@2x.png" 12 | }, 13 | { 14 | "idiom" : "universal", 15 | "scale" : "3x" 16 | } 17 | ], 18 | "info" : { 19 | "version" : 1, 20 | "author" : "xcode" 21 | } 22 | } -------------------------------------------------------------------------------- /Tuan/Images.xcassets/CategoryIcon/icon_category_22.imageset/icon_category_22.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValiantCat/Tuan/a10214b9bcb58aef99bb51b05d7df825c3ccb326/Tuan/Images.xcassets/CategoryIcon/icon_category_22.imageset/icon_category_22.png -------------------------------------------------------------------------------- /Tuan/Images.xcassets/CategoryIcon/icon_category_22.imageset/icon_category_22@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValiantCat/Tuan/a10214b9bcb58aef99bb51b05d7df825c3ccb326/Tuan/Images.xcassets/CategoryIcon/icon_category_22.imageset/icon_category_22@2x.png -------------------------------------------------------------------------------- /Tuan/Images.xcassets/CategoryIcon/icon_category_3.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x", 6 | "filename" : "icon_category_3.png" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x", 11 | "filename" : "icon_category_3@2x.png" 12 | }, 13 | { 14 | "idiom" : "universal", 15 | "scale" : "3x" 16 | } 17 | ], 18 | "info" : { 19 | "version" : 1, 20 | "author" : "xcode" 21 | } 22 | } -------------------------------------------------------------------------------- /Tuan/Images.xcassets/CategoryIcon/icon_category_3.imageset/icon_category_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValiantCat/Tuan/a10214b9bcb58aef99bb51b05d7df825c3ccb326/Tuan/Images.xcassets/CategoryIcon/icon_category_3.imageset/icon_category_3.png -------------------------------------------------------------------------------- /Tuan/Images.xcassets/CategoryIcon/icon_category_3.imageset/icon_category_3@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValiantCat/Tuan/a10214b9bcb58aef99bb51b05d7df825c3ccb326/Tuan/Images.xcassets/CategoryIcon/icon_category_3.imageset/icon_category_3@2x.png -------------------------------------------------------------------------------- /Tuan/Images.xcassets/CategoryIcon/icon_category_4.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x", 6 | "filename" : "icon_category_4.png" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x", 11 | "filename" : "icon_category_4@2x.png" 12 | }, 13 | { 14 | "idiom" : "universal", 15 | "scale" : "3x" 16 | } 17 | ], 18 | "info" : { 19 | "version" : 1, 20 | "author" : "xcode" 21 | } 22 | } -------------------------------------------------------------------------------- /Tuan/Images.xcassets/CategoryIcon/icon_category_4.imageset/icon_category_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValiantCat/Tuan/a10214b9bcb58aef99bb51b05d7df825c3ccb326/Tuan/Images.xcassets/CategoryIcon/icon_category_4.imageset/icon_category_4.png -------------------------------------------------------------------------------- /Tuan/Images.xcassets/CategoryIcon/icon_category_4.imageset/icon_category_4@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValiantCat/Tuan/a10214b9bcb58aef99bb51b05d7df825c3ccb326/Tuan/Images.xcassets/CategoryIcon/icon_category_4.imageset/icon_category_4@2x.png -------------------------------------------------------------------------------- /Tuan/Images.xcassets/CategoryIcon/icon_category_5.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x", 6 | "filename" : "icon_category_5.png" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x", 11 | "filename" : "icon_category_5@2x.png" 12 | }, 13 | { 14 | "idiom" : "universal", 15 | "scale" : "3x" 16 | } 17 | ], 18 | "info" : { 19 | "version" : 1, 20 | "author" : "xcode" 21 | } 22 | } -------------------------------------------------------------------------------- /Tuan/Images.xcassets/CategoryIcon/icon_category_5.imageset/icon_category_5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValiantCat/Tuan/a10214b9bcb58aef99bb51b05d7df825c3ccb326/Tuan/Images.xcassets/CategoryIcon/icon_category_5.imageset/icon_category_5.png -------------------------------------------------------------------------------- /Tuan/Images.xcassets/CategoryIcon/icon_category_5.imageset/icon_category_5@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValiantCat/Tuan/a10214b9bcb58aef99bb51b05d7df825c3ccb326/Tuan/Images.xcassets/CategoryIcon/icon_category_5.imageset/icon_category_5@2x.png -------------------------------------------------------------------------------- /Tuan/Images.xcassets/CategoryIcon/icon_category_78.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x", 6 | "filename" : "icon_category_78.png" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x", 11 | "filename" : "icon_category_78@2x.png" 12 | }, 13 | { 14 | "idiom" : "universal", 15 | "scale" : "3x" 16 | } 17 | ], 18 | "info" : { 19 | "version" : 1, 20 | "author" : "xcode" 21 | } 22 | } -------------------------------------------------------------------------------- /Tuan/Images.xcassets/CategoryIcon/icon_category_78.imageset/icon_category_78.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValiantCat/Tuan/a10214b9bcb58aef99bb51b05d7df825c3ccb326/Tuan/Images.xcassets/CategoryIcon/icon_category_78.imageset/icon_category_78.png -------------------------------------------------------------------------------- /Tuan/Images.xcassets/CategoryIcon/icon_category_78.imageset/icon_category_78@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValiantCat/Tuan/a10214b9bcb58aef99bb51b05d7df825c3ccb326/Tuan/Images.xcassets/CategoryIcon/icon_category_78.imageset/icon_category_78@2x.png -------------------------------------------------------------------------------- /Tuan/Images.xcassets/CategoryIcon/icon_category_99.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x", 6 | "filename" : "icon_category_99.png" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x", 11 | "filename" : "icon_category_99@2x.png" 12 | }, 13 | { 14 | "idiom" : "universal", 15 | "scale" : "3x" 16 | } 17 | ], 18 | "info" : { 19 | "version" : 1, 20 | "author" : "xcode" 21 | } 22 | } -------------------------------------------------------------------------------- /Tuan/Images.xcassets/CategoryIcon/icon_category_99.imageset/icon_category_99.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValiantCat/Tuan/a10214b9bcb58aef99bb51b05d7df825c3ccb326/Tuan/Images.xcassets/CategoryIcon/icon_category_99.imageset/icon_category_99.png -------------------------------------------------------------------------------- /Tuan/Images.xcassets/CategoryIcon/icon_category_99.imageset/icon_category_99@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValiantCat/Tuan/a10214b9bcb58aef99bb51b05d7df825c3ccb326/Tuan/Images.xcassets/CategoryIcon/icon_category_99.imageset/icon_category_99@2x.png -------------------------------------------------------------------------------- /Tuan/Images.xcassets/CategoryIcon/icon_category_highlighted_-1.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x", 6 | "filename" : "icon_category_highlighted_-1.png" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x", 11 | "filename" : "icon_category_highlighted_-1@2x.png" 12 | }, 13 | { 14 | "idiom" : "universal", 15 | "scale" : "3x" 16 | } 17 | ], 18 | "info" : { 19 | "version" : 1, 20 | "author" : "xcode" 21 | } 22 | } -------------------------------------------------------------------------------- /Tuan/Images.xcassets/CategoryIcon/icon_category_highlighted_-1.imageset/icon_category_highlighted_-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValiantCat/Tuan/a10214b9bcb58aef99bb51b05d7df825c3ccb326/Tuan/Images.xcassets/CategoryIcon/icon_category_highlighted_-1.imageset/icon_category_highlighted_-1.png -------------------------------------------------------------------------------- /Tuan/Images.xcassets/CategoryIcon/icon_category_highlighted_-1.imageset/icon_category_highlighted_-1@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValiantCat/Tuan/a10214b9bcb58aef99bb51b05d7df825c3ccb326/Tuan/Images.xcassets/CategoryIcon/icon_category_highlighted_-1.imageset/icon_category_highlighted_-1@2x.png -------------------------------------------------------------------------------- /Tuan/Images.xcassets/CategoryIcon/icon_category_highlighted_0.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x", 6 | "filename" : "icon_category_highlighted_0.png" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x", 11 | "filename" : "icon_category_highlighted_0@2x.png" 12 | }, 13 | { 14 | "idiom" : "universal", 15 | "scale" : "3x" 16 | } 17 | ], 18 | "info" : { 19 | "version" : 1, 20 | "author" : "xcode" 21 | } 22 | } -------------------------------------------------------------------------------- /Tuan/Images.xcassets/CategoryIcon/icon_category_highlighted_0.imageset/icon_category_highlighted_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValiantCat/Tuan/a10214b9bcb58aef99bb51b05d7df825c3ccb326/Tuan/Images.xcassets/CategoryIcon/icon_category_highlighted_0.imageset/icon_category_highlighted_0.png -------------------------------------------------------------------------------- /Tuan/Images.xcassets/CategoryIcon/icon_category_highlighted_0.imageset/icon_category_highlighted_0@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValiantCat/Tuan/a10214b9bcb58aef99bb51b05d7df825c3ccb326/Tuan/Images.xcassets/CategoryIcon/icon_category_highlighted_0.imageset/icon_category_highlighted_0@2x.png -------------------------------------------------------------------------------- /Tuan/Images.xcassets/CategoryIcon/icon_category_highlighted_1.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x", 6 | "filename" : "icon_category_highlighted_1.png" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x", 11 | "filename" : "icon_category_highlighted_1@2x.png" 12 | }, 13 | { 14 | "idiom" : "universal", 15 | "scale" : "3x" 16 | } 17 | ], 18 | "info" : { 19 | "version" : 1, 20 | "author" : "xcode" 21 | } 22 | } -------------------------------------------------------------------------------- /Tuan/Images.xcassets/CategoryIcon/icon_category_highlighted_1.imageset/icon_category_highlighted_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValiantCat/Tuan/a10214b9bcb58aef99bb51b05d7df825c3ccb326/Tuan/Images.xcassets/CategoryIcon/icon_category_highlighted_1.imageset/icon_category_highlighted_1.png -------------------------------------------------------------------------------- /Tuan/Images.xcassets/CategoryIcon/icon_category_highlighted_1.imageset/icon_category_highlighted_1@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValiantCat/Tuan/a10214b9bcb58aef99bb51b05d7df825c3ccb326/Tuan/Images.xcassets/CategoryIcon/icon_category_highlighted_1.imageset/icon_category_highlighted_1@2x.png -------------------------------------------------------------------------------- /Tuan/Images.xcassets/CategoryIcon/icon_category_highlighted_2.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x", 6 | "filename" : "icon_category_highlighted_2.png" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x", 11 | "filename" : "icon_category_highlighted_2@2x.png" 12 | }, 13 | { 14 | "idiom" : "universal", 15 | "scale" : "3x" 16 | } 17 | ], 18 | "info" : { 19 | "version" : 1, 20 | "author" : "xcode" 21 | } 22 | } -------------------------------------------------------------------------------- /Tuan/Images.xcassets/CategoryIcon/icon_category_highlighted_2.imageset/icon_category_highlighted_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValiantCat/Tuan/a10214b9bcb58aef99bb51b05d7df825c3ccb326/Tuan/Images.xcassets/CategoryIcon/icon_category_highlighted_2.imageset/icon_category_highlighted_2.png -------------------------------------------------------------------------------- /Tuan/Images.xcassets/CategoryIcon/icon_category_highlighted_2.imageset/icon_category_highlighted_2@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValiantCat/Tuan/a10214b9bcb58aef99bb51b05d7df825c3ccb326/Tuan/Images.xcassets/CategoryIcon/icon_category_highlighted_2.imageset/icon_category_highlighted_2@2x.png -------------------------------------------------------------------------------- /Tuan/Images.xcassets/CategoryIcon/icon_category_highlighted_20.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x", 6 | "filename" : "icon_category_highlighted_20.png" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x", 11 | "filename" : "icon_category_highlighted_20@2x.png" 12 | }, 13 | { 14 | "idiom" : "universal", 15 | "scale" : "3x" 16 | } 17 | ], 18 | "info" : { 19 | "version" : 1, 20 | "author" : "xcode" 21 | } 22 | } -------------------------------------------------------------------------------- /Tuan/Images.xcassets/CategoryIcon/icon_category_highlighted_20.imageset/icon_category_highlighted_20.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValiantCat/Tuan/a10214b9bcb58aef99bb51b05d7df825c3ccb326/Tuan/Images.xcassets/CategoryIcon/icon_category_highlighted_20.imageset/icon_category_highlighted_20.png -------------------------------------------------------------------------------- /Tuan/Images.xcassets/CategoryIcon/icon_category_highlighted_20.imageset/icon_category_highlighted_20@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValiantCat/Tuan/a10214b9bcb58aef99bb51b05d7df825c3ccb326/Tuan/Images.xcassets/CategoryIcon/icon_category_highlighted_20.imageset/icon_category_highlighted_20@2x.png -------------------------------------------------------------------------------- /Tuan/Images.xcassets/CategoryIcon/icon_category_highlighted_22.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x", 6 | "filename" : "icon_category_highlighted_22.png" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x", 11 | "filename" : "icon_category_highlighted_22@2x.png" 12 | }, 13 | { 14 | "idiom" : "universal", 15 | "scale" : "3x" 16 | } 17 | ], 18 | "info" : { 19 | "version" : 1, 20 | "author" : "xcode" 21 | } 22 | } -------------------------------------------------------------------------------- /Tuan/Images.xcassets/CategoryIcon/icon_category_highlighted_22.imageset/icon_category_highlighted_22.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValiantCat/Tuan/a10214b9bcb58aef99bb51b05d7df825c3ccb326/Tuan/Images.xcassets/CategoryIcon/icon_category_highlighted_22.imageset/icon_category_highlighted_22.png -------------------------------------------------------------------------------- /Tuan/Images.xcassets/CategoryIcon/icon_category_highlighted_22.imageset/icon_category_highlighted_22@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValiantCat/Tuan/a10214b9bcb58aef99bb51b05d7df825c3ccb326/Tuan/Images.xcassets/CategoryIcon/icon_category_highlighted_22.imageset/icon_category_highlighted_22@2x.png -------------------------------------------------------------------------------- /Tuan/Images.xcassets/CategoryIcon/icon_category_highlighted_3.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x", 6 | "filename" : "icon_category_highlighted_3.png" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x", 11 | "filename" : "icon_category_highlighted_3@2x.png" 12 | }, 13 | { 14 | "idiom" : "universal", 15 | "scale" : "3x" 16 | } 17 | ], 18 | "info" : { 19 | "version" : 1, 20 | "author" : "xcode" 21 | } 22 | } -------------------------------------------------------------------------------- /Tuan/Images.xcassets/CategoryIcon/icon_category_highlighted_3.imageset/icon_category_highlighted_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValiantCat/Tuan/a10214b9bcb58aef99bb51b05d7df825c3ccb326/Tuan/Images.xcassets/CategoryIcon/icon_category_highlighted_3.imageset/icon_category_highlighted_3.png -------------------------------------------------------------------------------- /Tuan/Images.xcassets/CategoryIcon/icon_category_highlighted_3.imageset/icon_category_highlighted_3@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValiantCat/Tuan/a10214b9bcb58aef99bb51b05d7df825c3ccb326/Tuan/Images.xcassets/CategoryIcon/icon_category_highlighted_3.imageset/icon_category_highlighted_3@2x.png -------------------------------------------------------------------------------- /Tuan/Images.xcassets/CategoryIcon/icon_category_highlighted_4.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x", 6 | "filename" : "icon_category_highlighted_4.png" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x", 11 | "filename" : "icon_category_highlighted_4@2x.png" 12 | }, 13 | { 14 | "idiom" : "universal", 15 | "scale" : "3x" 16 | } 17 | ], 18 | "info" : { 19 | "version" : 1, 20 | "author" : "xcode" 21 | } 22 | } -------------------------------------------------------------------------------- /Tuan/Images.xcassets/CategoryIcon/icon_category_highlighted_4.imageset/icon_category_highlighted_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValiantCat/Tuan/a10214b9bcb58aef99bb51b05d7df825c3ccb326/Tuan/Images.xcassets/CategoryIcon/icon_category_highlighted_4.imageset/icon_category_highlighted_4.png -------------------------------------------------------------------------------- /Tuan/Images.xcassets/CategoryIcon/icon_category_highlighted_4.imageset/icon_category_highlighted_4@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValiantCat/Tuan/a10214b9bcb58aef99bb51b05d7df825c3ccb326/Tuan/Images.xcassets/CategoryIcon/icon_category_highlighted_4.imageset/icon_category_highlighted_4@2x.png -------------------------------------------------------------------------------- /Tuan/Images.xcassets/CategoryIcon/icon_category_highlighted_5.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x", 6 | "filename" : "icon_category_highlighted_5.png" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x", 11 | "filename" : "icon_category_highlighted_5@2x.png" 12 | }, 13 | { 14 | "idiom" : "universal", 15 | "scale" : "3x" 16 | } 17 | ], 18 | "info" : { 19 | "version" : 1, 20 | "author" : "xcode" 21 | } 22 | } -------------------------------------------------------------------------------- /Tuan/Images.xcassets/CategoryIcon/icon_category_highlighted_5.imageset/icon_category_highlighted_5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValiantCat/Tuan/a10214b9bcb58aef99bb51b05d7df825c3ccb326/Tuan/Images.xcassets/CategoryIcon/icon_category_highlighted_5.imageset/icon_category_highlighted_5.png -------------------------------------------------------------------------------- /Tuan/Images.xcassets/CategoryIcon/icon_category_highlighted_5.imageset/icon_category_highlighted_5@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValiantCat/Tuan/a10214b9bcb58aef99bb51b05d7df825c3ccb326/Tuan/Images.xcassets/CategoryIcon/icon_category_highlighted_5.imageset/icon_category_highlighted_5@2x.png -------------------------------------------------------------------------------- /Tuan/Images.xcassets/CategoryIcon/icon_category_highlighted_78.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x", 6 | "filename" : "icon_category_highlighted_78.png" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x", 11 | "filename" : "icon_category_highlighted_78@2x.png" 12 | }, 13 | { 14 | "idiom" : "universal", 15 | "scale" : "3x" 16 | } 17 | ], 18 | "info" : { 19 | "version" : 1, 20 | "author" : "xcode" 21 | } 22 | } -------------------------------------------------------------------------------- /Tuan/Images.xcassets/CategoryIcon/icon_category_highlighted_78.imageset/icon_category_highlighted_78.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValiantCat/Tuan/a10214b9bcb58aef99bb51b05d7df825c3ccb326/Tuan/Images.xcassets/CategoryIcon/icon_category_highlighted_78.imageset/icon_category_highlighted_78.png -------------------------------------------------------------------------------- /Tuan/Images.xcassets/CategoryIcon/icon_category_highlighted_78.imageset/icon_category_highlighted_78@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValiantCat/Tuan/a10214b9bcb58aef99bb51b05d7df825c3ccb326/Tuan/Images.xcassets/CategoryIcon/icon_category_highlighted_78.imageset/icon_category_highlighted_78@2x.png -------------------------------------------------------------------------------- /Tuan/Images.xcassets/CategoryIcon/icon_category_highlighted_99.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x", 6 | "filename" : "icon_category_highlighted_99.png" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x", 11 | "filename" : "icon_category_highlighted_99@2x.png" 12 | }, 13 | { 14 | "idiom" : "universal", 15 | "scale" : "3x" 16 | } 17 | ], 18 | "info" : { 19 | "version" : 1, 20 | "author" : "xcode" 21 | } 22 | } -------------------------------------------------------------------------------- /Tuan/Images.xcassets/CategoryIcon/icon_category_highlighted_99.imageset/icon_category_highlighted_99.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValiantCat/Tuan/a10214b9bcb58aef99bb51b05d7df825c3ccb326/Tuan/Images.xcassets/CategoryIcon/icon_category_highlighted_99.imageset/icon_category_highlighted_99.png -------------------------------------------------------------------------------- /Tuan/Images.xcassets/CategoryIcon/icon_category_highlighted_99.imageset/icon_category_highlighted_99@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValiantCat/Tuan/a10214b9bcb58aef99bb51b05d7df825c3ccb326/Tuan/Images.xcassets/CategoryIcon/icon_category_highlighted_99.imageset/icon_category_highlighted_99@2x.png -------------------------------------------------------------------------------- /Tuan/Images.xcassets/CategoryIcon/icon_filter_arrow.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x", 6 | "filename" : "icon_filter_arrow.png" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x", 11 | "filename" : "icon_filter_arrow@2x.png" 12 | }, 13 | { 14 | "idiom" : "universal", 15 | "scale" : "3x" 16 | } 17 | ], 18 | "info" : { 19 | "version" : 1, 20 | "author" : "xcode" 21 | } 22 | } -------------------------------------------------------------------------------- /Tuan/Images.xcassets/CategoryIcon/icon_filter_arrow.imageset/icon_filter_arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValiantCat/Tuan/a10214b9bcb58aef99bb51b05d7df825c3ccb326/Tuan/Images.xcassets/CategoryIcon/icon_filter_arrow.imageset/icon_filter_arrow.png -------------------------------------------------------------------------------- /Tuan/Images.xcassets/CategoryIcon/icon_filter_arrow.imageset/icon_filter_arrow@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValiantCat/Tuan/a10214b9bcb58aef99bb51b05d7df825c3ccb326/Tuan/Images.xcassets/CategoryIcon/icon_filter_arrow.imageset/icon_filter_arrow@2x.png -------------------------------------------------------------------------------- /Tuan/Images.xcassets/CategoryIcon/icon_filter_category_-1.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x", 6 | "filename" : "icon_filter_category_-1.png" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x", 11 | "filename" : "icon_filter_category_-1@2x.png" 12 | }, 13 | { 14 | "idiom" : "universal", 15 | "scale" : "3x" 16 | } 17 | ], 18 | "info" : { 19 | "version" : 1, 20 | "author" : "xcode" 21 | } 22 | } -------------------------------------------------------------------------------- /Tuan/Images.xcassets/CategoryIcon/icon_filter_category_-1.imageset/icon_filter_category_-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValiantCat/Tuan/a10214b9bcb58aef99bb51b05d7df825c3ccb326/Tuan/Images.xcassets/CategoryIcon/icon_filter_category_-1.imageset/icon_filter_category_-1.png -------------------------------------------------------------------------------- /Tuan/Images.xcassets/CategoryIcon/icon_filter_category_-1.imageset/icon_filter_category_-1@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValiantCat/Tuan/a10214b9bcb58aef99bb51b05d7df825c3ccb326/Tuan/Images.xcassets/CategoryIcon/icon_filter_category_-1.imageset/icon_filter_category_-1@2x.png -------------------------------------------------------------------------------- /Tuan/Images.xcassets/CategoryIcon/icon_filter_category_0.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x", 6 | "filename" : "icon_filter_category_0.png" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x", 11 | "filename" : "icon_filter_category_0@2x.png" 12 | }, 13 | { 14 | "idiom" : "universal", 15 | "scale" : "3x" 16 | } 17 | ], 18 | "info" : { 19 | "version" : 1, 20 | "author" : "xcode" 21 | } 22 | } -------------------------------------------------------------------------------- /Tuan/Images.xcassets/CategoryIcon/icon_filter_category_0.imageset/icon_filter_category_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValiantCat/Tuan/a10214b9bcb58aef99bb51b05d7df825c3ccb326/Tuan/Images.xcassets/CategoryIcon/icon_filter_category_0.imageset/icon_filter_category_0.png -------------------------------------------------------------------------------- /Tuan/Images.xcassets/CategoryIcon/icon_filter_category_0.imageset/icon_filter_category_0@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValiantCat/Tuan/a10214b9bcb58aef99bb51b05d7df825c3ccb326/Tuan/Images.xcassets/CategoryIcon/icon_filter_category_0.imageset/icon_filter_category_0@2x.png -------------------------------------------------------------------------------- /Tuan/Images.xcassets/CategoryIcon/icon_filter_category_1.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x", 6 | "filename" : "icon_filter_category_1.png" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x", 11 | "filename" : "icon_filter_category_1@2x.png" 12 | }, 13 | { 14 | "idiom" : "universal", 15 | "scale" : "3x" 16 | } 17 | ], 18 | "info" : { 19 | "version" : 1, 20 | "author" : "xcode" 21 | } 22 | } -------------------------------------------------------------------------------- /Tuan/Images.xcassets/CategoryIcon/icon_filter_category_1.imageset/icon_filter_category_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValiantCat/Tuan/a10214b9bcb58aef99bb51b05d7df825c3ccb326/Tuan/Images.xcassets/CategoryIcon/icon_filter_category_1.imageset/icon_filter_category_1.png -------------------------------------------------------------------------------- /Tuan/Images.xcassets/CategoryIcon/icon_filter_category_1.imageset/icon_filter_category_1@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValiantCat/Tuan/a10214b9bcb58aef99bb51b05d7df825c3ccb326/Tuan/Images.xcassets/CategoryIcon/icon_filter_category_1.imageset/icon_filter_category_1@2x.png -------------------------------------------------------------------------------- /Tuan/Images.xcassets/CategoryIcon/icon_filter_category_2.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x", 6 | "filename" : "icon_filter_category_2.png" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x", 11 | "filename" : "icon_filter_category_2@2x.png" 12 | }, 13 | { 14 | "idiom" : "universal", 15 | "scale" : "3x" 16 | } 17 | ], 18 | "info" : { 19 | "version" : 1, 20 | "author" : "xcode" 21 | } 22 | } -------------------------------------------------------------------------------- /Tuan/Images.xcassets/CategoryIcon/icon_filter_category_2.imageset/icon_filter_category_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValiantCat/Tuan/a10214b9bcb58aef99bb51b05d7df825c3ccb326/Tuan/Images.xcassets/CategoryIcon/icon_filter_category_2.imageset/icon_filter_category_2.png -------------------------------------------------------------------------------- /Tuan/Images.xcassets/CategoryIcon/icon_filter_category_2.imageset/icon_filter_category_2@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValiantCat/Tuan/a10214b9bcb58aef99bb51b05d7df825c3ccb326/Tuan/Images.xcassets/CategoryIcon/icon_filter_category_2.imageset/icon_filter_category_2@2x.png -------------------------------------------------------------------------------- /Tuan/Images.xcassets/CategoryIcon/icon_filter_category_20.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x", 6 | "filename" : "icon_filter_category_20.png" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x", 11 | "filename" : "icon_filter_category_20@2x.png" 12 | }, 13 | { 14 | "idiom" : "universal", 15 | "scale" : "3x" 16 | } 17 | ], 18 | "info" : { 19 | "version" : 1, 20 | "author" : "xcode" 21 | } 22 | } -------------------------------------------------------------------------------- /Tuan/Images.xcassets/CategoryIcon/icon_filter_category_20.imageset/icon_filter_category_20.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValiantCat/Tuan/a10214b9bcb58aef99bb51b05d7df825c3ccb326/Tuan/Images.xcassets/CategoryIcon/icon_filter_category_20.imageset/icon_filter_category_20.png -------------------------------------------------------------------------------- /Tuan/Images.xcassets/CategoryIcon/icon_filter_category_20.imageset/icon_filter_category_20@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValiantCat/Tuan/a10214b9bcb58aef99bb51b05d7df825c3ccb326/Tuan/Images.xcassets/CategoryIcon/icon_filter_category_20.imageset/icon_filter_category_20@2x.png -------------------------------------------------------------------------------- /Tuan/Images.xcassets/CategoryIcon/icon_filter_category_22.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x", 6 | "filename" : "icon_filter_category_22.png" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x", 11 | "filename" : "icon_filter_category_22@2x.png" 12 | }, 13 | { 14 | "idiom" : "universal", 15 | "scale" : "3x" 16 | } 17 | ], 18 | "info" : { 19 | "version" : 1, 20 | "author" : "xcode" 21 | } 22 | } -------------------------------------------------------------------------------- /Tuan/Images.xcassets/CategoryIcon/icon_filter_category_22.imageset/icon_filter_category_22.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValiantCat/Tuan/a10214b9bcb58aef99bb51b05d7df825c3ccb326/Tuan/Images.xcassets/CategoryIcon/icon_filter_category_22.imageset/icon_filter_category_22.png -------------------------------------------------------------------------------- /Tuan/Images.xcassets/CategoryIcon/icon_filter_category_22.imageset/icon_filter_category_22@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValiantCat/Tuan/a10214b9bcb58aef99bb51b05d7df825c3ccb326/Tuan/Images.xcassets/CategoryIcon/icon_filter_category_22.imageset/icon_filter_category_22@2x.png -------------------------------------------------------------------------------- /Tuan/Images.xcassets/CategoryIcon/icon_filter_category_3.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x", 6 | "filename" : "icon_filter_category_3.png" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x", 11 | "filename" : "icon_filter_category_3@2x.png" 12 | }, 13 | { 14 | "idiom" : "universal", 15 | "scale" : "3x" 16 | } 17 | ], 18 | "info" : { 19 | "version" : 1, 20 | "author" : "xcode" 21 | } 22 | } -------------------------------------------------------------------------------- /Tuan/Images.xcassets/CategoryIcon/icon_filter_category_3.imageset/icon_filter_category_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValiantCat/Tuan/a10214b9bcb58aef99bb51b05d7df825c3ccb326/Tuan/Images.xcassets/CategoryIcon/icon_filter_category_3.imageset/icon_filter_category_3.png -------------------------------------------------------------------------------- /Tuan/Images.xcassets/CategoryIcon/icon_filter_category_3.imageset/icon_filter_category_3@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValiantCat/Tuan/a10214b9bcb58aef99bb51b05d7df825c3ccb326/Tuan/Images.xcassets/CategoryIcon/icon_filter_category_3.imageset/icon_filter_category_3@2x.png -------------------------------------------------------------------------------- /Tuan/Images.xcassets/CategoryIcon/icon_filter_category_4.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x", 6 | "filename" : "icon_filter_category_4.png" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x", 11 | "filename" : "icon_filter_category_4@2x.png" 12 | }, 13 | { 14 | "idiom" : "universal", 15 | "scale" : "3x" 16 | } 17 | ], 18 | "info" : { 19 | "version" : 1, 20 | "author" : "xcode" 21 | } 22 | } -------------------------------------------------------------------------------- /Tuan/Images.xcassets/CategoryIcon/icon_filter_category_4.imageset/icon_filter_category_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValiantCat/Tuan/a10214b9bcb58aef99bb51b05d7df825c3ccb326/Tuan/Images.xcassets/CategoryIcon/icon_filter_category_4.imageset/icon_filter_category_4.png -------------------------------------------------------------------------------- /Tuan/Images.xcassets/CategoryIcon/icon_filter_category_4.imageset/icon_filter_category_4@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValiantCat/Tuan/a10214b9bcb58aef99bb51b05d7df825c3ccb326/Tuan/Images.xcassets/CategoryIcon/icon_filter_category_4.imageset/icon_filter_category_4@2x.png -------------------------------------------------------------------------------- /Tuan/Images.xcassets/CategoryIcon/icon_filter_category_5.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x", 6 | "filename" : "icon_filter_category_5.png" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x", 11 | "filename" : "icon_filter_category_5@2x.png" 12 | }, 13 | { 14 | "idiom" : "universal", 15 | "scale" : "3x" 16 | } 17 | ], 18 | "info" : { 19 | "version" : 1, 20 | "author" : "xcode" 21 | } 22 | } -------------------------------------------------------------------------------- /Tuan/Images.xcassets/CategoryIcon/icon_filter_category_5.imageset/icon_filter_category_5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValiantCat/Tuan/a10214b9bcb58aef99bb51b05d7df825c3ccb326/Tuan/Images.xcassets/CategoryIcon/icon_filter_category_5.imageset/icon_filter_category_5.png -------------------------------------------------------------------------------- /Tuan/Images.xcassets/CategoryIcon/icon_filter_category_5.imageset/icon_filter_category_5@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValiantCat/Tuan/a10214b9bcb58aef99bb51b05d7df825c3ccb326/Tuan/Images.xcassets/CategoryIcon/icon_filter_category_5.imageset/icon_filter_category_5@2x.png -------------------------------------------------------------------------------- /Tuan/Images.xcassets/CategoryIcon/icon_filter_category_78.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x", 6 | "filename" : "icon_filter_category_78.png" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x", 11 | "filename" : "icon_filter_category_78@2x.png" 12 | }, 13 | { 14 | "idiom" : "universal", 15 | "scale" : "3x" 16 | } 17 | ], 18 | "info" : { 19 | "version" : 1, 20 | "author" : "xcode" 21 | } 22 | } -------------------------------------------------------------------------------- /Tuan/Images.xcassets/CategoryIcon/icon_filter_category_78.imageset/icon_filter_category_78.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValiantCat/Tuan/a10214b9bcb58aef99bb51b05d7df825c3ccb326/Tuan/Images.xcassets/CategoryIcon/icon_filter_category_78.imageset/icon_filter_category_78.png -------------------------------------------------------------------------------- /Tuan/Images.xcassets/CategoryIcon/icon_filter_category_78.imageset/icon_filter_category_78@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValiantCat/Tuan/a10214b9bcb58aef99bb51b05d7df825c3ccb326/Tuan/Images.xcassets/CategoryIcon/icon_filter_category_78.imageset/icon_filter_category_78@2x.png -------------------------------------------------------------------------------- /Tuan/Images.xcassets/CategoryIcon/icon_filter_category_99.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x", 6 | "filename" : "icon_filter_category_99.png" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x", 11 | "filename" : "icon_filter_category_99@2x.png" 12 | }, 13 | { 14 | "idiom" : "universal", 15 | "scale" : "3x" 16 | } 17 | ], 18 | "info" : { 19 | "version" : 1, 20 | "author" : "xcode" 21 | } 22 | } -------------------------------------------------------------------------------- /Tuan/Images.xcassets/CategoryIcon/icon_filter_category_99.imageset/icon_filter_category_99.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValiantCat/Tuan/a10214b9bcb58aef99bb51b05d7df825c3ccb326/Tuan/Images.xcassets/CategoryIcon/icon_filter_category_99.imageset/icon_filter_category_99.png -------------------------------------------------------------------------------- /Tuan/Images.xcassets/CategoryIcon/icon_filter_category_99.imageset/icon_filter_category_99@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValiantCat/Tuan/a10214b9bcb58aef99bb51b05d7df825c3ccb326/Tuan/Images.xcassets/CategoryIcon/icon_filter_category_99.imageset/icon_filter_category_99@2x.png -------------------------------------------------------------------------------- /Tuan/Images.xcassets/CategoryIcon/icon_filter_category_highlighted_-1.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x", 6 | "filename" : "icon_filter_category_highlighted_-1.png" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x", 11 | "filename" : "icon_filter_category_highlighted_-1@2x.png" 12 | }, 13 | { 14 | "idiom" : "universal", 15 | "scale" : "3x" 16 | } 17 | ], 18 | "info" : { 19 | "version" : 1, 20 | "author" : "xcode" 21 | } 22 | } -------------------------------------------------------------------------------- /Tuan/Images.xcassets/CategoryIcon/icon_filter_category_highlighted_-1.imageset/icon_filter_category_highlighted_-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValiantCat/Tuan/a10214b9bcb58aef99bb51b05d7df825c3ccb326/Tuan/Images.xcassets/CategoryIcon/icon_filter_category_highlighted_-1.imageset/icon_filter_category_highlighted_-1.png -------------------------------------------------------------------------------- /Tuan/Images.xcassets/CategoryIcon/icon_filter_category_highlighted_-1.imageset/icon_filter_category_highlighted_-1@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValiantCat/Tuan/a10214b9bcb58aef99bb51b05d7df825c3ccb326/Tuan/Images.xcassets/CategoryIcon/icon_filter_category_highlighted_-1.imageset/icon_filter_category_highlighted_-1@2x.png -------------------------------------------------------------------------------- /Tuan/Images.xcassets/CategoryIcon/icon_filter_category_highlighted_0.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x", 6 | "filename" : "icon_filter_category_highlighted_0.png" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x", 11 | "filename" : "icon_filter_category_highlighted_0@2x.png" 12 | }, 13 | { 14 | "idiom" : "universal", 15 | "scale" : "3x" 16 | } 17 | ], 18 | "info" : { 19 | "version" : 1, 20 | "author" : "xcode" 21 | } 22 | } -------------------------------------------------------------------------------- /Tuan/Images.xcassets/CategoryIcon/icon_filter_category_highlighted_0.imageset/icon_filter_category_highlighted_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValiantCat/Tuan/a10214b9bcb58aef99bb51b05d7df825c3ccb326/Tuan/Images.xcassets/CategoryIcon/icon_filter_category_highlighted_0.imageset/icon_filter_category_highlighted_0.png -------------------------------------------------------------------------------- /Tuan/Images.xcassets/CategoryIcon/icon_filter_category_highlighted_0.imageset/icon_filter_category_highlighted_0@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValiantCat/Tuan/a10214b9bcb58aef99bb51b05d7df825c3ccb326/Tuan/Images.xcassets/CategoryIcon/icon_filter_category_highlighted_0.imageset/icon_filter_category_highlighted_0@2x.png -------------------------------------------------------------------------------- /Tuan/Images.xcassets/CategoryIcon/icon_filter_category_highlighted_1.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x", 6 | "filename" : "icon_filter_category_highlighted_1.png" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x", 11 | "filename" : "icon_filter_category_highlighted_1@2x.png" 12 | }, 13 | { 14 | "idiom" : "universal", 15 | "scale" : "3x" 16 | } 17 | ], 18 | "info" : { 19 | "version" : 1, 20 | "author" : "xcode" 21 | } 22 | } -------------------------------------------------------------------------------- /Tuan/Images.xcassets/CategoryIcon/icon_filter_category_highlighted_1.imageset/icon_filter_category_highlighted_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValiantCat/Tuan/a10214b9bcb58aef99bb51b05d7df825c3ccb326/Tuan/Images.xcassets/CategoryIcon/icon_filter_category_highlighted_1.imageset/icon_filter_category_highlighted_1.png -------------------------------------------------------------------------------- /Tuan/Images.xcassets/CategoryIcon/icon_filter_category_highlighted_1.imageset/icon_filter_category_highlighted_1@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValiantCat/Tuan/a10214b9bcb58aef99bb51b05d7df825c3ccb326/Tuan/Images.xcassets/CategoryIcon/icon_filter_category_highlighted_1.imageset/icon_filter_category_highlighted_1@2x.png -------------------------------------------------------------------------------- /Tuan/Images.xcassets/CategoryIcon/icon_filter_category_highlighted_2.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x", 6 | "filename" : "icon_filter_category_highlighted_2.png" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x", 11 | "filename" : "icon_filter_category_highlighted_2@2x.png" 12 | }, 13 | { 14 | "idiom" : "universal", 15 | "scale" : "3x" 16 | } 17 | ], 18 | "info" : { 19 | "version" : 1, 20 | "author" : "xcode" 21 | } 22 | } -------------------------------------------------------------------------------- /Tuan/Images.xcassets/CategoryIcon/icon_filter_category_highlighted_2.imageset/icon_filter_category_highlighted_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValiantCat/Tuan/a10214b9bcb58aef99bb51b05d7df825c3ccb326/Tuan/Images.xcassets/CategoryIcon/icon_filter_category_highlighted_2.imageset/icon_filter_category_highlighted_2.png -------------------------------------------------------------------------------- /Tuan/Images.xcassets/CategoryIcon/icon_filter_category_highlighted_2.imageset/icon_filter_category_highlighted_2@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValiantCat/Tuan/a10214b9bcb58aef99bb51b05d7df825c3ccb326/Tuan/Images.xcassets/CategoryIcon/icon_filter_category_highlighted_2.imageset/icon_filter_category_highlighted_2@2x.png -------------------------------------------------------------------------------- /Tuan/Images.xcassets/CategoryIcon/icon_filter_category_highlighted_20.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x", 6 | "filename" : "icon_filter_category_highlighted_20.png" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x", 11 | "filename" : "icon_filter_category_highlighted_20@2x.png" 12 | }, 13 | { 14 | "idiom" : "universal", 15 | "scale" : "3x" 16 | } 17 | ], 18 | "info" : { 19 | "version" : 1, 20 | "author" : "xcode" 21 | } 22 | } -------------------------------------------------------------------------------- /Tuan/Images.xcassets/CategoryIcon/icon_filter_category_highlighted_20.imageset/icon_filter_category_highlighted_20.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValiantCat/Tuan/a10214b9bcb58aef99bb51b05d7df825c3ccb326/Tuan/Images.xcassets/CategoryIcon/icon_filter_category_highlighted_20.imageset/icon_filter_category_highlighted_20.png -------------------------------------------------------------------------------- /Tuan/Images.xcassets/CategoryIcon/icon_filter_category_highlighted_20.imageset/icon_filter_category_highlighted_20@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValiantCat/Tuan/a10214b9bcb58aef99bb51b05d7df825c3ccb326/Tuan/Images.xcassets/CategoryIcon/icon_filter_category_highlighted_20.imageset/icon_filter_category_highlighted_20@2x.png -------------------------------------------------------------------------------- /Tuan/Images.xcassets/CategoryIcon/icon_filter_category_highlighted_22.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x", 6 | "filename" : "icon_filter_category_highlighted_22.png" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x", 11 | "filename" : "icon_filter_category_highlighted_22@2x.png" 12 | }, 13 | { 14 | "idiom" : "universal", 15 | "scale" : "3x" 16 | } 17 | ], 18 | "info" : { 19 | "version" : 1, 20 | "author" : "xcode" 21 | } 22 | } -------------------------------------------------------------------------------- /Tuan/Images.xcassets/CategoryIcon/icon_filter_category_highlighted_22.imageset/icon_filter_category_highlighted_22.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValiantCat/Tuan/a10214b9bcb58aef99bb51b05d7df825c3ccb326/Tuan/Images.xcassets/CategoryIcon/icon_filter_category_highlighted_22.imageset/icon_filter_category_highlighted_22.png -------------------------------------------------------------------------------- /Tuan/Images.xcassets/CategoryIcon/icon_filter_category_highlighted_22.imageset/icon_filter_category_highlighted_22@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValiantCat/Tuan/a10214b9bcb58aef99bb51b05d7df825c3ccb326/Tuan/Images.xcassets/CategoryIcon/icon_filter_category_highlighted_22.imageset/icon_filter_category_highlighted_22@2x.png -------------------------------------------------------------------------------- /Tuan/Images.xcassets/CategoryIcon/icon_filter_category_highlighted_3.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x", 6 | "filename" : "icon_filter_category_highlighted_3.png" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x", 11 | "filename" : "icon_filter_category_highlighted_3@2x.png" 12 | }, 13 | { 14 | "idiom" : "universal", 15 | "scale" : "3x" 16 | } 17 | ], 18 | "info" : { 19 | "version" : 1, 20 | "author" : "xcode" 21 | } 22 | } -------------------------------------------------------------------------------- /Tuan/Images.xcassets/CategoryIcon/icon_filter_category_highlighted_3.imageset/icon_filter_category_highlighted_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValiantCat/Tuan/a10214b9bcb58aef99bb51b05d7df825c3ccb326/Tuan/Images.xcassets/CategoryIcon/icon_filter_category_highlighted_3.imageset/icon_filter_category_highlighted_3.png -------------------------------------------------------------------------------- /Tuan/Images.xcassets/CategoryIcon/icon_filter_category_highlighted_3.imageset/icon_filter_category_highlighted_3@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValiantCat/Tuan/a10214b9bcb58aef99bb51b05d7df825c3ccb326/Tuan/Images.xcassets/CategoryIcon/icon_filter_category_highlighted_3.imageset/icon_filter_category_highlighted_3@2x.png -------------------------------------------------------------------------------- /Tuan/Images.xcassets/CategoryIcon/icon_filter_category_highlighted_4.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x", 6 | "filename" : "icon_filter_category_highlighted_4.png" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x", 11 | "filename" : "icon_filter_category_highlighted_4@2x.png" 12 | }, 13 | { 14 | "idiom" : "universal", 15 | "scale" : "3x" 16 | } 17 | ], 18 | "info" : { 19 | "version" : 1, 20 | "author" : "xcode" 21 | } 22 | } -------------------------------------------------------------------------------- /Tuan/Images.xcassets/CategoryIcon/icon_filter_category_highlighted_4.imageset/icon_filter_category_highlighted_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValiantCat/Tuan/a10214b9bcb58aef99bb51b05d7df825c3ccb326/Tuan/Images.xcassets/CategoryIcon/icon_filter_category_highlighted_4.imageset/icon_filter_category_highlighted_4.png -------------------------------------------------------------------------------- /Tuan/Images.xcassets/CategoryIcon/icon_filter_category_highlighted_4.imageset/icon_filter_category_highlighted_4@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValiantCat/Tuan/a10214b9bcb58aef99bb51b05d7df825c3ccb326/Tuan/Images.xcassets/CategoryIcon/icon_filter_category_highlighted_4.imageset/icon_filter_category_highlighted_4@2x.png -------------------------------------------------------------------------------- /Tuan/Images.xcassets/CategoryIcon/icon_filter_category_highlighted_5.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x", 6 | "filename" : "icon_filter_category_highlighted_5.png" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x", 11 | "filename" : "icon_filter_category_highlighted_5@2x.png" 12 | }, 13 | { 14 | "idiom" : "universal", 15 | "scale" : "3x" 16 | } 17 | ], 18 | "info" : { 19 | "version" : 1, 20 | "author" : "xcode" 21 | } 22 | } -------------------------------------------------------------------------------- /Tuan/Images.xcassets/CategoryIcon/icon_filter_category_highlighted_5.imageset/icon_filter_category_highlighted_5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValiantCat/Tuan/a10214b9bcb58aef99bb51b05d7df825c3ccb326/Tuan/Images.xcassets/CategoryIcon/icon_filter_category_highlighted_5.imageset/icon_filter_category_highlighted_5.png -------------------------------------------------------------------------------- /Tuan/Images.xcassets/CategoryIcon/icon_filter_category_highlighted_5.imageset/icon_filter_category_highlighted_5@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValiantCat/Tuan/a10214b9bcb58aef99bb51b05d7df825c3ccb326/Tuan/Images.xcassets/CategoryIcon/icon_filter_category_highlighted_5.imageset/icon_filter_category_highlighted_5@2x.png -------------------------------------------------------------------------------- /Tuan/Images.xcassets/CategoryIcon/icon_filter_category_highlighted_78.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x", 6 | "filename" : "icon_filter_category_highlighted_78.png" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x", 11 | "filename" : "icon_filter_category_highlighted_78@2x.png" 12 | }, 13 | { 14 | "idiom" : "universal", 15 | "scale" : "3x" 16 | } 17 | ], 18 | "info" : { 19 | "version" : 1, 20 | "author" : "xcode" 21 | } 22 | } -------------------------------------------------------------------------------- /Tuan/Images.xcassets/CategoryIcon/icon_filter_category_highlighted_78.imageset/icon_filter_category_highlighted_78.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValiantCat/Tuan/a10214b9bcb58aef99bb51b05d7df825c3ccb326/Tuan/Images.xcassets/CategoryIcon/icon_filter_category_highlighted_78.imageset/icon_filter_category_highlighted_78.png -------------------------------------------------------------------------------- /Tuan/Images.xcassets/CategoryIcon/icon_filter_category_highlighted_78.imageset/icon_filter_category_highlighted_78@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValiantCat/Tuan/a10214b9bcb58aef99bb51b05d7df825c3ccb326/Tuan/Images.xcassets/CategoryIcon/icon_filter_category_highlighted_78.imageset/icon_filter_category_highlighted_78@2x.png -------------------------------------------------------------------------------- /Tuan/Images.xcassets/CategoryIcon/icon_filter_category_highlighted_99.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x", 6 | "filename" : "icon_filter_category_highlighted_99.png" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x", 11 | "filename" : "icon_filter_category_highlighted_99@2x.png" 12 | }, 13 | { 14 | "idiom" : "universal", 15 | "scale" : "3x" 16 | } 17 | ], 18 | "info" : { 19 | "version" : 1, 20 | "author" : "xcode" 21 | } 22 | } -------------------------------------------------------------------------------- /Tuan/Images.xcassets/CategoryIcon/icon_filter_category_highlighted_99.imageset/icon_filter_category_highlighted_99.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValiantCat/Tuan/a10214b9bcb58aef99bb51b05d7df825c3ccb326/Tuan/Images.xcassets/CategoryIcon/icon_filter_category_highlighted_99.imageset/icon_filter_category_highlighted_99.png -------------------------------------------------------------------------------- /Tuan/Images.xcassets/CategoryIcon/icon_filter_category_highlighted_99.imageset/icon_filter_category_highlighted_99@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValiantCat/Tuan/a10214b9bcb58aef99bb51b05d7df825c3ccb326/Tuan/Images.xcassets/CategoryIcon/icon_filter_category_highlighted_99.imageset/icon_filter_category_highlighted_99@2x.png -------------------------------------------------------------------------------- /Tuan/Images.xcassets/Cell/bg_dealcell.imageset/bg_dealcell.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValiantCat/Tuan/a10214b9bcb58aef99bb51b05d7df825c3ccb326/Tuan/Images.xcassets/Cell/bg_dealcell.imageset/bg_dealcell.png -------------------------------------------------------------------------------- /Tuan/Images.xcassets/Cell/bg_dealcell.imageset/bg_dealcell@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValiantCat/Tuan/a10214b9bcb58aef99bb51b05d7df825c3ccb326/Tuan/Images.xcassets/Cell/bg_dealcell.imageset/bg_dealcell@2x.png -------------------------------------------------------------------------------- /Tuan/Images.xcassets/Cell/bg_ordercell.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x", 6 | "filename" : "bg_ordercell.png" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x", 11 | "filename" : "bg_ordercell@2x.png" 12 | }, 13 | { 14 | "idiom" : "universal", 15 | "scale" : "3x" 16 | } 17 | ], 18 | "info" : { 19 | "version" : 1, 20 | "author" : "xcode" 21 | } 22 | } -------------------------------------------------------------------------------- /Tuan/Images.xcassets/Cell/bg_ordercell.imageset/bg_ordercell.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValiantCat/Tuan/a10214b9bcb58aef99bb51b05d7df825c3ccb326/Tuan/Images.xcassets/Cell/bg_ordercell.imageset/bg_ordercell.png -------------------------------------------------------------------------------- /Tuan/Images.xcassets/Cell/bg_ordercell.imageset/bg_ordercell@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValiantCat/Tuan/a10214b9bcb58aef99bb51b05d7df825c3ccb326/Tuan/Images.xcassets/Cell/bg_ordercell.imageset/bg_ordercell@2x.png -------------------------------------------------------------------------------- /Tuan/Images.xcassets/Cell/ic_choosed.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x", 6 | "filename" : "ic_choosed.png" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /Tuan/Images.xcassets/Cell/ic_choosed.imageset/ic_choosed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValiantCat/Tuan/a10214b9bcb58aef99bb51b05d7df825c3ccb326/Tuan/Images.xcassets/Cell/ic_choosed.imageset/ic_choosed.png -------------------------------------------------------------------------------- /Tuan/Images.xcassets/Cell/ic_choosed_large.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x", 6 | "filename" : "ic_choosed_large.png" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /Tuan/Images.xcassets/Cell/ic_choosed_large.imageset/ic_choosed_large.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValiantCat/Tuan/a10214b9bcb58aef99bb51b05d7df825c3ccb326/Tuan/Images.xcassets/Cell/ic_choosed_large.imageset/ic_choosed_large.png -------------------------------------------------------------------------------- /Tuan/Images.xcassets/Cell/ic_deal_new.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x", 6 | "filename" : "ic_deal_new.png" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x", 11 | "filename" : "ic_deal_new@2x.png" 12 | }, 13 | { 14 | "idiom" : "universal", 15 | "scale" : "3x" 16 | } 17 | ], 18 | "info" : { 19 | "version" : 1, 20 | "author" : "xcode" 21 | } 22 | } -------------------------------------------------------------------------------- /Tuan/Images.xcassets/Cell/ic_deal_new.imageset/ic_deal_new.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValiantCat/Tuan/a10214b9bcb58aef99bb51b05d7df825c3ccb326/Tuan/Images.xcassets/Cell/ic_deal_new.imageset/ic_deal_new.png -------------------------------------------------------------------------------- /Tuan/Images.xcassets/Cell/ic_deal_new.imageset/ic_deal_new@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValiantCat/Tuan/a10214b9bcb58aef99bb51b05d7df825c3ccb326/Tuan/Images.xcassets/Cell/ic_deal_new.imageset/ic_deal_new@2x.png -------------------------------------------------------------------------------- /Tuan/Images.xcassets/Cell/ic_deal_notOrder.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x", 6 | "filename" : "ic_deal_notOrder.png" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x", 11 | "filename" : "ic_deal_notOrder@2x.png" 12 | }, 13 | { 14 | "idiom" : "universal", 15 | "scale" : "3x" 16 | } 17 | ], 18 | "info" : { 19 | "version" : 1, 20 | "author" : "xcode" 21 | } 22 | } -------------------------------------------------------------------------------- /Tuan/Images.xcassets/Cell/ic_deal_notOrder.imageset/ic_deal_notOrder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValiantCat/Tuan/a10214b9bcb58aef99bb51b05d7df825c3ccb326/Tuan/Images.xcassets/Cell/ic_deal_notOrder.imageset/ic_deal_notOrder.png -------------------------------------------------------------------------------- /Tuan/Images.xcassets/Cell/ic_deal_notOrder.imageset/ic_deal_notOrder@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValiantCat/Tuan/a10214b9bcb58aef99bb51b05d7df825c3ccb326/Tuan/Images.xcassets/Cell/ic_deal_notOrder.imageset/ic_deal_notOrder@2x.png -------------------------------------------------------------------------------- /Tuan/Images.xcassets/Cell/placeholder_deal.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x", 6 | "filename" : "placeholder_deal.png" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x", 11 | "filename" : "placeholder_deal@2x.png" 12 | }, 13 | { 14 | "idiom" : "universal", 15 | "scale" : "3x" 16 | } 17 | ], 18 | "info" : { 19 | "version" : 1, 20 | "author" : "xcode" 21 | } 22 | } -------------------------------------------------------------------------------- /Tuan/Images.xcassets/Cell/placeholder_deal.imageset/placeholder_deal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValiantCat/Tuan/a10214b9bcb58aef99bb51b05d7df825c3ccb326/Tuan/Images.xcassets/Cell/placeholder_deal.imageset/placeholder_deal.png -------------------------------------------------------------------------------- /Tuan/Images.xcassets/Cell/placeholder_deal.imageset/placeholder_deal@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValiantCat/Tuan/a10214b9bcb58aef99bb51b05d7df825c3ccb326/Tuan/Images.xcassets/Cell/placeholder_deal.imageset/placeholder_deal@2x.png -------------------------------------------------------------------------------- /Tuan/Images.xcassets/Detail/bg_deal_purchaseButton.imageset/bg_deal_purchaseButton.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValiantCat/Tuan/a10214b9bcb58aef99bb51b05d7df825c3ccb326/Tuan/Images.xcassets/Detail/bg_deal_purchaseButton.imageset/bg_deal_purchaseButton.png -------------------------------------------------------------------------------- /Tuan/Images.xcassets/Detail/bg_deal_purchaseButton.imageset/bg_deal_purchaseButton@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValiantCat/Tuan/a10214b9bcb58aef99bb51b05d7df825c3ccb326/Tuan/Images.xcassets/Detail/bg_deal_purchaseButton.imageset/bg_deal_purchaseButton@2x.png -------------------------------------------------------------------------------- /Tuan/Images.xcassets/Detail/bg_deal_purchaseButton_highlighted.imageset/bg_deal_purchaseButton_highlighted.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValiantCat/Tuan/a10214b9bcb58aef99bb51b05d7df825c3ccb326/Tuan/Images.xcassets/Detail/bg_deal_purchaseButton_highlighted.imageset/bg_deal_purchaseButton_highlighted.png -------------------------------------------------------------------------------- /Tuan/Images.xcassets/Detail/bg_deal_purchaseButton_highlighted.imageset/bg_deal_purchaseButton_highlighted@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValiantCat/Tuan/a10214b9bcb58aef99bb51b05d7df825c3ccb326/Tuan/Images.xcassets/Detail/bg_deal_purchaseButton_highlighted.imageset/bg_deal_purchaseButton_highlighted@2x.png -------------------------------------------------------------------------------- /Tuan/Images.xcassets/Detail/icon_collect.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x", 6 | "filename" : "icon_collect.png" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x", 11 | "filename" : "icon_collect@2x.png" 12 | }, 13 | { 14 | "idiom" : "universal", 15 | "scale" : "3x" 16 | } 17 | ], 18 | "info" : { 19 | "version" : 1, 20 | "author" : "xcode" 21 | } 22 | } -------------------------------------------------------------------------------- /Tuan/Images.xcassets/Detail/icon_collect.imageset/icon_collect.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValiantCat/Tuan/a10214b9bcb58aef99bb51b05d7df825c3ccb326/Tuan/Images.xcassets/Detail/icon_collect.imageset/icon_collect.png -------------------------------------------------------------------------------- /Tuan/Images.xcassets/Detail/icon_collect.imageset/icon_collect@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValiantCat/Tuan/a10214b9bcb58aef99bb51b05d7df825c3ccb326/Tuan/Images.xcassets/Detail/icon_collect.imageset/icon_collect@2x.png -------------------------------------------------------------------------------- /Tuan/Images.xcassets/Detail/icon_collect_highlighted.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x", 6 | "filename" : "icon_collect_highlighted.png" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x", 11 | "filename" : "icon_collect_highlighted@2x.png" 12 | }, 13 | { 14 | "idiom" : "universal", 15 | "scale" : "3x" 16 | } 17 | ], 18 | "info" : { 19 | "version" : 1, 20 | "author" : "xcode" 21 | } 22 | } -------------------------------------------------------------------------------- /Tuan/Images.xcassets/Detail/icon_collect_highlighted.imageset/icon_collect_highlighted.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValiantCat/Tuan/a10214b9bcb58aef99bb51b05d7df825c3ccb326/Tuan/Images.xcassets/Detail/icon_collect_highlighted.imageset/icon_collect_highlighted.png -------------------------------------------------------------------------------- /Tuan/Images.xcassets/Detail/icon_collect_highlighted.imageset/icon_collect_highlighted@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValiantCat/Tuan/a10214b9bcb58aef99bb51b05d7df825c3ccb326/Tuan/Images.xcassets/Detail/icon_collect_highlighted.imageset/icon_collect_highlighted@2x.png -------------------------------------------------------------------------------- /Tuan/Images.xcassets/Detail/icon_deal_soldNumber.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x", 6 | "filename" : "icon_deal_soldNumber.png" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x", 11 | "filename" : "icon_deal_soldNumber@2x.png" 12 | }, 13 | { 14 | "idiom" : "universal", 15 | "scale" : "3x" 16 | } 17 | ], 18 | "info" : { 19 | "version" : 1, 20 | "author" : "xcode" 21 | } 22 | } -------------------------------------------------------------------------------- /Tuan/Images.xcassets/Detail/icon_deal_soldNumber.imageset/icon_deal_soldNumber.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValiantCat/Tuan/a10214b9bcb58aef99bb51b05d7df825c3ccb326/Tuan/Images.xcassets/Detail/icon_deal_soldNumber.imageset/icon_deal_soldNumber.png -------------------------------------------------------------------------------- /Tuan/Images.xcassets/Detail/icon_deal_soldNumber.imageset/icon_deal_soldNumber@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValiantCat/Tuan/a10214b9bcb58aef99bb51b05d7df825c3ccb326/Tuan/Images.xcassets/Detail/icon_deal_soldNumber.imageset/icon_deal_soldNumber@2x.png -------------------------------------------------------------------------------- /Tuan/Images.xcassets/Detail/icon_deal_timer.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x", 6 | "filename" : "icon_deal_timer.png" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x", 11 | "filename" : "icon_deal_timer@2x.png" 12 | }, 13 | { 14 | "idiom" : "universal", 15 | "scale" : "3x" 16 | } 17 | ], 18 | "info" : { 19 | "version" : 1, 20 | "author" : "xcode" 21 | } 22 | } -------------------------------------------------------------------------------- /Tuan/Images.xcassets/Detail/icon_deal_timer.imageset/icon_deal_timer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValiantCat/Tuan/a10214b9bcb58aef99bb51b05d7df825c3ccb326/Tuan/Images.xcassets/Detail/icon_deal_timer.imageset/icon_deal_timer.png -------------------------------------------------------------------------------- /Tuan/Images.xcassets/Detail/icon_deal_timer.imageset/icon_deal_timer@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValiantCat/Tuan/a10214b9bcb58aef99bb51b05d7df825c3ccb326/Tuan/Images.xcassets/Detail/icon_deal_timer.imageset/icon_deal_timer@2x.png -------------------------------------------------------------------------------- /Tuan/Images.xcassets/Detail/icon_detail_address.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x", 6 | "filename" : "icon_detail_address.png" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x", 11 | "filename" : "icon_detail_address@2x.png" 12 | }, 13 | { 14 | "idiom" : "universal", 15 | "scale" : "3x" 16 | } 17 | ], 18 | "info" : { 19 | "version" : 1, 20 | "author" : "xcode" 21 | } 22 | } -------------------------------------------------------------------------------- /Tuan/Images.xcassets/Detail/icon_detail_address.imageset/icon_detail_address.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValiantCat/Tuan/a10214b9bcb58aef99bb51b05d7df825c3ccb326/Tuan/Images.xcassets/Detail/icon_detail_address.imageset/icon_detail_address.png -------------------------------------------------------------------------------- /Tuan/Images.xcassets/Detail/icon_detail_address.imageset/icon_detail_address@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValiantCat/Tuan/a10214b9bcb58aef99bb51b05d7df825c3ccb326/Tuan/Images.xcassets/Detail/icon_detail_address.imageset/icon_detail_address@2x.png -------------------------------------------------------------------------------- /Tuan/Images.xcassets/Detail/icon_detail_basic.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x", 6 | "filename" : "icon_detail_basic.png" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x", 11 | "filename" : "icon_detail_basic@2x.png" 12 | }, 13 | { 14 | "idiom" : "universal", 15 | "scale" : "3x" 16 | } 17 | ], 18 | "info" : { 19 | "version" : 1, 20 | "author" : "xcode" 21 | } 22 | } -------------------------------------------------------------------------------- /Tuan/Images.xcassets/Detail/icon_detail_basic.imageset/icon_detail_basic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValiantCat/Tuan/a10214b9bcb58aef99bb51b05d7df825c3ccb326/Tuan/Images.xcassets/Detail/icon_detail_basic.imageset/icon_detail_basic.png -------------------------------------------------------------------------------- /Tuan/Images.xcassets/Detail/icon_detail_basic.imageset/icon_detail_basic@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValiantCat/Tuan/a10214b9bcb58aef99bb51b05d7df825c3ccb326/Tuan/Images.xcassets/Detail/icon_detail_basic.imageset/icon_detail_basic@2x.png -------------------------------------------------------------------------------- /Tuan/Images.xcassets/Detail/icon_detail_basic_selected.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x", 6 | "filename" : "icon_detail_basic_selected.png" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x", 11 | "filename" : "icon_detail_basic_selected@2x.png" 12 | }, 13 | { 14 | "idiom" : "universal", 15 | "scale" : "3x" 16 | } 17 | ], 18 | "info" : { 19 | "version" : 1, 20 | "author" : "xcode" 21 | } 22 | } -------------------------------------------------------------------------------- /Tuan/Images.xcassets/Detail/icon_detail_basic_selected.imageset/icon_detail_basic_selected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValiantCat/Tuan/a10214b9bcb58aef99bb51b05d7df825c3ccb326/Tuan/Images.xcassets/Detail/icon_detail_basic_selected.imageset/icon_detail_basic_selected.png -------------------------------------------------------------------------------- /Tuan/Images.xcassets/Detail/icon_detail_basic_selected.imageset/icon_detail_basic_selected@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValiantCat/Tuan/a10214b9bcb58aef99bb51b05d7df825c3ccb326/Tuan/Images.xcassets/Detail/icon_detail_basic_selected.imageset/icon_detail_basic_selected@2x.png -------------------------------------------------------------------------------- /Tuan/Images.xcassets/Detail/icon_detail_branches.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x", 6 | "filename" : "icon_detail_branches.png" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x", 11 | "filename" : "icon_detail_branches@2x.png" 12 | }, 13 | { 14 | "idiom" : "universal", 15 | "scale" : "3x" 16 | } 17 | ], 18 | "info" : { 19 | "version" : 1, 20 | "author" : "xcode" 21 | } 22 | } -------------------------------------------------------------------------------- /Tuan/Images.xcassets/Detail/icon_detail_branches.imageset/icon_detail_branches.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValiantCat/Tuan/a10214b9bcb58aef99bb51b05d7df825c3ccb326/Tuan/Images.xcassets/Detail/icon_detail_branches.imageset/icon_detail_branches.png -------------------------------------------------------------------------------- /Tuan/Images.xcassets/Detail/icon_detail_branches.imageset/icon_detail_branches@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValiantCat/Tuan/a10214b9bcb58aef99bb51b05d7df825c3ccb326/Tuan/Images.xcassets/Detail/icon_detail_branches.imageset/icon_detail_branches@2x.png -------------------------------------------------------------------------------- /Tuan/Images.xcassets/Detail/icon_detail_comment.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x", 6 | "filename" : "icon_detail_comment.png" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x", 11 | "filename" : "icon_detail_comment@2x.png" 12 | }, 13 | { 14 | "idiom" : "universal", 15 | "scale" : "3x" 16 | } 17 | ], 18 | "info" : { 19 | "version" : 1, 20 | "author" : "xcode" 21 | } 22 | } -------------------------------------------------------------------------------- /Tuan/Images.xcassets/Detail/icon_detail_comment.imageset/icon_detail_comment.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValiantCat/Tuan/a10214b9bcb58aef99bb51b05d7df825c3ccb326/Tuan/Images.xcassets/Detail/icon_detail_comment.imageset/icon_detail_comment.png -------------------------------------------------------------------------------- /Tuan/Images.xcassets/Detail/icon_detail_comment.imageset/icon_detail_comment@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValiantCat/Tuan/a10214b9bcb58aef99bb51b05d7df825c3ccb326/Tuan/Images.xcassets/Detail/icon_detail_comment.imageset/icon_detail_comment@2x.png -------------------------------------------------------------------------------- /Tuan/Images.xcassets/Detail/icon_detail_merchants.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x", 6 | "filename" : "icon_detail_merchants.png" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x", 11 | "filename" : "icon_detail_merchants@2x.png" 12 | }, 13 | { 14 | "idiom" : "universal", 15 | "scale" : "3x" 16 | } 17 | ], 18 | "info" : { 19 | "version" : 1, 20 | "author" : "xcode" 21 | } 22 | } -------------------------------------------------------------------------------- /Tuan/Images.xcassets/Detail/icon_detail_merchants.imageset/icon_detail_merchants.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValiantCat/Tuan/a10214b9bcb58aef99bb51b05d7df825c3ccb326/Tuan/Images.xcassets/Detail/icon_detail_merchants.imageset/icon_detail_merchants.png -------------------------------------------------------------------------------- /Tuan/Images.xcassets/Detail/icon_detail_merchants.imageset/icon_detail_merchants@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValiantCat/Tuan/a10214b9bcb58aef99bb51b05d7df825c3ccb326/Tuan/Images.xcassets/Detail/icon_detail_merchants.imageset/icon_detail_merchants@2x.png -------------------------------------------------------------------------------- /Tuan/Images.xcassets/Detail/icon_detail_merchants_selected.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x", 6 | "filename" : "icon_detail_merchants_selected.png" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x", 11 | "filename" : "icon_detail_merchants_selected@2x.png" 12 | }, 13 | { 14 | "idiom" : "universal", 15 | "scale" : "3x" 16 | } 17 | ], 18 | "info" : { 19 | "version" : 1, 20 | "author" : "xcode" 21 | } 22 | } -------------------------------------------------------------------------------- /Tuan/Images.xcassets/Detail/icon_detail_merchants_selected.imageset/icon_detail_merchants_selected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValiantCat/Tuan/a10214b9bcb58aef99bb51b05d7df825c3ccb326/Tuan/Images.xcassets/Detail/icon_detail_merchants_selected.imageset/icon_detail_merchants_selected.png -------------------------------------------------------------------------------- /Tuan/Images.xcassets/Detail/icon_detail_merchants_selected.imageset/icon_detail_merchants_selected@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValiantCat/Tuan/a10214b9bcb58aef99bb51b05d7df825c3ccb326/Tuan/Images.xcassets/Detail/icon_detail_merchants_selected.imageset/icon_detail_merchants_selected@2x.png -------------------------------------------------------------------------------- /Tuan/Images.xcassets/Detail/icon_detail_phone.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x", 6 | "filename" : "icon_detail_phone.png" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x", 11 | "filename" : "icon_detail_phone@2x.png" 12 | }, 13 | { 14 | "idiom" : "universal", 15 | "scale" : "3x" 16 | } 17 | ], 18 | "info" : { 19 | "version" : 1, 20 | "author" : "xcode" 21 | } 22 | } -------------------------------------------------------------------------------- /Tuan/Images.xcassets/Detail/icon_detail_phone.imageset/icon_detail_phone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValiantCat/Tuan/a10214b9bcb58aef99bb51b05d7df825c3ccb326/Tuan/Images.xcassets/Detail/icon_detail_phone.imageset/icon_detail_phone.png -------------------------------------------------------------------------------- /Tuan/Images.xcassets/Detail/icon_detail_phone.imageset/icon_detail_phone@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValiantCat/Tuan/a10214b9bcb58aef99bb51b05d7df825c3ccb326/Tuan/Images.xcassets/Detail/icon_detail_phone.imageset/icon_detail_phone@2x.png -------------------------------------------------------------------------------- /Tuan/Images.xcassets/Detail/icon_detail_reviews.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x", 6 | "filename" : "icon_detail_reviews.png" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x", 11 | "filename" : "icon_detail_reviews@2x.png" 12 | }, 13 | { 14 | "idiom" : "universal", 15 | "scale" : "3x" 16 | } 17 | ], 18 | "info" : { 19 | "version" : 1, 20 | "author" : "xcode" 21 | } 22 | } -------------------------------------------------------------------------------- /Tuan/Images.xcassets/Detail/icon_detail_reviews.imageset/icon_detail_reviews.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValiantCat/Tuan/a10214b9bcb58aef99bb51b05d7df825c3ccb326/Tuan/Images.xcassets/Detail/icon_detail_reviews.imageset/icon_detail_reviews.png -------------------------------------------------------------------------------- /Tuan/Images.xcassets/Detail/icon_detail_reviews.imageset/icon_detail_reviews@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValiantCat/Tuan/a10214b9bcb58aef99bb51b05d7df825c3ccb326/Tuan/Images.xcassets/Detail/icon_detail_reviews.imageset/icon_detail_reviews@2x.png -------------------------------------------------------------------------------- /Tuan/Images.xcassets/Detail/icon_detail_reviews_selected.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x", 6 | "filename" : "icon_detail_reviews_selected.png" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x", 11 | "filename" : "icon_detail_reviews_selected@2x.png" 12 | }, 13 | { 14 | "idiom" : "universal", 15 | "scale" : "3x" 16 | } 17 | ], 18 | "info" : { 19 | "version" : 1, 20 | "author" : "xcode" 21 | } 22 | } -------------------------------------------------------------------------------- /Tuan/Images.xcassets/Detail/icon_detail_reviews_selected.imageset/icon_detail_reviews_selected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValiantCat/Tuan/a10214b9bcb58aef99bb51b05d7df825c3ccb326/Tuan/Images.xcassets/Detail/icon_detail_reviews_selected.imageset/icon_detail_reviews_selected.png -------------------------------------------------------------------------------- /Tuan/Images.xcassets/Detail/icon_detail_reviews_selected.imageset/icon_detail_reviews_selected@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValiantCat/Tuan/a10214b9bcb58aef99bb51b05d7df825c3ccb326/Tuan/Images.xcassets/Detail/icon_detail_reviews_selected.imageset/icon_detail_reviews_selected@2x.png -------------------------------------------------------------------------------- /Tuan/Images.xcassets/Detail/icon_detail_showtimes.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x", 6 | "filename" : "icon_detail_showtimes.png" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x", 11 | "filename" : "icon_detail_showtimes@2x.png" 12 | }, 13 | { 14 | "idiom" : "universal", 15 | "scale" : "3x" 16 | } 17 | ], 18 | "info" : { 19 | "version" : 1, 20 | "author" : "xcode" 21 | } 22 | } -------------------------------------------------------------------------------- /Tuan/Images.xcassets/Detail/icon_detail_showtimes.imageset/icon_detail_showtimes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValiantCat/Tuan/a10214b9bcb58aef99bb51b05d7df825c3ccb326/Tuan/Images.xcassets/Detail/icon_detail_showtimes.imageset/icon_detail_showtimes.png -------------------------------------------------------------------------------- /Tuan/Images.xcassets/Detail/icon_detail_showtimes.imageset/icon_detail_showtimes@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValiantCat/Tuan/a10214b9bcb58aef99bb51b05d7df825c3ccb326/Tuan/Images.xcassets/Detail/icon_detail_showtimes.imageset/icon_detail_showtimes@2x.png -------------------------------------------------------------------------------- /Tuan/Images.xcassets/Detail/icon_detail_showtimes_selected.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x", 6 | "filename" : "icon_detail_showtimes_selected.png" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x", 11 | "filename" : "icon_detail_showtimes_selected@2x.png" 12 | }, 13 | { 14 | "idiom" : "universal", 15 | "scale" : "3x" 16 | } 17 | ], 18 | "info" : { 19 | "version" : 1, 20 | "author" : "xcode" 21 | } 22 | } -------------------------------------------------------------------------------- /Tuan/Images.xcassets/Detail/icon_detail_showtimes_selected.imageset/icon_detail_showtimes_selected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValiantCat/Tuan/a10214b9bcb58aef99bb51b05d7df825c3ccb326/Tuan/Images.xcassets/Detail/icon_detail_showtimes_selected.imageset/icon_detail_showtimes_selected.png -------------------------------------------------------------------------------- /Tuan/Images.xcassets/Detail/icon_detail_showtimes_selected.imageset/icon_detail_showtimes_selected@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValiantCat/Tuan/a10214b9bcb58aef99bb51b05d7df825c3ccb326/Tuan/Images.xcassets/Detail/icon_detail_showtimes_selected.imageset/icon_detail_showtimes_selected@2x.png -------------------------------------------------------------------------------- /Tuan/Images.xcassets/Detail/icon_order_refundable.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x" 6 | }, 7 | { 8 | "idiom" : "universal", 9 | "scale" : "2x", 10 | "filename" : "icon_order_refundable@2x.png" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /Tuan/Images.xcassets/Detail/icon_order_refundable.imageset/icon_order_refundable@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValiantCat/Tuan/a10214b9bcb58aef99bb51b05d7df825c3ccb326/Tuan/Images.xcassets/Detail/icon_order_refundable.imageset/icon_order_refundable@2x.png -------------------------------------------------------------------------------- /Tuan/Images.xcassets/Detail/icon_order_unrefundable.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x" 6 | }, 7 | { 8 | "idiom" : "universal", 9 | "scale" : "2x", 10 | "filename" : "icon_order_unrefundable@2x.png" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /Tuan/Images.xcassets/Detail/icon_order_unrefundable.imageset/icon_order_unrefundable@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValiantCat/Tuan/a10214b9bcb58aef99bb51b05d7df825c3ccb326/Tuan/Images.xcassets/Detail/icon_order_unrefundable.imageset/icon_order_unrefundable@2x.png -------------------------------------------------------------------------------- /Tuan/Images.xcassets/Detail/icon_share.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x", 6 | "filename" : "icon_share.png" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x", 11 | "filename" : "icon_share@2x.png" 12 | }, 13 | { 14 | "idiom" : "universal", 15 | "scale" : "3x" 16 | } 17 | ], 18 | "info" : { 19 | "version" : 1, 20 | "author" : "xcode" 21 | } 22 | } -------------------------------------------------------------------------------- /Tuan/Images.xcassets/Detail/icon_share.imageset/icon_share.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValiantCat/Tuan/a10214b9bcb58aef99bb51b05d7df825c3ccb326/Tuan/Images.xcassets/Detail/icon_share.imageset/icon_share.png -------------------------------------------------------------------------------- /Tuan/Images.xcassets/Detail/icon_share.imageset/icon_share@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValiantCat/Tuan/a10214b9bcb58aef99bb51b05d7df825c3ccb326/Tuan/Images.xcassets/Detail/icon_share.imageset/icon_share@2x.png -------------------------------------------------------------------------------- /Tuan/Images.xcassets/Detail/icon_share_highlighted.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x", 6 | "filename" : "icon_share_highlighted.png" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x", 11 | "filename" : "icon_share_highlighted@2x.png" 12 | }, 13 | { 14 | "idiom" : "universal", 15 | "scale" : "3x" 16 | } 17 | ], 18 | "info" : { 19 | "version" : 1, 20 | "author" : "xcode" 21 | } 22 | } -------------------------------------------------------------------------------- /Tuan/Images.xcassets/Detail/icon_share_highlighted.imageset/icon_share_highlighted.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValiantCat/Tuan/a10214b9bcb58aef99bb51b05d7df825c3ccb326/Tuan/Images.xcassets/Detail/icon_share_highlighted.imageset/icon_share_highlighted.png -------------------------------------------------------------------------------- /Tuan/Images.xcassets/Detail/icon_share_highlighted.imageset/icon_share_highlighted@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValiantCat/Tuan/a10214b9bcb58aef99bb51b05d7df825c3ccb326/Tuan/Images.xcassets/Detail/icon_share_highlighted.imageset/icon_share_highlighted@2x.png -------------------------------------------------------------------------------- /Tuan/Images.xcassets/Dropdown/bg_dropdown_left_selected.imageset/bg_dropdown_left_selected@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValiantCat/Tuan/a10214b9bcb58aef99bb51b05d7df825c3ccb326/Tuan/Images.xcassets/Dropdown/bg_dropdown_left_selected.imageset/bg_dropdown_left_selected@2x.png -------------------------------------------------------------------------------- /Tuan/Images.xcassets/Dropdown/bg_dropdown_leftpart.imageset/bg_dropdown_leftpart@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValiantCat/Tuan/a10214b9bcb58aef99bb51b05d7df825c3ccb326/Tuan/Images.xcassets/Dropdown/bg_dropdown_leftpart.imageset/bg_dropdown_leftpart@2x.png -------------------------------------------------------------------------------- /Tuan/Images.xcassets/Dropdown/bg_dropdown_right_selected.imageset/bg_dropdown_right_selected@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValiantCat/Tuan/a10214b9bcb58aef99bb51b05d7df825c3ccb326/Tuan/Images.xcassets/Dropdown/bg_dropdown_right_selected.imageset/bg_dropdown_right_selected@2x.png -------------------------------------------------------------------------------- /Tuan/Images.xcassets/Dropdown/bg_dropdown_rightpart.imageset/bg_dropdown_rightpart@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValiantCat/Tuan/a10214b9bcb58aef99bb51b05d7df825c3ccb326/Tuan/Images.xcassets/Dropdown/bg_dropdown_rightpart.imageset/bg_dropdown_rightpart@2x.png -------------------------------------------------------------------------------- /Tuan/Images.xcassets/Icon/icon_cell_rightArrow.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x", 6 | "filename" : "icon_cell_rightArrow.png" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /Tuan/Images.xcassets/Icon/icon_cell_rightArrow.imageset/icon_cell_rightArrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValiantCat/Tuan/a10214b9bcb58aef99bb51b05d7df825c3ccb326/Tuan/Images.xcassets/Icon/icon_cell_rightArrow.imageset/icon_cell_rightArrow.png -------------------------------------------------------------------------------- /Tuan/Images.xcassets/Icon/icon_cell_rightArrow_disabled.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x", 6 | "filename" : "icon_cell_rightArrow_disabled.png" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /Tuan/Images.xcassets/Icon/icon_cell_rightArrow_disabled.imageset/icon_cell_rightArrow_disabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValiantCat/Tuan/a10214b9bcb58aef99bb51b05d7df825c3ccb326/Tuan/Images.xcassets/Icon/icon_cell_rightArrow_disabled.imageset/icon_cell_rightArrow_disabled.png -------------------------------------------------------------------------------- /Tuan/Images.xcassets/Icon/icon_cell_rightArrow_selected.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x", 6 | "filename" : "icon_cell_rightArrow_selected.png" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /Tuan/Images.xcassets/Icon/icon_cell_rightArrow_selected.imageset/icon_cell_rightArrow_selected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValiantCat/Tuan/a10214b9bcb58aef99bb51b05d7df825c3ccb326/Tuan/Images.xcassets/Icon/icon_cell_rightArrow_selected.imageset/icon_cell_rightArrow_selected.png -------------------------------------------------------------------------------- /Tuan/Images.xcassets/LaunchImage.launchimage/Default-Portrait@2x~ipad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValiantCat/Tuan/a10214b9bcb58aef99bb51b05d7df825c3ccb326/Tuan/Images.xcassets/LaunchImage.launchimage/Default-Portrait@2x~ipad.png -------------------------------------------------------------------------------- /Tuan/Images.xcassets/LaunchImage.launchimage/Default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValiantCat/Tuan/a10214b9bcb58aef99bb51b05d7df825c3ccb326/Tuan/Images.xcassets/LaunchImage.launchimage/Default.png -------------------------------------------------------------------------------- /Tuan/Images.xcassets/LaunchImage.launchimage/Default@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValiantCat/Tuan/a10214b9bcb58aef99bb51b05d7df825c3ccb326/Tuan/Images.xcassets/LaunchImage.launchimage/Default@2x.png -------------------------------------------------------------------------------- /Tuan/Images.xcassets/LaunchImage.launchimage/Default~ipad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValiantCat/Tuan/a10214b9bcb58aef99bb51b05d7df825c3ccb326/Tuan/Images.xcassets/LaunchImage.launchimage/Default~ipad.png -------------------------------------------------------------------------------- /Tuan/Images.xcassets/Map/ic_category_1.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x", 6 | "filename" : "ic_category_1.png" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x", 11 | "filename" : "ic_category_1@2x.png" 12 | }, 13 | { 14 | "idiom" : "universal", 15 | "scale" : "3x" 16 | } 17 | ], 18 | "info" : { 19 | "version" : 1, 20 | "author" : "xcode" 21 | } 22 | } -------------------------------------------------------------------------------- /Tuan/Images.xcassets/Map/ic_category_1.imageset/ic_category_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValiantCat/Tuan/a10214b9bcb58aef99bb51b05d7df825c3ccb326/Tuan/Images.xcassets/Map/ic_category_1.imageset/ic_category_1.png -------------------------------------------------------------------------------- /Tuan/Images.xcassets/Map/ic_category_1.imageset/ic_category_1@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValiantCat/Tuan/a10214b9bcb58aef99bb51b05d7df825c3ccb326/Tuan/Images.xcassets/Map/ic_category_1.imageset/ic_category_1@2x.png -------------------------------------------------------------------------------- /Tuan/Images.xcassets/Map/ic_category_2.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x", 6 | "filename" : "ic_category_2.png" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x", 11 | "filename" : "ic_category_2@2x.png" 12 | }, 13 | { 14 | "idiom" : "universal", 15 | "scale" : "3x" 16 | } 17 | ], 18 | "info" : { 19 | "version" : 1, 20 | "author" : "xcode" 21 | } 22 | } -------------------------------------------------------------------------------- /Tuan/Images.xcassets/Map/ic_category_2.imageset/ic_category_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValiantCat/Tuan/a10214b9bcb58aef99bb51b05d7df825c3ccb326/Tuan/Images.xcassets/Map/ic_category_2.imageset/ic_category_2.png -------------------------------------------------------------------------------- /Tuan/Images.xcassets/Map/ic_category_2.imageset/ic_category_2@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValiantCat/Tuan/a10214b9bcb58aef99bb51b05d7df825c3ccb326/Tuan/Images.xcassets/Map/ic_category_2.imageset/ic_category_2@2x.png -------------------------------------------------------------------------------- /Tuan/Images.xcassets/Map/ic_category_20.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x", 6 | "filename" : "ic_category_20.png" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x", 11 | "filename" : "ic_category_20@2x.png" 12 | }, 13 | { 14 | "idiom" : "universal", 15 | "scale" : "3x" 16 | } 17 | ], 18 | "info" : { 19 | "version" : 1, 20 | "author" : "xcode" 21 | } 22 | } -------------------------------------------------------------------------------- /Tuan/Images.xcassets/Map/ic_category_20.imageset/ic_category_20.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValiantCat/Tuan/a10214b9bcb58aef99bb51b05d7df825c3ccb326/Tuan/Images.xcassets/Map/ic_category_20.imageset/ic_category_20.png -------------------------------------------------------------------------------- /Tuan/Images.xcassets/Map/ic_category_20.imageset/ic_category_20@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValiantCat/Tuan/a10214b9bcb58aef99bb51b05d7df825c3ccb326/Tuan/Images.xcassets/Map/ic_category_20.imageset/ic_category_20@2x.png -------------------------------------------------------------------------------- /Tuan/Images.xcassets/Map/ic_category_22.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x", 6 | "filename" : "ic_category_22.png" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x", 11 | "filename" : "ic_category_22@2x.png" 12 | }, 13 | { 14 | "idiom" : "universal", 15 | "scale" : "3x" 16 | } 17 | ], 18 | "info" : { 19 | "version" : 1, 20 | "author" : "xcode" 21 | } 22 | } -------------------------------------------------------------------------------- /Tuan/Images.xcassets/Map/ic_category_22.imageset/ic_category_22.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValiantCat/Tuan/a10214b9bcb58aef99bb51b05d7df825c3ccb326/Tuan/Images.xcassets/Map/ic_category_22.imageset/ic_category_22.png -------------------------------------------------------------------------------- /Tuan/Images.xcassets/Map/ic_category_22.imageset/ic_category_22@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValiantCat/Tuan/a10214b9bcb58aef99bb51b05d7df825c3ccb326/Tuan/Images.xcassets/Map/ic_category_22.imageset/ic_category_22@2x.png -------------------------------------------------------------------------------- /Tuan/Images.xcassets/Map/ic_category_3.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x", 6 | "filename" : "ic_category_3.png" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x", 11 | "filename" : "ic_category_3@2x.png" 12 | }, 13 | { 14 | "idiom" : "universal", 15 | "scale" : "3x" 16 | } 17 | ], 18 | "info" : { 19 | "version" : 1, 20 | "author" : "xcode" 21 | } 22 | } -------------------------------------------------------------------------------- /Tuan/Images.xcassets/Map/ic_category_3.imageset/ic_category_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValiantCat/Tuan/a10214b9bcb58aef99bb51b05d7df825c3ccb326/Tuan/Images.xcassets/Map/ic_category_3.imageset/ic_category_3.png -------------------------------------------------------------------------------- /Tuan/Images.xcassets/Map/ic_category_3.imageset/ic_category_3@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValiantCat/Tuan/a10214b9bcb58aef99bb51b05d7df825c3ccb326/Tuan/Images.xcassets/Map/ic_category_3.imageset/ic_category_3@2x.png -------------------------------------------------------------------------------- /Tuan/Images.xcassets/Map/ic_category_4.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x", 6 | "filename" : "ic_category_4.png" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x", 11 | "filename" : "ic_category_4@2x.png" 12 | }, 13 | { 14 | "idiom" : "universal", 15 | "scale" : "3x" 16 | } 17 | ], 18 | "info" : { 19 | "version" : 1, 20 | "author" : "xcode" 21 | } 22 | } -------------------------------------------------------------------------------- /Tuan/Images.xcassets/Map/ic_category_4.imageset/ic_category_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValiantCat/Tuan/a10214b9bcb58aef99bb51b05d7df825c3ccb326/Tuan/Images.xcassets/Map/ic_category_4.imageset/ic_category_4.png -------------------------------------------------------------------------------- /Tuan/Images.xcassets/Map/ic_category_4.imageset/ic_category_4@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValiantCat/Tuan/a10214b9bcb58aef99bb51b05d7df825c3ccb326/Tuan/Images.xcassets/Map/ic_category_4.imageset/ic_category_4@2x.png -------------------------------------------------------------------------------- /Tuan/Images.xcassets/Map/ic_category_78.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x", 6 | "filename" : "ic_category_78.png" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x", 11 | "filename" : "ic_category_78@2x.png" 12 | }, 13 | { 14 | "idiom" : "universal", 15 | "scale" : "3x" 16 | } 17 | ], 18 | "info" : { 19 | "version" : 1, 20 | "author" : "xcode" 21 | } 22 | } -------------------------------------------------------------------------------- /Tuan/Images.xcassets/Map/ic_category_78.imageset/ic_category_78.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValiantCat/Tuan/a10214b9bcb58aef99bb51b05d7df825c3ccb326/Tuan/Images.xcassets/Map/ic_category_78.imageset/ic_category_78.png -------------------------------------------------------------------------------- /Tuan/Images.xcassets/Map/ic_category_78.imageset/ic_category_78@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValiantCat/Tuan/a10214b9bcb58aef99bb51b05d7df825c3ccb326/Tuan/Images.xcassets/Map/ic_category_78.imageset/ic_category_78@2x.png -------------------------------------------------------------------------------- /Tuan/Images.xcassets/Map/ic_category_99.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x", 6 | "filename" : "ic_category_99.png" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x", 11 | "filename" : "ic_category_99@2x.png" 12 | }, 13 | { 14 | "idiom" : "universal", 15 | "scale" : "3x" 16 | } 17 | ], 18 | "info" : { 19 | "version" : 1, 20 | "author" : "xcode" 21 | } 22 | } -------------------------------------------------------------------------------- /Tuan/Images.xcassets/Map/ic_category_99.imageset/ic_category_99.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValiantCat/Tuan/a10214b9bcb58aef99bb51b05d7df825c3ccb326/Tuan/Images.xcassets/Map/ic_category_99.imageset/ic_category_99.png -------------------------------------------------------------------------------- /Tuan/Images.xcassets/Map/ic_category_99.imageset/ic_category_99@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValiantCat/Tuan/a10214b9bcb58aef99bb51b05d7df825c3ccb326/Tuan/Images.xcassets/Map/ic_category_99.imageset/ic_category_99@2x.png -------------------------------------------------------------------------------- /Tuan/Images.xcassets/Map/ic_category_default.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x", 6 | "filename" : "ic_category_default.png" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x", 11 | "filename" : "ic_category_default@2x.png" 12 | }, 13 | { 14 | "idiom" : "universal", 15 | "scale" : "3x" 16 | } 17 | ], 18 | "info" : { 19 | "version" : 1, 20 | "author" : "xcode" 21 | } 22 | } -------------------------------------------------------------------------------- /Tuan/Images.xcassets/Map/ic_category_default.imageset/ic_category_default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValiantCat/Tuan/a10214b9bcb58aef99bb51b05d7df825c3ccb326/Tuan/Images.xcassets/Map/ic_category_default.imageset/ic_category_default.png -------------------------------------------------------------------------------- /Tuan/Images.xcassets/Map/ic_category_default.imageset/ic_category_default@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValiantCat/Tuan/a10214b9bcb58aef99bb51b05d7df825c3ccb326/Tuan/Images.xcassets/Map/ic_category_default.imageset/ic_category_default@2x.png -------------------------------------------------------------------------------- /Tuan/Images.xcassets/Map/icon_map_location.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x" 6 | }, 7 | { 8 | "idiom" : "universal", 9 | "scale" : "2x", 10 | "filename" : "icon_map_location@2x.png" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /Tuan/Images.xcassets/Map/icon_map_location.imageset/icon_map_location@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValiantCat/Tuan/a10214b9bcb58aef99bb51b05d7df825c3ccb326/Tuan/Images.xcassets/Map/icon_map_location.imageset/icon_map_location@2x.png -------------------------------------------------------------------------------- /Tuan/Images.xcassets/Map/icon_map_location_highlighted.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x" 6 | }, 7 | { 8 | "idiom" : "universal", 9 | "scale" : "2x", 10 | "filename" : "icon_map_location_highlighted@2x.png" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /Tuan/Images.xcassets/Map/icon_map_location_highlighted.imageset/icon_map_location_highlighted@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValiantCat/Tuan/a10214b9bcb58aef99bb51b05d7df825c3ccb326/Tuan/Images.xcassets/Map/icon_map_location_highlighted.imageset/icon_map_location_highlighted@2x.png -------------------------------------------------------------------------------- /Tuan/Images.xcassets/Map/icon_map_refresh.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x" 6 | }, 7 | { 8 | "idiom" : "universal", 9 | "scale" : "2x", 10 | "filename" : "icon_map_refresh@2x.png" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /Tuan/Images.xcassets/Map/icon_map_refresh.imageset/icon_map_refresh@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValiantCat/Tuan/a10214b9bcb58aef99bb51b05d7df825c3ccb326/Tuan/Images.xcassets/Map/icon_map_refresh.imageset/icon_map_refresh@2x.png -------------------------------------------------------------------------------- /Tuan/Images.xcassets/Map/icon_map_refresh_highlighted.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x" 6 | }, 7 | { 8 | "idiom" : "universal", 9 | "scale" : "2x", 10 | "filename" : "icon_map_refresh_highlighted@2x.png" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /Tuan/Images.xcassets/Map/icon_map_refresh_highlighted.imageset/icon_map_refresh_highlighted@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValiantCat/Tuan/a10214b9bcb58aef99bb51b05d7df825c3ccb326/Tuan/Images.xcassets/Map/icon_map_refresh_highlighted.imageset/icon_map_refresh_highlighted@2x.png -------------------------------------------------------------------------------- /Tuan/Images.xcassets/Nav/bg_navigationBar_normal.imageset/bg_navigationBar_normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValiantCat/Tuan/a10214b9bcb58aef99bb51b05d7df825c3ccb326/Tuan/Images.xcassets/Nav/bg_navigationBar_normal.imageset/bg_navigationBar_normal.png -------------------------------------------------------------------------------- /Tuan/Images.xcassets/Nav/btn_changeCity.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x", 6 | "filename" : "btn_changeCity.png" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x", 11 | "filename" : "btn_changeCity@2x.png" 12 | }, 13 | { 14 | "idiom" : "universal", 15 | "scale" : "3x" 16 | } 17 | ], 18 | "info" : { 19 | "version" : 1, 20 | "author" : "xcode" 21 | } 22 | } -------------------------------------------------------------------------------- /Tuan/Images.xcassets/Nav/btn_changeCity.imageset/btn_changeCity.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValiantCat/Tuan/a10214b9bcb58aef99bb51b05d7df825c3ccb326/Tuan/Images.xcassets/Nav/btn_changeCity.imageset/btn_changeCity.png -------------------------------------------------------------------------------- /Tuan/Images.xcassets/Nav/btn_changeCity.imageset/btn_changeCity@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValiantCat/Tuan/a10214b9bcb58aef99bb51b05d7df825c3ccb326/Tuan/Images.xcassets/Nav/btn_changeCity.imageset/btn_changeCity@2x.png -------------------------------------------------------------------------------- /Tuan/Images.xcassets/Nav/btn_changeCity_selected.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x", 6 | "filename" : "btn_changeCity_selected.png" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x", 11 | "filename" : "btn_changeCity_selected@2x.png" 12 | }, 13 | { 14 | "idiom" : "universal", 15 | "scale" : "3x" 16 | } 17 | ], 18 | "info" : { 19 | "version" : 1, 20 | "author" : "xcode" 21 | } 22 | } -------------------------------------------------------------------------------- /Tuan/Images.xcassets/Nav/btn_changeCity_selected.imageset/btn_changeCity_selected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValiantCat/Tuan/a10214b9bcb58aef99bb51b05d7df825c3ccb326/Tuan/Images.xcassets/Nav/btn_changeCity_selected.imageset/btn_changeCity_selected.png -------------------------------------------------------------------------------- /Tuan/Images.xcassets/Nav/btn_changeCity_selected.imageset/btn_changeCity_selected@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValiantCat/Tuan/a10214b9bcb58aef99bb51b05d7df825c3ccb326/Tuan/Images.xcassets/Nav/btn_changeCity_selected.imageset/btn_changeCity_selected@2x.png -------------------------------------------------------------------------------- /Tuan/Images.xcassets/Nav/btn_navigation_close.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x", 6 | "filename" : "btn_navigation_close.png" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x", 11 | "filename" : "btn_navigation_close@2x.png" 12 | }, 13 | { 14 | "idiom" : "universal", 15 | "scale" : "3x" 16 | } 17 | ], 18 | "info" : { 19 | "version" : 1, 20 | "author" : "xcode" 21 | } 22 | } -------------------------------------------------------------------------------- /Tuan/Images.xcassets/Nav/btn_navigation_close.imageset/btn_navigation_close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValiantCat/Tuan/a10214b9bcb58aef99bb51b05d7df825c3ccb326/Tuan/Images.xcassets/Nav/btn_navigation_close.imageset/btn_navigation_close.png -------------------------------------------------------------------------------- /Tuan/Images.xcassets/Nav/btn_navigation_close.imageset/btn_navigation_close@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValiantCat/Tuan/a10214b9bcb58aef99bb51b05d7df825c3ccb326/Tuan/Images.xcassets/Nav/btn_navigation_close.imageset/btn_navigation_close@2x.png -------------------------------------------------------------------------------- /Tuan/Images.xcassets/Nav/btn_navigation_close_hl.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x", 6 | "filename" : "btn_navigation_close_hl.png" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x", 11 | "filename" : "btn_navigation_close_hl@2x.png" 12 | }, 13 | { 14 | "idiom" : "universal", 15 | "scale" : "3x" 16 | } 17 | ], 18 | "info" : { 19 | "version" : 1, 20 | "author" : "xcode" 21 | } 22 | } -------------------------------------------------------------------------------- /Tuan/Images.xcassets/Nav/btn_navigation_close_hl.imageset/btn_navigation_close_hl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValiantCat/Tuan/a10214b9bcb58aef99bb51b05d7df825c3ccb326/Tuan/Images.xcassets/Nav/btn_navigation_close_hl.imageset/btn_navigation_close_hl.png -------------------------------------------------------------------------------- /Tuan/Images.xcassets/Nav/btn_navigation_close_hl.imageset/btn_navigation_close_hl@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValiantCat/Tuan/a10214b9bcb58aef99bb51b05d7df825c3ccb326/Tuan/Images.xcassets/Nav/btn_navigation_close_hl.imageset/btn_navigation_close_hl@2x.png -------------------------------------------------------------------------------- /Tuan/Images.xcassets/Nav/btn_search.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x", 6 | "filename" : "btn_search.png" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x", 11 | "filename" : "btn_search@2x.png" 12 | }, 13 | { 14 | "idiom" : "universal", 15 | "scale" : "3x" 16 | } 17 | ], 18 | "info" : { 19 | "version" : 1, 20 | "author" : "xcode" 21 | } 22 | } -------------------------------------------------------------------------------- /Tuan/Images.xcassets/Nav/btn_search.imageset/btn_search.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValiantCat/Tuan/a10214b9bcb58aef99bb51b05d7df825c3ccb326/Tuan/Images.xcassets/Nav/btn_search.imageset/btn_search.png -------------------------------------------------------------------------------- /Tuan/Images.xcassets/Nav/btn_search.imageset/btn_search@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValiantCat/Tuan/a10214b9bcb58aef99bb51b05d7df825c3ccb326/Tuan/Images.xcassets/Nav/btn_search.imageset/btn_search@2x.png -------------------------------------------------------------------------------- /Tuan/Images.xcassets/Nav/icon_back.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x", 6 | "filename" : "icon_back.png" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x", 11 | "filename" : "icon_back@2x.png" 12 | }, 13 | { 14 | "idiom" : "universal", 15 | "scale" : "3x" 16 | } 17 | ], 18 | "info" : { 19 | "version" : 1, 20 | "author" : "xcode" 21 | } 22 | } -------------------------------------------------------------------------------- /Tuan/Images.xcassets/Nav/icon_back.imageset/icon_back.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValiantCat/Tuan/a10214b9bcb58aef99bb51b05d7df825c3ccb326/Tuan/Images.xcassets/Nav/icon_back.imageset/icon_back.png -------------------------------------------------------------------------------- /Tuan/Images.xcassets/Nav/icon_back.imageset/icon_back@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValiantCat/Tuan/a10214b9bcb58aef99bb51b05d7df825c3ccb326/Tuan/Images.xcassets/Nav/icon_back.imageset/icon_back@2x.png -------------------------------------------------------------------------------- /Tuan/Images.xcassets/Nav/icon_back_highlighted.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x", 6 | "filename" : "icon_back_highlighted.png" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x", 11 | "filename" : "icon_back_highlighted@2x.png" 12 | }, 13 | { 14 | "idiom" : "universal", 15 | "scale" : "3x" 16 | } 17 | ], 18 | "info" : { 19 | "version" : 1, 20 | "author" : "xcode" 21 | } 22 | } -------------------------------------------------------------------------------- /Tuan/Images.xcassets/Nav/icon_back_highlighted.imageset/icon_back_highlighted.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValiantCat/Tuan/a10214b9bcb58aef99bb51b05d7df825c3ccb326/Tuan/Images.xcassets/Nav/icon_back_highlighted.imageset/icon_back_highlighted.png -------------------------------------------------------------------------------- /Tuan/Images.xcassets/Nav/icon_back_highlighted.imageset/icon_back_highlighted@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValiantCat/Tuan/a10214b9bcb58aef99bb51b05d7df825c3ccb326/Tuan/Images.xcassets/Nav/icon_back_highlighted.imageset/icon_back_highlighted@2x.png -------------------------------------------------------------------------------- /Tuan/Images.xcassets/Nav/icon_district.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x", 6 | "filename" : "icon_district.png" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x", 11 | "filename" : "icon_district@2x.png" 12 | }, 13 | { 14 | "idiom" : "universal", 15 | "scale" : "3x" 16 | } 17 | ], 18 | "info" : { 19 | "version" : 1, 20 | "author" : "xcode" 21 | } 22 | } -------------------------------------------------------------------------------- /Tuan/Images.xcassets/Nav/icon_district.imageset/icon_district.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValiantCat/Tuan/a10214b9bcb58aef99bb51b05d7df825c3ccb326/Tuan/Images.xcassets/Nav/icon_district.imageset/icon_district.png -------------------------------------------------------------------------------- /Tuan/Images.xcassets/Nav/icon_district.imageset/icon_district@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValiantCat/Tuan/a10214b9bcb58aef99bb51b05d7df825c3ccb326/Tuan/Images.xcassets/Nav/icon_district.imageset/icon_district@2x.png -------------------------------------------------------------------------------- /Tuan/Images.xcassets/Nav/icon_district_highlighted.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x", 6 | "filename" : "icon_district_highlighted.png" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x", 11 | "filename" : "icon_district_highlighted@2x.png" 12 | }, 13 | { 14 | "idiom" : "universal", 15 | "scale" : "3x" 16 | } 17 | ], 18 | "info" : { 19 | "version" : 1, 20 | "author" : "xcode" 21 | } 22 | } -------------------------------------------------------------------------------- /Tuan/Images.xcassets/Nav/icon_district_highlighted.imageset/icon_district_highlighted.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValiantCat/Tuan/a10214b9bcb58aef99bb51b05d7df825c3ccb326/Tuan/Images.xcassets/Nav/icon_district_highlighted.imageset/icon_district_highlighted.png -------------------------------------------------------------------------------- /Tuan/Images.xcassets/Nav/icon_district_highlighted.imageset/icon_district_highlighted@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValiantCat/Tuan/a10214b9bcb58aef99bb51b05d7df825c3ccb326/Tuan/Images.xcassets/Nav/icon_district_highlighted.imageset/icon_district_highlighted@2x.png -------------------------------------------------------------------------------- /Tuan/Images.xcassets/Nav/icon_map.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x", 6 | "filename" : "icon_map.png" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x", 11 | "filename" : "icon_map@2x.png" 12 | }, 13 | { 14 | "idiom" : "universal", 15 | "scale" : "3x" 16 | } 17 | ], 18 | "info" : { 19 | "version" : 1, 20 | "author" : "xcode" 21 | } 22 | } -------------------------------------------------------------------------------- /Tuan/Images.xcassets/Nav/icon_map.imageset/icon_map.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValiantCat/Tuan/a10214b9bcb58aef99bb51b05d7df825c3ccb326/Tuan/Images.xcassets/Nav/icon_map.imageset/icon_map.png -------------------------------------------------------------------------------- /Tuan/Images.xcassets/Nav/icon_map.imageset/icon_map@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValiantCat/Tuan/a10214b9bcb58aef99bb51b05d7df825c3ccb326/Tuan/Images.xcassets/Nav/icon_map.imageset/icon_map@2x.png -------------------------------------------------------------------------------- /Tuan/Images.xcassets/Nav/icon_map_highlighted.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x", 6 | "filename" : "icon_map_highlighted.png" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x", 11 | "filename" : "icon_map_highlighted@2x.png" 12 | }, 13 | { 14 | "idiom" : "universal", 15 | "scale" : "3x" 16 | } 17 | ], 18 | "info" : { 19 | "version" : 1, 20 | "author" : "xcode" 21 | } 22 | } -------------------------------------------------------------------------------- /Tuan/Images.xcassets/Nav/icon_map_highlighted.imageset/icon_map_highlighted.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValiantCat/Tuan/a10214b9bcb58aef99bb51b05d7df825c3ccb326/Tuan/Images.xcassets/Nav/icon_map_highlighted.imageset/icon_map_highlighted.png -------------------------------------------------------------------------------- /Tuan/Images.xcassets/Nav/icon_map_highlighted.imageset/icon_map_highlighted@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValiantCat/Tuan/a10214b9bcb58aef99bb51b05d7df825c3ccb326/Tuan/Images.xcassets/Nav/icon_map_highlighted.imageset/icon_map_highlighted@2x.png -------------------------------------------------------------------------------- /Tuan/Images.xcassets/Nav/icon_meituan_logo.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x", 6 | "filename" : "icon_meituan_logo.png" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x", 11 | "filename" : "icon_meituan_logo@2x.png" 12 | }, 13 | { 14 | "idiom" : "universal", 15 | "scale" : "3x" 16 | } 17 | ], 18 | "info" : { 19 | "version" : 1, 20 | "author" : "xcode" 21 | } 22 | } -------------------------------------------------------------------------------- /Tuan/Images.xcassets/Nav/icon_meituan_logo.imageset/icon_meituan_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValiantCat/Tuan/a10214b9bcb58aef99bb51b05d7df825c3ccb326/Tuan/Images.xcassets/Nav/icon_meituan_logo.imageset/icon_meituan_logo.png -------------------------------------------------------------------------------- /Tuan/Images.xcassets/Nav/icon_meituan_logo.imageset/icon_meituan_logo@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValiantCat/Tuan/a10214b9bcb58aef99bb51b05d7df825c3ccb326/Tuan/Images.xcassets/Nav/icon_meituan_logo.imageset/icon_meituan_logo@2x.png -------------------------------------------------------------------------------- /Tuan/Images.xcassets/Nav/icon_search.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x", 6 | "filename" : "icon_search.png" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x", 11 | "filename" : "icon_search@2x.png" 12 | }, 13 | { 14 | "idiom" : "universal", 15 | "scale" : "3x" 16 | } 17 | ], 18 | "info" : { 19 | "version" : 1, 20 | "author" : "xcode" 21 | } 22 | } -------------------------------------------------------------------------------- /Tuan/Images.xcassets/Nav/icon_search.imageset/icon_search.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValiantCat/Tuan/a10214b9bcb58aef99bb51b05d7df825c3ccb326/Tuan/Images.xcassets/Nav/icon_search.imageset/icon_search.png -------------------------------------------------------------------------------- /Tuan/Images.xcassets/Nav/icon_search.imageset/icon_search@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValiantCat/Tuan/a10214b9bcb58aef99bb51b05d7df825c3ccb326/Tuan/Images.xcassets/Nav/icon_search.imageset/icon_search@2x.png -------------------------------------------------------------------------------- /Tuan/Images.xcassets/Nav/icon_search_highlighted.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x", 6 | "filename" : "icon_search_highlighted.png" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x", 11 | "filename" : "icon_search_highlighted@2x.png" 12 | }, 13 | { 14 | "idiom" : "universal", 15 | "scale" : "3x" 16 | } 17 | ], 18 | "info" : { 19 | "version" : 1, 20 | "author" : "xcode" 21 | } 22 | } -------------------------------------------------------------------------------- /Tuan/Images.xcassets/Nav/icon_search_highlighted.imageset/icon_search_highlighted.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValiantCat/Tuan/a10214b9bcb58aef99bb51b05d7df825c3ccb326/Tuan/Images.xcassets/Nav/icon_search_highlighted.imageset/icon_search_highlighted.png -------------------------------------------------------------------------------- /Tuan/Images.xcassets/Nav/icon_search_highlighted.imageset/icon_search_highlighted@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValiantCat/Tuan/a10214b9bcb58aef99bb51b05d7df825c3ccb326/Tuan/Images.xcassets/Nav/icon_search_highlighted.imageset/icon_search_highlighted@2x.png -------------------------------------------------------------------------------- /Tuan/Images.xcassets/Nav/icon_sort.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x", 6 | "filename" : "icon_sort.png" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x", 11 | "filename" : "icon_sort@2x.png" 12 | }, 13 | { 14 | "idiom" : "universal", 15 | "scale" : "3x" 16 | } 17 | ], 18 | "info" : { 19 | "version" : 1, 20 | "author" : "xcode" 21 | } 22 | } -------------------------------------------------------------------------------- /Tuan/Images.xcassets/Nav/icon_sort.imageset/icon_sort.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValiantCat/Tuan/a10214b9bcb58aef99bb51b05d7df825c3ccb326/Tuan/Images.xcassets/Nav/icon_sort.imageset/icon_sort.png -------------------------------------------------------------------------------- /Tuan/Images.xcassets/Nav/icon_sort.imageset/icon_sort@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValiantCat/Tuan/a10214b9bcb58aef99bb51b05d7df825c3ccb326/Tuan/Images.xcassets/Nav/icon_sort.imageset/icon_sort@2x.png -------------------------------------------------------------------------------- /Tuan/Images.xcassets/Nav/icon_sort_highlighted.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x", 6 | "filename" : "icon_sort_highlighted.png" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x", 11 | "filename" : "icon_sort_highlighted@2x.png" 12 | }, 13 | { 14 | "idiom" : "universal", 15 | "scale" : "3x" 16 | } 17 | ], 18 | "info" : { 19 | "version" : 1, 20 | "author" : "xcode" 21 | } 22 | } -------------------------------------------------------------------------------- /Tuan/Images.xcassets/Nav/icon_sort_highlighted.imageset/icon_sort_highlighted.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValiantCat/Tuan/a10214b9bcb58aef99bb51b05d7df825c3ccb326/Tuan/Images.xcassets/Nav/icon_sort_highlighted.imageset/icon_sort_highlighted.png -------------------------------------------------------------------------------- /Tuan/Images.xcassets/Nav/icon_sort_highlighted.imageset/icon_sort_highlighted@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValiantCat/Tuan/a10214b9bcb58aef99bb51b05d7df825c3ccb326/Tuan/Images.xcassets/Nav/icon_sort_highlighted.imageset/icon_sort_highlighted@2x.png -------------------------------------------------------------------------------- /Tuan/Images.xcassets/NoData/bg_rotNetwork.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x", 6 | "filename" : "bg_rotNetwork.png" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x", 11 | "filename" : "bg_rotNetwork@2x.png" 12 | }, 13 | { 14 | "idiom" : "universal", 15 | "scale" : "3x" 16 | } 17 | ], 18 | "info" : { 19 | "version" : 1, 20 | "author" : "xcode" 21 | } 22 | } -------------------------------------------------------------------------------- /Tuan/Images.xcassets/NoData/bg_rotNetwork.imageset/bg_rotNetwork.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValiantCat/Tuan/a10214b9bcb58aef99bb51b05d7df825c3ccb326/Tuan/Images.xcassets/NoData/bg_rotNetwork.imageset/bg_rotNetwork.png -------------------------------------------------------------------------------- /Tuan/Images.xcassets/NoData/bg_rotNetwork.imageset/bg_rotNetwork@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValiantCat/Tuan/a10214b9bcb58aef99bb51b05d7df825c3ccb326/Tuan/Images.xcassets/NoData/bg_rotNetwork.imageset/bg_rotNetwork@2x.png -------------------------------------------------------------------------------- /Tuan/Images.xcassets/NoData/ic_order_empty.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x", 6 | "filename" : "ic_order_empty.png" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x", 11 | "filename" : "ic_order_empty@2x.png" 12 | }, 13 | { 14 | "idiom" : "universal", 15 | "scale" : "3x" 16 | } 17 | ], 18 | "info" : { 19 | "version" : 1, 20 | "author" : "xcode" 21 | } 22 | } -------------------------------------------------------------------------------- /Tuan/Images.xcassets/NoData/ic_order_empty.imageset/ic_order_empty.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValiantCat/Tuan/a10214b9bcb58aef99bb51b05d7df825c3ccb326/Tuan/Images.xcassets/NoData/ic_order_empty.imageset/ic_order_empty.png -------------------------------------------------------------------------------- /Tuan/Images.xcassets/NoData/ic_order_empty.imageset/ic_order_empty@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValiantCat/Tuan/a10214b9bcb58aef99bb51b05d7df825c3ccb326/Tuan/Images.xcassets/NoData/ic_order_empty.imageset/ic_order_empty@2x.png -------------------------------------------------------------------------------- /Tuan/Images.xcassets/NoData/icon_cinemas_empty.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x", 6 | "filename" : "icon_cinemas_empty.png" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x", 11 | "filename" : "icon_cinemas_empty@2x.png" 12 | }, 13 | { 14 | "idiom" : "universal", 15 | "scale" : "3x" 16 | } 17 | ], 18 | "info" : { 19 | "version" : 1, 20 | "author" : "xcode" 21 | } 22 | } -------------------------------------------------------------------------------- /Tuan/Images.xcassets/NoData/icon_cinemas_empty.imageset/icon_cinemas_empty.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValiantCat/Tuan/a10214b9bcb58aef99bb51b05d7df825c3ccb326/Tuan/Images.xcassets/NoData/icon_cinemas_empty.imageset/icon_cinemas_empty.png -------------------------------------------------------------------------------- /Tuan/Images.xcassets/NoData/icon_cinemas_empty.imageset/icon_cinemas_empty@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValiantCat/Tuan/a10214b9bcb58aef99bb51b05d7df825c3ccb326/Tuan/Images.xcassets/NoData/icon_cinemas_empty.imageset/icon_cinemas_empty@2x.png -------------------------------------------------------------------------------- /Tuan/Images.xcassets/NoData/icon_collects_empty.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x", 6 | "filename" : "icon_collects_empty.png" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x", 11 | "filename" : "icon_collects_empty@2x.png" 12 | }, 13 | { 14 | "idiom" : "universal", 15 | "scale" : "3x" 16 | } 17 | ], 18 | "info" : { 19 | "version" : 1, 20 | "author" : "xcode" 21 | } 22 | } -------------------------------------------------------------------------------- /Tuan/Images.xcassets/NoData/icon_collects_empty.imageset/icon_collects_empty.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValiantCat/Tuan/a10214b9bcb58aef99bb51b05d7df825c3ccb326/Tuan/Images.xcassets/NoData/icon_collects_empty.imageset/icon_collects_empty.png -------------------------------------------------------------------------------- /Tuan/Images.xcassets/NoData/icon_collects_empty.imageset/icon_collects_empty@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValiantCat/Tuan/a10214b9bcb58aef99bb51b05d7df825c3ccb326/Tuan/Images.xcassets/NoData/icon_collects_empty.imageset/icon_collects_empty@2x.png -------------------------------------------------------------------------------- /Tuan/Images.xcassets/NoData/icon_deals_empty.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x", 6 | "filename" : "icon_deals_empty.png" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x", 11 | "filename" : "icon_deals_empty@2x.png" 12 | }, 13 | { 14 | "idiom" : "universal", 15 | "scale" : "3x" 16 | } 17 | ], 18 | "info" : { 19 | "version" : 1, 20 | "author" : "xcode" 21 | } 22 | } -------------------------------------------------------------------------------- /Tuan/Images.xcassets/NoData/icon_deals_empty.imageset/icon_deals_empty.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValiantCat/Tuan/a10214b9bcb58aef99bb51b05d7df825c3ccb326/Tuan/Images.xcassets/NoData/icon_deals_empty.imageset/icon_deals_empty.png -------------------------------------------------------------------------------- /Tuan/Images.xcassets/NoData/icon_deals_empty.imageset/icon_deals_empty@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValiantCat/Tuan/a10214b9bcb58aef99bb51b05d7df825c3ccb326/Tuan/Images.xcassets/NoData/icon_deals_empty.imageset/icon_deals_empty@2x.png -------------------------------------------------------------------------------- /Tuan/Images.xcassets/NoData/icon_latestBrowse_empty.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x", 6 | "filename" : "icon_latestBrowse_empty.png" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x", 11 | "filename" : "icon_latestBrowse_empty@2x.png" 12 | }, 13 | { 14 | "idiom" : "universal", 15 | "scale" : "3x" 16 | } 17 | ], 18 | "info" : { 19 | "version" : 1, 20 | "author" : "xcode" 21 | } 22 | } -------------------------------------------------------------------------------- /Tuan/Images.xcassets/NoData/icon_latestBrowse_empty.imageset/icon_latestBrowse_empty.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValiantCat/Tuan/a10214b9bcb58aef99bb51b05d7df825c3ccb326/Tuan/Images.xcassets/NoData/icon_latestBrowse_empty.imageset/icon_latestBrowse_empty.png -------------------------------------------------------------------------------- /Tuan/Images.xcassets/NoData/icon_latestBrowse_empty.imageset/icon_latestBrowse_empty@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValiantCat/Tuan/a10214b9bcb58aef99bb51b05d7df825c3ccb326/Tuan/Images.xcassets/NoData/icon_latestBrowse_empty.imageset/icon_latestBrowse_empty@2x.png -------------------------------------------------------------------------------- /Tuan/Images.xcassets/NoData/icon_map_search_empty.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x" 6 | }, 7 | { 8 | "idiom" : "universal", 9 | "scale" : "2x", 10 | "filename" : "icon_map_search_empty@2x.png" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /Tuan/Images.xcassets/NoData/icon_map_search_empty.imageset/icon_map_search_empty@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValiantCat/Tuan/a10214b9bcb58aef99bb51b05d7df825c3ccb326/Tuan/Images.xcassets/NoData/icon_map_search_empty.imageset/icon_map_search_empty@2x.png -------------------------------------------------------------------------------- /Tuan/Images.xcassets/Other/bg_login_textfield.imageset/bg_login_textfield.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValiantCat/Tuan/a10214b9bcb58aef99bb51b05d7df825c3ccb326/Tuan/Images.xcassets/Other/bg_login_textfield.imageset/bg_login_textfield.png -------------------------------------------------------------------------------- /Tuan/Images.xcassets/Other/bg_login_textfield.imageset/bg_login_textfield@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValiantCat/Tuan/a10214b9bcb58aef99bb51b05d7df825c3ccb326/Tuan/Images.xcassets/Other/bg_login_textfield.imageset/bg_login_textfield@2x.png -------------------------------------------------------------------------------- /Tuan/Images.xcassets/Other/bg_login_textfield_hl.imageset/bg_login_textfield_hl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValiantCat/Tuan/a10214b9bcb58aef99bb51b05d7df825c3ccb326/Tuan/Images.xcassets/Other/bg_login_textfield_hl.imageset/bg_login_textfield_hl.png -------------------------------------------------------------------------------- /Tuan/Images.xcassets/Other/bg_login_textfield_hl.imageset/bg_login_textfield_hl@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValiantCat/Tuan/a10214b9bcb58aef99bb51b05d7df825c3ccb326/Tuan/Images.xcassets/Other/bg_login_textfield_hl.imageset/bg_login_textfield_hl@2x.png -------------------------------------------------------------------------------- /Tuan/Images.xcassets/Other/share_text_frame.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x", 6 | "filename" : "share_text_frame.png" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x", 11 | "filename" : "share_text_frame@2x.png" 12 | }, 13 | { 14 | "idiom" : "universal", 15 | "scale" : "3x" 16 | } 17 | ], 18 | "info" : { 19 | "version" : 1, 20 | "author" : "xcode" 21 | } 22 | } -------------------------------------------------------------------------------- /Tuan/Images.xcassets/Other/share_text_frame.imageset/share_text_frame.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValiantCat/Tuan/a10214b9bcb58aef99bb51b05d7df825c3ccb326/Tuan/Images.xcassets/Other/share_text_frame.imageset/share_text_frame.png -------------------------------------------------------------------------------- /Tuan/Images.xcassets/Other/share_text_frame.imageset/share_text_frame@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValiantCat/Tuan/a10214b9bcb58aef99bb51b05d7df825c3ccb326/Tuan/Images.xcassets/Other/share_text_frame.imageset/share_text_frame@2x.png -------------------------------------------------------------------------------- /Tuan/Images.xcassets/Other/share_text_frame_on.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x", 6 | "filename" : "share_text_frame_on.png" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x", 11 | "filename" : "share_text_frame_on@2x.png" 12 | }, 13 | { 14 | "idiom" : "universal", 15 | "scale" : "3x" 16 | } 17 | ], 18 | "info" : { 19 | "version" : 1, 20 | "author" : "xcode" 21 | } 22 | } -------------------------------------------------------------------------------- /Tuan/Images.xcassets/Other/share_text_frame_on.imageset/share_text_frame_on.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValiantCat/Tuan/a10214b9bcb58aef99bb51b05d7df825c3ccb326/Tuan/Images.xcassets/Other/share_text_frame_on.imageset/share_text_frame_on.png -------------------------------------------------------------------------------- /Tuan/Images.xcassets/Other/share_text_frame_on.imageset/share_text_frame_on@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValiantCat/Tuan/a10214b9bcb58aef99bb51b05d7df825c3ccb326/Tuan/Images.xcassets/Other/share_text_frame_on.imageset/share_text_frame_on@2x.png -------------------------------------------------------------------------------- /Tuan/Images.xcassets/UserMenu/bg_pathMenu_black_normal.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x" 6 | }, 7 | { 8 | "idiom" : "universal", 9 | "scale" : "2x", 10 | "filename" : "bg_pathMenu_black_normal@2x.png" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /Tuan/Images.xcassets/UserMenu/bg_pathMenu_black_normal.imageset/bg_pathMenu_black_normal@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValiantCat/Tuan/a10214b9bcb58aef99bb51b05d7df825c3ccb326/Tuan/Images.xcassets/UserMenu/bg_pathMenu_black_normal.imageset/bg_pathMenu_black_normal@2x.png -------------------------------------------------------------------------------- /Tuan/Images.xcassets/UserMenu/icon_pathMenu_background.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x" 6 | }, 7 | { 8 | "idiom" : "universal", 9 | "scale" : "2x", 10 | "filename" : "icon_pathMenu_background@2x.png" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /Tuan/Images.xcassets/UserMenu/icon_pathMenu_background.imageset/icon_pathMenu_background@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValiantCat/Tuan/a10214b9bcb58aef99bb51b05d7df825c3ccb326/Tuan/Images.xcassets/UserMenu/icon_pathMenu_background.imageset/icon_pathMenu_background@2x.png -------------------------------------------------------------------------------- /Tuan/Images.xcassets/UserMenu/icon_pathMenu_background_highlighted.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x" 6 | }, 7 | { 8 | "idiom" : "universal", 9 | "scale" : "2x", 10 | "filename" : "icon_pathMenu_background_highlighted@2x.png" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /Tuan/Images.xcassets/UserMenu/icon_pathMenu_background_highlighted.imageset/icon_pathMenu_background_highlighted@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValiantCat/Tuan/a10214b9bcb58aef99bb51b05d7df825c3ccb326/Tuan/Images.xcassets/UserMenu/icon_pathMenu_background_highlighted.imageset/icon_pathMenu_background_highlighted@2x.png -------------------------------------------------------------------------------- /Tuan/Images.xcassets/UserMenu/icon_pathMenu_background_normal.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x" 6 | }, 7 | { 8 | "idiom" : "universal", 9 | "scale" : "2x", 10 | "filename" : "icon_pathMenu_background_normal@2x.png" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /Tuan/Images.xcassets/UserMenu/icon_pathMenu_background_normal.imageset/icon_pathMenu_background_normal@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValiantCat/Tuan/a10214b9bcb58aef99bb51b05d7df825c3ccb326/Tuan/Images.xcassets/UserMenu/icon_pathMenu_background_normal.imageset/icon_pathMenu_background_normal@2x.png -------------------------------------------------------------------------------- /Tuan/Images.xcassets/UserMenu/icon_pathMenu_collect_highlighted.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x", 6 | "filename" : "icon_pathMenu_collect_highlighted.png" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x", 11 | "filename" : "icon_pathMenu_collect_highlighted@2x.png" 12 | }, 13 | { 14 | "idiom" : "universal", 15 | "scale" : "3x" 16 | } 17 | ], 18 | "info" : { 19 | "version" : 1, 20 | "author" : "xcode" 21 | } 22 | } -------------------------------------------------------------------------------- /Tuan/Images.xcassets/UserMenu/icon_pathMenu_collect_highlighted.imageset/icon_pathMenu_collect_highlighted.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValiantCat/Tuan/a10214b9bcb58aef99bb51b05d7df825c3ccb326/Tuan/Images.xcassets/UserMenu/icon_pathMenu_collect_highlighted.imageset/icon_pathMenu_collect_highlighted.png -------------------------------------------------------------------------------- /Tuan/Images.xcassets/UserMenu/icon_pathMenu_collect_highlighted.imageset/icon_pathMenu_collect_highlighted@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValiantCat/Tuan/a10214b9bcb58aef99bb51b05d7df825c3ccb326/Tuan/Images.xcassets/UserMenu/icon_pathMenu_collect_highlighted.imageset/icon_pathMenu_collect_highlighted@2x.png -------------------------------------------------------------------------------- /Tuan/Images.xcassets/UserMenu/icon_pathMenu_collect_normal.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x", 6 | "filename" : "icon_pathMenu_collect_normal.png" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x", 11 | "filename" : "icon_pathMenu_collect_normal@2x.png" 12 | }, 13 | { 14 | "idiom" : "universal", 15 | "scale" : "3x" 16 | } 17 | ], 18 | "info" : { 19 | "version" : 1, 20 | "author" : "xcode" 21 | } 22 | } -------------------------------------------------------------------------------- /Tuan/Images.xcassets/UserMenu/icon_pathMenu_collect_normal.imageset/icon_pathMenu_collect_normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValiantCat/Tuan/a10214b9bcb58aef99bb51b05d7df825c3ccb326/Tuan/Images.xcassets/UserMenu/icon_pathMenu_collect_normal.imageset/icon_pathMenu_collect_normal.png -------------------------------------------------------------------------------- /Tuan/Images.xcassets/UserMenu/icon_pathMenu_collect_normal.imageset/icon_pathMenu_collect_normal@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValiantCat/Tuan/a10214b9bcb58aef99bb51b05d7df825c3ccb326/Tuan/Images.xcassets/UserMenu/icon_pathMenu_collect_normal.imageset/icon_pathMenu_collect_normal@2x.png -------------------------------------------------------------------------------- /Tuan/Images.xcassets/UserMenu/icon_pathMenu_cross_highlighted.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x", 6 | "filename" : "icon_pathMenu_cross_highlighted.png" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x", 11 | "filename" : "icon_pathMenu_cross_highlighted@2x.png" 12 | }, 13 | { 14 | "idiom" : "universal", 15 | "scale" : "3x" 16 | } 17 | ], 18 | "info" : { 19 | "version" : 1, 20 | "author" : "xcode" 21 | } 22 | } -------------------------------------------------------------------------------- /Tuan/Images.xcassets/UserMenu/icon_pathMenu_cross_highlighted.imageset/icon_pathMenu_cross_highlighted.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValiantCat/Tuan/a10214b9bcb58aef99bb51b05d7df825c3ccb326/Tuan/Images.xcassets/UserMenu/icon_pathMenu_cross_highlighted.imageset/icon_pathMenu_cross_highlighted.png -------------------------------------------------------------------------------- /Tuan/Images.xcassets/UserMenu/icon_pathMenu_cross_highlighted.imageset/icon_pathMenu_cross_highlighted@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValiantCat/Tuan/a10214b9bcb58aef99bb51b05d7df825c3ccb326/Tuan/Images.xcassets/UserMenu/icon_pathMenu_cross_highlighted.imageset/icon_pathMenu_cross_highlighted@2x.png -------------------------------------------------------------------------------- /Tuan/Images.xcassets/UserMenu/icon_pathMenu_cross_normal.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x", 6 | "filename" : "icon_pathMenu_cross_normal.png" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x", 11 | "filename" : "icon_pathMenu_cross_normal@2x.png" 12 | }, 13 | { 14 | "idiom" : "universal", 15 | "scale" : "3x" 16 | } 17 | ], 18 | "info" : { 19 | "version" : 1, 20 | "author" : "xcode" 21 | } 22 | } -------------------------------------------------------------------------------- /Tuan/Images.xcassets/UserMenu/icon_pathMenu_cross_normal.imageset/icon_pathMenu_cross_normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValiantCat/Tuan/a10214b9bcb58aef99bb51b05d7df825c3ccb326/Tuan/Images.xcassets/UserMenu/icon_pathMenu_cross_normal.imageset/icon_pathMenu_cross_normal.png -------------------------------------------------------------------------------- /Tuan/Images.xcassets/UserMenu/icon_pathMenu_cross_normal.imageset/icon_pathMenu_cross_normal@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValiantCat/Tuan/a10214b9bcb58aef99bb51b05d7df825c3ccb326/Tuan/Images.xcassets/UserMenu/icon_pathMenu_cross_normal.imageset/icon_pathMenu_cross_normal@2x.png -------------------------------------------------------------------------------- /Tuan/Images.xcassets/UserMenu/icon_pathMenu_mainMine_highlighted.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x", 6 | "filename" : "icon_pathMenu_mainMine_highlighted.png" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x", 11 | "filename" : "icon_pathMenu_mainMine_highlighted@2x.png" 12 | }, 13 | { 14 | "idiom" : "universal", 15 | "scale" : "3x" 16 | } 17 | ], 18 | "info" : { 19 | "version" : 1, 20 | "author" : "xcode" 21 | } 22 | } -------------------------------------------------------------------------------- /Tuan/Images.xcassets/UserMenu/icon_pathMenu_mainMine_highlighted.imageset/icon_pathMenu_mainMine_highlighted.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValiantCat/Tuan/a10214b9bcb58aef99bb51b05d7df825c3ccb326/Tuan/Images.xcassets/UserMenu/icon_pathMenu_mainMine_highlighted.imageset/icon_pathMenu_mainMine_highlighted.png -------------------------------------------------------------------------------- /Tuan/Images.xcassets/UserMenu/icon_pathMenu_mainMine_highlighted.imageset/icon_pathMenu_mainMine_highlighted@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValiantCat/Tuan/a10214b9bcb58aef99bb51b05d7df825c3ccb326/Tuan/Images.xcassets/UserMenu/icon_pathMenu_mainMine_highlighted.imageset/icon_pathMenu_mainMine_highlighted@2x.png -------------------------------------------------------------------------------- /Tuan/Images.xcassets/UserMenu/icon_pathMenu_mainMine_normal.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x", 6 | "filename" : "icon_pathMenu_mainMine_normal.png" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x", 11 | "filename" : "icon_pathMenu_mainMine_normal@2x.png" 12 | }, 13 | { 14 | "idiom" : "universal", 15 | "scale" : "3x" 16 | } 17 | ], 18 | "info" : { 19 | "version" : 1, 20 | "author" : "xcode" 21 | } 22 | } -------------------------------------------------------------------------------- /Tuan/Images.xcassets/UserMenu/icon_pathMenu_mainMine_normal.imageset/icon_pathMenu_mainMine_normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValiantCat/Tuan/a10214b9bcb58aef99bb51b05d7df825c3ccb326/Tuan/Images.xcassets/UserMenu/icon_pathMenu_mainMine_normal.imageset/icon_pathMenu_mainMine_normal.png -------------------------------------------------------------------------------- /Tuan/Images.xcassets/UserMenu/icon_pathMenu_mainMine_normal.imageset/icon_pathMenu_mainMine_normal@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValiantCat/Tuan/a10214b9bcb58aef99bb51b05d7df825c3ccb326/Tuan/Images.xcassets/UserMenu/icon_pathMenu_mainMine_normal.imageset/icon_pathMenu_mainMine_normal@2x.png -------------------------------------------------------------------------------- /Tuan/Images.xcassets/UserMenu/icon_pathMenu_mine_highlighted.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x", 6 | "filename" : "icon_pathMenu_mine_highlighted.png" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x", 11 | "filename" : "icon_pathMenu_mine_highlighted@2x.png" 12 | }, 13 | { 14 | "idiom" : "universal", 15 | "scale" : "3x" 16 | } 17 | ], 18 | "info" : { 19 | "version" : 1, 20 | "author" : "xcode" 21 | } 22 | } -------------------------------------------------------------------------------- /Tuan/Images.xcassets/UserMenu/icon_pathMenu_mine_highlighted.imageset/icon_pathMenu_mine_highlighted.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValiantCat/Tuan/a10214b9bcb58aef99bb51b05d7df825c3ccb326/Tuan/Images.xcassets/UserMenu/icon_pathMenu_mine_highlighted.imageset/icon_pathMenu_mine_highlighted.png -------------------------------------------------------------------------------- /Tuan/Images.xcassets/UserMenu/icon_pathMenu_mine_highlighted.imageset/icon_pathMenu_mine_highlighted@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValiantCat/Tuan/a10214b9bcb58aef99bb51b05d7df825c3ccb326/Tuan/Images.xcassets/UserMenu/icon_pathMenu_mine_highlighted.imageset/icon_pathMenu_mine_highlighted@2x.png -------------------------------------------------------------------------------- /Tuan/Images.xcassets/UserMenu/icon_pathMenu_mine_normal.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x", 6 | "filename" : "icon_pathMenu_mine_normal.png" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x", 11 | "filename" : "icon_pathMenu_mine_normal@2x.png" 12 | }, 13 | { 14 | "idiom" : "universal", 15 | "scale" : "3x" 16 | } 17 | ], 18 | "info" : { 19 | "version" : 1, 20 | "author" : "xcode" 21 | } 22 | } -------------------------------------------------------------------------------- /Tuan/Images.xcassets/UserMenu/icon_pathMenu_mine_normal.imageset/icon_pathMenu_mine_normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValiantCat/Tuan/a10214b9bcb58aef99bb51b05d7df825c3ccb326/Tuan/Images.xcassets/UserMenu/icon_pathMenu_mine_normal.imageset/icon_pathMenu_mine_normal.png -------------------------------------------------------------------------------- /Tuan/Images.xcassets/UserMenu/icon_pathMenu_mine_normal.imageset/icon_pathMenu_mine_normal@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValiantCat/Tuan/a10214b9bcb58aef99bb51b05d7df825c3ccb326/Tuan/Images.xcassets/UserMenu/icon_pathMenu_mine_normal.imageset/icon_pathMenu_mine_normal@2x.png -------------------------------------------------------------------------------- /Tuan/Images.xcassets/UserMenu/icon_pathMenu_more_highlighted.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x", 6 | "filename" : "icon_pathMenu_more_highlighted.png" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x", 11 | "filename" : "icon_pathMenu_more_highlighted@2x.png" 12 | }, 13 | { 14 | "idiom" : "universal", 15 | "scale" : "3x" 16 | } 17 | ], 18 | "info" : { 19 | "version" : 1, 20 | "author" : "xcode" 21 | } 22 | } -------------------------------------------------------------------------------- /Tuan/Images.xcassets/UserMenu/icon_pathMenu_more_highlighted.imageset/icon_pathMenu_more_highlighted.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValiantCat/Tuan/a10214b9bcb58aef99bb51b05d7df825c3ccb326/Tuan/Images.xcassets/UserMenu/icon_pathMenu_more_highlighted.imageset/icon_pathMenu_more_highlighted.png -------------------------------------------------------------------------------- /Tuan/Images.xcassets/UserMenu/icon_pathMenu_more_highlighted.imageset/icon_pathMenu_more_highlighted@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValiantCat/Tuan/a10214b9bcb58aef99bb51b05d7df825c3ccb326/Tuan/Images.xcassets/UserMenu/icon_pathMenu_more_highlighted.imageset/icon_pathMenu_more_highlighted@2x.png -------------------------------------------------------------------------------- /Tuan/Images.xcassets/UserMenu/icon_pathMenu_more_normal.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x", 6 | "filename" : "icon_pathMenu_more_normal.png" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x", 11 | "filename" : "icon_pathMenu_more_normal@2x.png" 12 | }, 13 | { 14 | "idiom" : "universal", 15 | "scale" : "3x" 16 | } 17 | ], 18 | "info" : { 19 | "version" : 1, 20 | "author" : "xcode" 21 | } 22 | } -------------------------------------------------------------------------------- /Tuan/Images.xcassets/UserMenu/icon_pathMenu_more_normal.imageset/icon_pathMenu_more_normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValiantCat/Tuan/a10214b9bcb58aef99bb51b05d7df825c3ccb326/Tuan/Images.xcassets/UserMenu/icon_pathMenu_more_normal.imageset/icon_pathMenu_more_normal.png -------------------------------------------------------------------------------- /Tuan/Images.xcassets/UserMenu/icon_pathMenu_more_normal.imageset/icon_pathMenu_more_normal@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValiantCat/Tuan/a10214b9bcb58aef99bb51b05d7df825c3ccb326/Tuan/Images.xcassets/UserMenu/icon_pathMenu_more_normal.imageset/icon_pathMenu_more_normal@2x.png -------------------------------------------------------------------------------- /Tuan/Images.xcassets/UserMenu/icon_pathMenu_scan_highlighted.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x", 6 | "filename" : "icon_pathMenu_scan_highlighted.png" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x", 11 | "filename" : "icon_pathMenu_scan_highlighted@2x.png" 12 | }, 13 | { 14 | "idiom" : "universal", 15 | "scale" : "3x" 16 | } 17 | ], 18 | "info" : { 19 | "version" : 1, 20 | "author" : "xcode" 21 | } 22 | } -------------------------------------------------------------------------------- /Tuan/Images.xcassets/UserMenu/icon_pathMenu_scan_highlighted.imageset/icon_pathMenu_scan_highlighted.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValiantCat/Tuan/a10214b9bcb58aef99bb51b05d7df825c3ccb326/Tuan/Images.xcassets/UserMenu/icon_pathMenu_scan_highlighted.imageset/icon_pathMenu_scan_highlighted.png -------------------------------------------------------------------------------- /Tuan/Images.xcassets/UserMenu/icon_pathMenu_scan_highlighted.imageset/icon_pathMenu_scan_highlighted@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValiantCat/Tuan/a10214b9bcb58aef99bb51b05d7df825c3ccb326/Tuan/Images.xcassets/UserMenu/icon_pathMenu_scan_highlighted.imageset/icon_pathMenu_scan_highlighted@2x.png -------------------------------------------------------------------------------- /Tuan/Images.xcassets/UserMenu/icon_pathMenu_scan_normal.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x", 6 | "filename" : "icon_pathMenu_scan_normal.png" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x", 11 | "filename" : "icon_pathMenu_scan_normal@2x.png" 12 | }, 13 | { 14 | "idiom" : "universal", 15 | "scale" : "3x" 16 | } 17 | ], 18 | "info" : { 19 | "version" : 1, 20 | "author" : "xcode" 21 | } 22 | } -------------------------------------------------------------------------------- /Tuan/Images.xcassets/UserMenu/icon_pathMenu_scan_normal.imageset/icon_pathMenu_scan_normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValiantCat/Tuan/a10214b9bcb58aef99bb51b05d7df825c3ccb326/Tuan/Images.xcassets/UserMenu/icon_pathMenu_scan_normal.imageset/icon_pathMenu_scan_normal.png -------------------------------------------------------------------------------- /Tuan/Images.xcassets/UserMenu/icon_pathMenu_scan_normal.imageset/icon_pathMenu_scan_normal@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValiantCat/Tuan/a10214b9bcb58aef99bb51b05d7df825c3ccb326/Tuan/Images.xcassets/UserMenu/icon_pathMenu_scan_normal.imageset/icon_pathMenu_scan_normal@2x.png -------------------------------------------------------------------------------- /Tuan/Lib/MBProgressHUD/MBProgressHUD+MJ.h: -------------------------------------------------------------------------------- 1 | // 2 | // MBProgressHUD+MJ.h 3 | // 4 | // Created by mj on 13-4-18. 5 | // Copyright (c) 2013年 itcast. All rights reserved. 6 | // 7 | 8 | #import "MBProgressHUD.h" 9 | 10 | @interface MBProgressHUD (MJ) 11 | + (void)showSuccess:(NSString *)success toView:(UIView *)view; 12 | + (void)showError:(NSString *)error toView:(UIView *)view; 13 | 14 | + (MBProgressHUD *)showMessage:(NSString *)message toView:(UIView *)view; 15 | 16 | 17 | + (void)showSuccess:(NSString *)success; 18 | + (void)showError:(NSString *)error; 19 | 20 | + (MBProgressHUD *)showMessage:(NSString *)message; 21 | 22 | + (void)hideHUDForView:(UIView *)view; 23 | + (void)hideHUD; 24 | 25 | @end 26 | -------------------------------------------------------------------------------- /Tuan/Lib/MBProgressHUD/MBProgressHUD.bundle/error.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValiantCat/Tuan/a10214b9bcb58aef99bb51b05d7df825c3ccb326/Tuan/Lib/MBProgressHUD/MBProgressHUD.bundle/error.png -------------------------------------------------------------------------------- /Tuan/Lib/MBProgressHUD/MBProgressHUD.bundle/error@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValiantCat/Tuan/a10214b9bcb58aef99bb51b05d7df825c3ccb326/Tuan/Lib/MBProgressHUD/MBProgressHUD.bundle/error@2x.png -------------------------------------------------------------------------------- /Tuan/Lib/MBProgressHUD/MBProgressHUD.bundle/success.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValiantCat/Tuan/a10214b9bcb58aef99bb51b05d7df825c3ccb326/Tuan/Lib/MBProgressHUD/MBProgressHUD.bundle/success.png -------------------------------------------------------------------------------- /Tuan/Lib/MBProgressHUD/MBProgressHUD.bundle/success@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValiantCat/Tuan/a10214b9bcb58aef99bb51b05d7df825c3ccb326/Tuan/Lib/MBProgressHUD/MBProgressHUD.bundle/success@2x.png -------------------------------------------------------------------------------- /Tuan/Lib/MJExtension/MJArgument.h: -------------------------------------------------------------------------------- 1 | // 2 | // MJArgument.h 3 | // ItcastWeibo 4 | // 5 | // Created by mj on 14-1-15. 6 | // Copyright (c) 2014年 itcast. All rights reserved. 7 | // 包装一个方法参数 8 | 9 | #import 10 | /** 11 | * 包装一个方法参数 12 | */ 13 | @interface MJArgument : NSObject 14 | /** 参数的索引 */ 15 | @property (nonatomic, assign) int index; 16 | /** 参数类型 */ 17 | @property (nonatomic, copy) NSString *type; 18 | @end 19 | -------------------------------------------------------------------------------- /Tuan/Lib/MJExtension/MJArgument.m: -------------------------------------------------------------------------------- 1 | // 2 | // MJArgument.m 3 | // ItcastWeibo 4 | // 5 | // Created by mj on 14-1-15. 6 | // Copyright (c) 2014年 itcast. All rights reserved. 7 | // 8 | 9 | #import "MJArgument.h" 10 | #import "MJExtension.h" 11 | 12 | @implementation MJArgument 13 | MJLogAllIvrs 14 | @end 15 | -------------------------------------------------------------------------------- /Tuan/Lib/MJExtension/MJConst.m: -------------------------------------------------------------------------------- 1 | #ifndef __MJConst__M__ 2 | #define __MJConst__M__ 3 | 4 | #endif -------------------------------------------------------------------------------- /Tuan/Lib/MJExtension/MJExtension.h: -------------------------------------------------------------------------------- 1 | // 2 | // MJExtension.h 3 | // MJExtension 4 | // 5 | // Created by mj on 14-1-15. 6 | // Copyright (c) 2014年 itcast. All rights reserved. 7 | // 8 | 9 | #import "MJTypeEncoding.h" 10 | #import "NSObject+MJCoding.h" 11 | #import "NSObject+MJMember.h" 12 | #import "NSObject+MJKeyValue.h" 13 | 14 | #define MJLogAllIvrs \ 15 | - (NSString *)description \ 16 | { \ 17 | return [self keyValues].description; \ 18 | } 19 | -------------------------------------------------------------------------------- /Tuan/Lib/MJExtension/MJFoundation.h: -------------------------------------------------------------------------------- 1 | // 2 | // MJFoundation.h 3 | // MJExtensionExample 4 | // 5 | // Created by MJ Lee on 14/7/16. 6 | // Copyright (c) 2014年 itcast. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | @interface MJFoundation : NSObject 12 | + (BOOL)isClassFromFoundation:(Class)c; 13 | @end 14 | -------------------------------------------------------------------------------- /Tuan/Lib/MJRefresh/MJRefresh.bundle/arrow@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValiantCat/Tuan/a10214b9bcb58aef99bb51b05d7df825c3ccb326/Tuan/Lib/MJRefresh/MJRefresh.bundle/arrow@2x.png -------------------------------------------------------------------------------- /Tuan/Lib/MJRefresh/MJRefreshFooterView.h: -------------------------------------------------------------------------------- 1 | // 2 | // MJRefreshTableFooterView.h 3 | // MJRefresh 4 | // 5 | // Created by mj on 13-2-26. 6 | // Copyright (c) 2013年 itcast. All rights reserved. 7 | // 上拉加载更多 8 | 9 | #import "MJRefreshBaseView.h" 10 | 11 | @interface MJRefreshFooterView : MJRefreshBaseView 12 | 13 | @property (nonatomic, strong) NSString *stateString; 14 | + (instancetype)footer; 15 | @end -------------------------------------------------------------------------------- /Tuan/Lib/MJRefresh/MJRefreshHeaderView.h: -------------------------------------------------------------------------------- 1 | // 2 | // MJRefreshHeaderView.h 3 | // MJRefresh 4 | // 5 | // Created by mj on 13-2-26. 6 | // Copyright (c) 2013年 itcast. All rights reserved. 7 | // 下拉刷新 8 | 9 | #import "MJRefreshBaseView.h" 10 | 11 | @interface MJRefreshHeaderView : MJRefreshBaseView 12 | @property (nonatomic, strong) NSString *stateString; 13 | 14 | + (instancetype)header; 15 | @end -------------------------------------------------------------------------------- /Tuan/Lib/dianpingapi/DPConstants.h: -------------------------------------------------------------------------------- 1 | // 2 | // DPConstants.h 3 | // apidemo 4 | // 5 | // Created by ZhouHui on 13-1-28. 6 | // Copyright (c) 2013年 Dianping. All rights reserved. 7 | // 8 | 9 | #ifndef apidemo_DPConstants_h 10 | #define apidemo_DPConstants_h 11 | 12 | #define DPAPIVersion @"2.0" 13 | 14 | #define kDPAPIErrorDomain @"DPAPIErrorDomain" 15 | #define kDPAPIErrorCodeKey @"DPAPIErrorCodeKey" 16 | 17 | #define kDPAPIDomain @"http://api.dianping.com/" 18 | 19 | #endif 20 | -------------------------------------------------------------------------------- /Tuan/Map/Controller/HMMapViewController.h: -------------------------------------------------------------------------------- 1 | // 2 | // HMMapViewController.h 3 | // 黑团HD 4 | // 5 | // Created by apple on 14-8-27. 6 | // Copyright (c) 2014年 heima. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | @interface HMMapViewController : UIViewController 12 | 13 | @end 14 | -------------------------------------------------------------------------------- /Tuan/Map/Model/HMDealAnnotation.h: -------------------------------------------------------------------------------- 1 | // 2 | // HMDealAnnotation.h 3 | // 黑团HD 4 | // 5 | // Created by apple on 14-8-27. 6 | // Copyright (c) 2014年 heima. All rights reserved. 7 | // 8 | 9 | #import 10 | #import 11 | @class HMDeal; 12 | 13 | @interface HMDealAnnotation : NSObject 14 | /** 15 | * 大头针的位置 16 | */ 17 | @property (nonatomic, assign) CLLocationCoordinate2D coordinate; 18 | @property (nonatomic, copy) NSString *title; 19 | @property (nonatomic, copy) NSString *subtitle; 20 | 21 | /** 22 | * 这颗大头针绑定的团购模型 23 | */ 24 | @property (nonatomic, strong) HMDeal *deal; 25 | @end 26 | -------------------------------------------------------------------------------- /Tuan/Map/Model/HMDealAnnotation.m: -------------------------------------------------------------------------------- 1 | // 2 | // HMDealAnnotation.m 3 | // 黑团HD 4 | // 5 | // Created by apple on 14-8-27. 6 | // Copyright (c) 2014年 heima. All rights reserved. 7 | // 8 | 9 | #import "HMDealAnnotation.h" 10 | 11 | @implementation HMDealAnnotation 12 | - (BOOL)isEqual:(HMDealAnnotation *)other 13 | { 14 | return self.coordinate.latitude == other.coordinate.latitude && self.coordinate.longitude == other.coordinate.longitude; 15 | } 16 | @end 17 | -------------------------------------------------------------------------------- /Tuan/Map/View/HMDealAnnoRightButton.h: -------------------------------------------------------------------------------- 1 | // 2 | // HMDealAnnoRightButton.h 3 | // 黑团HD 4 | // 5 | // Created by apple on 14-8-27. 6 | // Copyright (c) 2014年 heima. All rights reserved. 7 | // 8 | 9 | #import 10 | @class HMDeal; 11 | 12 | @interface HMDealAnnoRightButton : UIButton 13 | @property (nonatomic, strong) HMDeal *deal; 14 | @end 15 | -------------------------------------------------------------------------------- /Tuan/Map/View/HMDealAnnoRightButton.m: -------------------------------------------------------------------------------- 1 | // 2 | // HMDealAnnoRightButton.m 3 | // 黑团HD 4 | // 5 | // Created by apple on 14-8-27. 6 | // Copyright (c) 2014年 heima. All rights reserved. 7 | // 8 | 9 | #import "HMDealAnnoRightButton.h" 10 | 11 | @implementation HMDealAnnoRightButton 12 | 13 | - (id)initWithFrame:(CGRect)frame 14 | { 15 | self = [super initWithFrame:frame]; 16 | if (self) { 17 | // Initialization code 18 | } 19 | return self; 20 | } 21 | 22 | /* 23 | // Only override drawRect: if you perform custom drawing. 24 | // An empty implementation adversely affects performance during animation. 25 | - (void)drawRect:(CGRect)rect 26 | { 27 | // Drawing code 28 | } 29 | */ 30 | 31 | @end 32 | -------------------------------------------------------------------------------- /Tuan/Model/HMBusiness.m: -------------------------------------------------------------------------------- 1 | // 2 | // HMBusiness.m 3 | // 黑团HD 4 | // 5 | // Created by apple on 14-8-16. 6 | // Copyright (c) 2014年 heima. All rights reserved. 7 | // 8 | 9 | #import "HMBusiness.h" 10 | #import "MJExtension.h" 11 | @implementation HMBusiness 12 | - (NSDictionary *)replacedKeyFromPropertyName 13 | { 14 | return @{@"ID" : @"id"}; 15 | } 16 | MJCodingImplementation 17 | @end 18 | -------------------------------------------------------------------------------- /Tuan/Model/HMFindDealsParam.m: -------------------------------------------------------------------------------- 1 | // 2 | // HMFindDealsParam.m 3 | // 黑团HD 4 | // 5 | // Created by apple on 14-8-16. 6 | // Copyright (c) 2014年 heima. All rights reserved. 7 | // 8 | 9 | #import "HMFindDealsParam.h" 10 | 11 | @implementation HMFindDealsParam 12 | 13 | @end 14 | -------------------------------------------------------------------------------- /Tuan/Model/HMFindDealsResult.h: -------------------------------------------------------------------------------- 1 | // 2 | // HMFindDealsResult.h 3 | // 黑团HD 4 | // 5 | // Created by apple on 14-8-16. 6 | // Copyright (c) 2014年 heima. All rights reserved. 7 | // 请求结果 8 | 9 | #import 10 | #import "HMGetSingleDealResult.h" 11 | 12 | @interface HMFindDealsResult : HMGetSingleDealResult 13 | /** 所有页面团购总数 */ 14 | @property (assign, nonatomic) int total_count; 15 | @end 16 | -------------------------------------------------------------------------------- /Tuan/Model/HMFindDealsResult.m: -------------------------------------------------------------------------------- 1 | // 2 | // HMFindDealsResult.m 3 | // 黑团HD 4 | // 5 | // Created by apple on 14-8-16. 6 | // Copyright (c) 2014年 heima. All rights reserved. 7 | // 8 | 9 | #import "HMFindDealsResult.h" 10 | 11 | @implementation HMFindDealsResult 12 | @end 13 | -------------------------------------------------------------------------------- /Tuan/Model/HMGetSingleDealParam.h: -------------------------------------------------------------------------------- 1 | // 2 | // HMGetSingleDealParam.h 3 | // 黑团HD 4 | // 5 | // Created by apple on 14-8-16. 6 | // Copyright (c) 2014年 heima. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | @interface HMGetSingleDealParam : NSObject 12 | /** 团购ID */ 13 | @property (nonatomic, copy) NSString *deal_id; 14 | @end 15 | -------------------------------------------------------------------------------- /Tuan/Model/HMGetSingleDealParam.m: -------------------------------------------------------------------------------- 1 | // 2 | // HMGetSingleDealParam.m 3 | // 黑团HD 4 | // 5 | // Created by apple on 14-8-16. 6 | // Copyright (c) 2014年 heima. All rights reserved. 7 | // 8 | 9 | #import "HMGetSingleDealParam.h" 10 | 11 | @implementation HMGetSingleDealParam 12 | 13 | @end 14 | -------------------------------------------------------------------------------- /Tuan/Model/HMGetSingleDealResult.h: -------------------------------------------------------------------------------- 1 | // 2 | // HMGetSingleDealResult.h 3 | // 黑团HD 4 | // 5 | // Created by apple on 14-8-16. 6 | // Copyright (c) 2014年 heima. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | @interface HMGetSingleDealResult : NSObject 12 | /** 本次API访问所获取的单页团购数量 */ 13 | @property (assign, nonatomic) int count; 14 | /** 所有的团购 */ 15 | @property (strong, nonatomic) NSArray *deals; 16 | @end 17 | -------------------------------------------------------------------------------- /Tuan/Model/HMGetSingleDealResult.m: -------------------------------------------------------------------------------- 1 | // 2 | // HMGetSingleDealResult.m 3 | // 黑团HD 4 | // 5 | // Created by apple on 14-8-16. 6 | // Copyright (c) 2014年 heima. All rights reserved. 7 | // 8 | 9 | #import "HMGetSingleDealResult.h" 10 | #import "HMDeal.h" 11 | 12 | @implementation HMGetSingleDealResult 13 | 14 | - (NSDictionary *)objectClassInArray 15 | { 16 | return @{@"deals" : [HMDeal class]}; 17 | } 18 | @end 19 | -------------------------------------------------------------------------------- /Tuan/Model/HMRestriction.h: -------------------------------------------------------------------------------- 1 | // 2 | // HMRestriction.h 3 | // Tuan 4 | // 5 | // Created by nero on 15/5/26. 6 | // Copyright (c) 2015年 nero. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | @interface HMRestriction : NSObject 12 | /** 是否需要预约,0:不是,1:是 */ 13 | @property (assign, nonatomic) BOOL is_reservation_required; 14 | 15 | /** 是否支持随时退款,0:不是,1:是 */ 16 | @property (assign, nonatomic) BOOL is_refundable; 17 | 18 | /** 附加信息(一般为团购信息的特别提示) */ 19 | @property (copy, nonatomic) NSString *special_tips; 20 | @end 21 | -------------------------------------------------------------------------------- /Tuan/Model/HMRestriction.m: -------------------------------------------------------------------------------- 1 | // 2 | // HMRestriction.m 3 | // Tuan 4 | // 5 | // Created by nero on 15/5/26. 6 | // Copyright (c) 2015年 nero. All rights reserved. 7 | // 8 | 9 | #import "HMRestriction.h" 10 | #import "MJExtension.h" 11 | @implementation HMRestriction 12 | MJCodingImplementation 13 | @end 14 | -------------------------------------------------------------------------------- /Tuan/Model/MetaData/HMCategory.m: -------------------------------------------------------------------------------- 1 | // 2 | // HMCategory.m 3 | // 黑团HD 4 | // 5 | // Created by apple on 14-8-18. 6 | // Copyright (c) 2014年 heima. All rights reserved. 7 | // 8 | 9 | #import "HMCategory.h" 10 | #import "MJExtension.h" 11 | @implementation HMCategory 12 | - (NSString *)title 13 | { 14 | return self.name; 15 | } 16 | 17 | - (NSArray *)subtitles 18 | { 19 | return self.subcategories; 20 | } 21 | 22 | - (NSString *)image 23 | { 24 | return self.small_icon; 25 | } 26 | 27 | - (NSString *)highlightedImage 28 | { 29 | return self.small_highlighted_icon; 30 | } 31 | MJCodingImplementation 32 | @end 33 | -------------------------------------------------------------------------------- /Tuan/Model/MetaData/HMCity.h: -------------------------------------------------------------------------------- 1 | // 2 | // HMCity.h 3 | // 黑团HD 4 | // 5 | // Created by apple on 14-8-18. 6 | // Copyright (c) 2014年 heima. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | @interface HMCity : NSObject 12 | /** 城市名称 */ 13 | @property (copy, nonatomic) NSString *name; 14 | /** 区域 */ 15 | @property (strong, nonatomic) NSArray *regions; 16 | /** 拼音 beijing */ 17 | @property (copy, nonatomic) NSString *pinYin; 18 | /** 拼音首字母 bj */ 19 | @property (copy, nonatomic) NSString *pinYinHead; 20 | @end 21 | -------------------------------------------------------------------------------- /Tuan/Model/MetaData/HMCity.m: -------------------------------------------------------------------------------- 1 | // 2 | // HMCity.m 3 | // 黑团HD 4 | // 5 | // Created by apple on 14-8-18. 6 | // Copyright (c) 2014年 heima. All rights reserved. 7 | // 8 | 9 | #import "HMCity.h" 10 | #import "HMRegion.h" 11 | 12 | @implementation HMCity 13 | - (NSDictionary *)objectClassInArray 14 | { 15 | return @{@"regions" : [HMRegion class]}; 16 | } 17 | @end 18 | -------------------------------------------------------------------------------- /Tuan/Model/MetaData/HMCityGroup.h: -------------------------------------------------------------------------------- 1 | // 2 | // HMCityGroup.h 3 | // 黑团HD 4 | // 5 | // Created by apple on 14-8-18. 6 | // Copyright (c) 2014年 heima. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | @interface HMCityGroup : NSObject 12 | /** 组标题 */ 13 | @property (copy, nonatomic) NSString *title; 14 | /** 这组显示的城市 */ 15 | @property (strong, nonatomic) NSArray *cities; 16 | @end 17 | -------------------------------------------------------------------------------- /Tuan/Model/MetaData/HMCityGroup.m: -------------------------------------------------------------------------------- 1 | // 2 | // HMCityGroup.m 3 | // 黑团HD 4 | // 5 | // Created by apple on 14-8-18. 6 | // Copyright (c) 2014年 heima. All rights reserved. 7 | // 8 | 9 | #import "HMCityGroup.h" 10 | 11 | @implementation HMCityGroup 12 | 13 | @end 14 | -------------------------------------------------------------------------------- /Tuan/Model/MetaData/HMRegion.h: -------------------------------------------------------------------------------- 1 | // 2 | // HMRegion.h 3 | // 黑团HD 4 | // 5 | // Created by apple on 14-8-18. 6 | // Copyright (c) 2014年 heima. All rights reserved. 7 | // 8 | 9 | #import 10 | #import "HMDropdownMenu.h" 11 | @interface HMRegion : NSObject 12 | /** 区域名称 */ 13 | @property (copy, nonatomic) NSString *name; 14 | /** 子区域 */ 15 | @property (strong, nonatomic) NSArray *subregions; 16 | @end 17 | -------------------------------------------------------------------------------- /Tuan/Model/MetaData/HMRegion.m: -------------------------------------------------------------------------------- 1 | // 2 | // HMRegion.m 3 | // 黑团HD 4 | // 5 | // Created by apple on 14-8-18. 6 | // Copyright (c) 2014年 heima. All rights reserved. 7 | // 8 | 9 | #import "HMRegion.h" 10 | #import "MJExtension.h" 11 | @implementation HMRegion 12 | - (NSString *)title 13 | { 14 | return self.name; 15 | } 16 | 17 | - (NSArray *)subtitles 18 | { 19 | return self.subregions; 20 | } 21 | MJCodingImplementation 22 | @end 23 | -------------------------------------------------------------------------------- /Tuan/Model/MetaData/HMSort.m: -------------------------------------------------------------------------------- 1 | // 2 | // HMSort.m 3 | // 黑团HD 4 | // 5 | // Created by apple on 14-8-18. 6 | // Copyright (c) 2014年 heima. All rights reserved. 7 | // 8 | 9 | #import "HMSort.h" 10 | #import "MJExtension.h" 11 | @implementation HMSort 12 | MJCodingImplementation 13 | @end 14 | -------------------------------------------------------------------------------- /Tuan/Tool/HMAPITool.h: -------------------------------------------------------------------------------- 1 | // 2 | // HMAPITool.h 3 | // Tuan 4 | // 5 | // Created by nero on 15/5/13. 6 | // Copyright (c) 2015年 nero. All rights reserved. 7 | // 8 | 9 | #import 10 | #import "HMSingleton.h" 11 | @interface HMAPITool : NSObject 12 | - (void)request:(NSString *)url params:(NSDictionary *)params success:(void (^)(id json))success failure:(void (^)(NSError *error))failure; 13 | 14 | HMSingletonH(APITool) 15 | @end 16 | -------------------------------------------------------------------------------- /Tuan/Tool/Test.h: -------------------------------------------------------------------------------- 1 | // 2 | // Test.h 3 | // Tuan 4 | // 5 | // Created by nero on 15/5/13. 6 | // Copyright (c) 2015年 nero. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | @interface Test : NSObject 12 | +(void)test; 13 | @end 14 | -------------------------------------------------------------------------------- /继承结构图.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValiantCat/Tuan/a10214b9bcb58aef99bb51b05d7df825c3ccb326/继承结构图.png --------------------------------------------------------------------------------