├── Podfile ├── Podfile.lock ├── Pods ├── Alamofire │ ├── LICENSE │ ├── README.md │ └── Source │ │ ├── AFError.swift │ │ ├── Alamofire.swift │ │ ├── DispatchQueue+Alamofire.swift │ │ ├── MultipartFormData.swift │ │ ├── NetworkReachabilityManager.swift │ │ ├── Notifications.swift │ │ ├── ParameterEncoding.swift │ │ ├── Request.swift │ │ ├── Response.swift │ │ ├── ResponseSerialization.swift │ │ ├── Result.swift │ │ ├── ServerTrustPolicy.swift │ │ ├── SessionDelegate.swift │ │ ├── SessionManager.swift │ │ ├── TaskDelegate.swift │ │ ├── Timeline.swift │ │ └── Validation.swift ├── HandyJSON │ ├── HandyJSON │ │ ├── Converter.swift │ │ ├── Extension.swift │ │ ├── HandyJSON.h │ │ ├── HelpingMapper.swift │ │ ├── JSONDeserializer.swift │ │ ├── JSONSerializer.swift │ │ └── Property.swift │ ├── LICENSE │ └── README.md ├── Kingfisher │ ├── LICENSE │ ├── README.md │ └── Sources │ │ ├── AnimatedImageView.swift │ │ ├── Box.swift │ │ ├── CacheSerializer.swift │ │ ├── Filter.swift │ │ ├── Image.swift │ │ ├── ImageCache.swift │ │ ├── ImageDownloader.swift │ │ ├── ImagePrefetcher.swift │ │ ├── ImageProcessor.swift │ │ ├── ImageTransition.swift │ │ ├── ImageView+Kingfisher.swift │ │ ├── Indicator.swift │ │ ├── Kingfisher.h │ │ ├── Kingfisher.swift │ │ ├── KingfisherManager.swift │ │ ├── KingfisherOptionsInfo.swift │ │ ├── RequrstModifier.swift │ │ ├── Resource.swift │ │ ├── String+MD5.swift │ │ ├── ThreadHelper.swift │ │ └── UIButton+Kingfisher.swift ├── Manifest.lock ├── Pods.xcodeproj │ ├── project.pbxproj │ └── xcuserdata │ │ └── hanwei.xcuserdatad │ │ └── xcschemes │ │ ├── Alamofire.xcscheme │ │ ├── HandyJSON.xcscheme │ │ ├── Kingfisher.xcscheme │ │ ├── Pods-妙汇.xcscheme │ │ ├── SwiftyJSON.xcscheme │ │ └── xcschememanagement.plist ├── SwiftyJSON │ ├── LICENSE │ ├── README.md │ └── Source │ │ └── SwiftyJSON.swift └── Target Support Files │ ├── Alamofire │ ├── Alamofire-dummy.m │ ├── Alamofire-prefix.pch │ ├── Alamofire-umbrella.h │ ├── Alamofire.modulemap │ ├── Alamofire.xcconfig │ └── Info.plist │ ├── HandyJSON │ ├── HandyJSON-dummy.m │ ├── HandyJSON-prefix.pch │ ├── HandyJSON-umbrella.h │ ├── HandyJSON.modulemap │ ├── HandyJSON.xcconfig │ └── Info.plist │ ├── Kingfisher │ ├── Info.plist │ ├── Kingfisher-dummy.m │ ├── Kingfisher-prefix.pch │ ├── Kingfisher-umbrella.h │ ├── Kingfisher.modulemap │ └── Kingfisher.xcconfig │ ├── Pods-妙汇 │ ├── Info.plist │ ├── Pods-妙汇-acknowledgements.markdown │ ├── Pods-妙汇-acknowledgements.plist │ ├── Pods-妙汇-dummy.m │ ├── Pods-妙汇-frameworks.sh │ ├── Pods-妙汇-resources.sh │ ├── Pods-妙汇-umbrella.h │ ├── Pods-妙汇.debug.xcconfig │ ├── Pods-妙汇.modulemap │ └── Pods-妙汇.release.xcconfig │ └── SwiftyJSON │ ├── Info.plist │ ├── SwiftyJSON-dummy.m │ ├── SwiftyJSON-prefix.pch │ ├── SwiftyJSON-umbrella.h │ ├── SwiftyJSON.modulemap │ └── SwiftyJSON.xcconfig ├── README.md ├── 妙汇.xcodeproj ├── project.pbxproj ├── project.xcworkspace │ └── contents.xcworkspacedata └── xcuserdata │ └── hanwei.xcuserdatad │ └── xcschemes │ ├── xcschememanagement.plist │ └── 妙汇.xcscheme ├── 妙汇.xcworkspace └── contents.xcworkspacedata └── 妙汇 ├── AppDelegate.swift ├── Assets.xcassets ├── AliPay.imageset │ ├── AliPay.png │ └── Contents.json ├── AppIcon.appiconset │ ├── AppIcon29x29@2x.png │ ├── AppIcon29x29@3x.png │ ├── AppIcon40x40@2x.png │ ├── AppIcon40x40@3x.png │ ├── AppIcon40x40~ipad.png │ ├── AppIcon60x60@2x.png │ ├── AppIcon60x60@3x.png │ └── Contents.json ├── ApplePay.imageset │ ├── ApplePay.png │ └── Contents.json ├── Arror_left_darkgray.imageset │ ├── Arror_left_darkgray.png │ └── Contents.json ├── Arror_left_lightgray.imageset │ ├── Arror_left_lightgray.png │ └── Contents.json ├── Contents.json ├── LaunchImage.launchimage │ ├── Contents.json │ ├── LaunchImage-800-667h@2x.png │ └── LaunchImage-800-Portrait-736h@3x.png ├── MessageCenenter.imageset │ ├── Contents.json │ ├── MessageCenenter.png │ └── MessageCenenter@2x.png ├── MessageCenenter_new.imageset │ ├── Contents.json │ ├── MessageCenenter_new.png │ └── MessageCenenter_new@2x.png ├── MessageCenter_black.imageset │ ├── Contents.json │ └── MessageCenter_black.png ├── MessageCenter_black@1x.imageset │ ├── Contents.json │ └── MessageCenter_black@1x.png ├── MessageCenter_black_new.imageset │ ├── Contents.json │ └── MessageCenter_black_new.png ├── MessageCenter_black_new@1x.imageset │ ├── Contents.json │ └── MessageCenter_black_new@1x.png ├── More.imageset │ ├── Contents.json │ ├── More.png │ └── More@2x.png ├── More_black.imageset │ ├── Contents.json │ └── More_black.png ├── QQ_gray_icon.imageset │ ├── Contents.json │ ├── QQ_gray_icon.png │ └── QQ_gray_icon@2x.png ├── UIBarButtonItemGrid.imageset │ ├── Contents.json │ ├── UIBarButtonItemGrid.png │ └── UIBarButtonItemGrid@2x.png ├── Weibo_gray_icon.imageset │ ├── Contents.json │ ├── Weibo_gray_icon.png │ └── Weibo_gray_icon@2x.png ├── Weixin_gray_icon.imageset │ ├── Contents.json │ ├── Weixin_gray_icon.png │ └── Weixin_gray_icon@2x.png ├── XQ_360.imageset │ ├── Contents.json │ └── XQ_360.png ├── XQ_fenxiang.imageset │ ├── Contents.json │ └── XQ_fenxiang.png ├── XQ_like.imageset │ ├── Contents.json │ └── XQ_like.png ├── XQ_pinglun.imageset │ ├── Contents.json │ └── XQ_pinglun.png ├── XQon_like.imageset │ ├── Contents.json │ └── XQon_like.png ├── account_email.imageset │ ├── Contents.json │ └── account_email.png ├── account_name.imageset │ ├── Contents.json │ └── account_name.png ├── account_password.imageset │ ├── Contents.json │ └── account_password.png ├── account_phone.imageset │ ├── Contents.json │ └── account_phone.png ├── account_revise.imageset │ ├── Contents.json │ └── account_revise.png ├── add.imageset │ ├── Contents.json │ └── add.png ├── addToShoppingCart.imageset │ ├── Contents.json │ └── addToShoppingCart.png ├── addressBG.imageset │ ├── Contents.json │ └── addressBG.png ├── all_order.imageset │ ├── Contents.json │ └── all_order.png ├── appicon.imageset │ ├── Contents.json │ └── appicon.png ├── applyFor_ afterSale_normal.imageset │ ├── Contents.json │ └── applyFor_ afterSale_normal.png ├── applyFor_ afterSale_selected.imageset │ ├── Contents.json │ └── applyFor_ afterSale_selected.png ├── arrow_left.imageset │ ├── Contents.json │ └── arrow_left.png ├── baiyou.imageset │ ├── Contents.json │ └── baiyou.png ├── bind_button_bg.imageset │ ├── Contents.json │ └── bind_button_bg.png ├── bind_email.imageset │ ├── Contents.json │ └── bind_email.png ├── bind_mobile.imageset │ ├── Contents.json │ └── bind_mobile.png ├── bind_qq.imageset │ ├── Contents.json │ └── bind_qq.png ├── bind_qq01.imageset │ ├── Contents.json │ └── bind_qq01.png ├── bind_weibo.imageset │ ├── Contents.json │ └── bind_weibo.png ├── bind_weibo01.imageset │ ├── Contents.json │ └── bind_weibo01.png ├── bind_weixin.imageset │ ├── Contents.json │ └── bind_weixin.png ├── bind_weixin01.imageset │ ├── Contents.json │ └── bind_weixin01.png ├── bishi.imageset │ ├── Contents.json │ └── bishi.png ├── button_background.imageset │ ├── Contents.json │ └── button_background.png ├── button_background_black.imageset │ ├── Contents.json │ └── button_background_black.png ├── button_background_black_h.imageset │ ├── Contents.json │ └── button_background_black_h.png ├── button_background_yellow.imageset │ ├── Contents.json │ └── button_background_yellow.png ├── button_bg_gray.imageset │ ├── Contents.json │ └── button_bg_gray.png ├── button_bg_red.imageset │ ├── Contents.json │ └── button_bg_red.png ├── button_bg_white_alpha.imageset │ ├── Contents.json │ └── button_bg_white_alpha.png ├── button_bg_yellow.imageset │ ├── Contents.json │ └── button_bg_yellow.png ├── camera_black.imageset │ ├── Contents.json │ └── camera_black.png ├── camera_on_comment.imageset │ ├── Contents.json │ └── camera_on_comment.png ├── cameral_white.imageset │ ├── Contents.json │ └── cameral_white.png ├── carousel_select.imageset │ ├── Contents.json │ └── carousel_select.png ├── carousel_un_select.imageset │ ├── Contents.json │ └── carousel_un_select.png ├── cart_decrement.imageset │ ├── Contents.json │ └── cart_decrement.png ├── cart_increment.imageset │ ├── Contents.json │ └── cart_increment.png ├── choose_like.imageset │ ├── Contents.json │ └── choose_like.png ├── choose_unlike.imageset │ ├── Contents.json │ └── choose_unlike.png ├── close_ad.imageset │ ├── Contents.json │ └── close_ad.png ├── comment_plus.imageset │ ├── Contents.json │ └── comment_plus.png ├── common_checkbox.imageset │ ├── Contents.json │ └── common_checkbox.png ├── common_checkbox_on.imageset │ ├── Contents.json │ └── common_checkbox_on.png ├── compeleted_ afterSale_normal.imageset │ ├── Contents.json │ └── compeleted_ afterSale_normal.png ├── compeleted_ afterSale_selected.imageset │ ├── Contents.json │ └── compeleted_ afterSale_selected.png ├── coupon_invalid_coupon.imageset │ ├── Contents.json │ └── coupon_invalid_coupon.png ├── coupon_selected_coupon.imageset │ ├── Contents.json │ └── coupon_selected_coupon.png ├── coupon_valid_coupon.imageset │ ├── Contents.json │ └── coupon_valid_coupon.png ├── coupons.imageset │ ├── Contents.json │ └── coupons.png ├── daifukuan.imageset │ ├── Contents.json │ └── daifukuan.png ├── daishouhuo.imageset │ ├── Contents.json │ └── daishouhuo.png ├── delete_cart.imageset │ ├── Contents.json │ └── delete_cart.png ├── dengji.imageset │ ├── Contents.json │ └── dengji.png ├── detail_back.imageset │ ├── Contents.json │ └── detail_back.png ├── dingbushezhi.imageset │ ├── Contents.json │ └── dingbushezhi.png ├── doubt_magicDiamonds.imageset │ ├── Contents.json │ └── doubt_magicDiamonds.png ├── downTowardsArrow.imageset │ ├── Contents.json │ └── downTowardsArrow.png ├── downloadapp.imageset │ ├── Contents.json │ └── downloadapp.png ├── expired_coupon.imageset │ ├── Contents.json │ └── expired_coupon.png ├── fenxiang.imageset │ ├── Contents.json │ └── fenxiang.png ├── fenxiang_white.imageset │ ├── Contents.json │ └── fenxiang_white.png ├── fenxiangyoujiang.imageset │ ├── Contents.json │ └── fenxiangyoujiang.png ├── fieldOfView_3DTouch.imageset │ ├── Contents.json │ └── fieldOfView_3DTouch.png ├── firstShowGuide_intro.imageset │ ├── Contents.json │ └── firstShowGuide_intro.png ├── firstShowGuide_photoBrowser.imageset │ ├── Contents.json │ └── firstShowGuide_photoBrowser.png ├── foot_print.imageset │ ├── Contents.json │ └── foot_print.png ├── foot_print_white.imageset │ ├── Contents.json │ └── foot_print_white.png ├── fuxuankuang.imageset │ ├── Contents.json │ └── fuxuankuang.png ├── fuxuankuang01.imageset │ ├── Contents.json │ └── fuxuankuang01.png ├── goToShoppingCart.imageset │ ├── Contents.json │ └── goToShoppingCart.png ├── gou.imageset │ ├── Contents.json │ └── gou.png ├── heart-broken01.imageset │ ├── Contents.json │ └── heart-broken01.png ├── heart-broken02.imageset │ ├── Contents.json │ └── heart-broken02.png ├── heart.imageset │ ├── Contents.json │ └── heart.png ├── home_dian.imageset │ ├── Contents.json │ └── home_dian.png ├── home_dian01.imageset │ ├── Contents.json │ └── home_dian01.png ├── home_jiazaitupian.imageset │ ├── Contents.json │ └── home_jiazaitupian.png ├── home_search.imageset │ ├── Contents.json │ └── home_search.png ├── home_search_white.imageset │ ├── Contents.json │ └── home_search_white.png ├── huidaodingbu.imageset │ ├── Contents.json │ └── huidaodingbu.png ├── image_mask.imageset │ ├── Contents.json │ └── image_mask.png ├── inSecKIl_productIntro.imageset │ ├── Contents.json │ └── inSecKIl_productIntro.png ├── lefrmenu_service.imageset │ ├── Contents.json │ └── lefrmenu_service.png ├── lefrmenu_service01.imageset │ ├── Contents.json │ └── lefrmenu_service01.png ├── leftSlide_productIntro.imageset │ ├── Contents.json │ └── leftSlide_productIntro.png ├── leftmenu_all_order.imageset │ ├── Contents.json │ └── leftmenu_all_order.png ├── leftmenu_all_order01.imageset │ ├── Contents.json │ └── leftmenu_all_order01.png ├── leftmenu_coupon.imageset │ ├── Contents.json │ └── leftmenu_coupon.png ├── leftmenu_coupon01.imageset │ ├── Contents.json │ └── leftmenu_coupon01.png ├── leftmenu_favor.imageset │ ├── Contents.json │ └── leftmenu_favor.png ├── leftmenu_favor01.imageset │ ├── Contents.json │ └── leftmenu_favor01.png ├── leftmenu_recommend.imageset │ ├── Contents.json │ └── leftmenu_recommend.png ├── leftmenu_recommend01.imageset │ ├── Contents.json │ └── leftmenu_recommend01.png ├── leftmenu_set.imageset │ ├── Contents.json │ └── leftmenu_set.png ├── leftmenu_set01.imageset │ ├── Contents.json │ └── leftmenu_set01.png ├── liulan.imageset │ ├── Contents.json │ └── liulan.png ├── location.imageset │ ├── Contents.json │ └── location.png ├── login_qq.imageset │ ├── Contents.json │ └── login_qq.png ├── login_sina.imageset │ ├── Contents.json │ └── login_sina.png ├── login_weixin.imageset │ ├── Contents.json │ └── login_weixin.png ├── logisticsCricle.imageset │ ├── Contents.json │ └── logisticsCricle.png ├── logistics_arrow.imageset │ ├── Contents.json │ └── logistics_arrow.png ├── logistics_unpack.imageset │ ├── Contents.json │ └── logistics_unpack.png ├── look3D_productList.imageset │ ├── Contents.json │ └── look3D_productList.png ├── lookPanorama_productList.imageset │ ├── Contents.json │ └── lookPanorama_productList.png ├── lookkey.imageset │ ├── Contents.json │ └── lookkey.png ├── miaozuan.imageset │ ├── Contents.json │ └── miaozuan.png ├── nav_left.imageset │ ├── Contents.json │ └── nav_left.png ├── nav_right.imageset │ ├── Contents.json │ └── nav_right.png ├── nav_right_h.imageset │ ├── Contents.json │ └── nav_right_h.png ├── newDynamic_leftMenu.imageset │ ├── Contents.json │ └── newDynamic_leftMenu.png ├── nextStep_usual.imageset │ ├── Contents.json │ └── nextStep_usual.png ├── note_icon.imageset │ ├── Contents.json │ └── note_icon.png ├── on_comment.imageset │ ├── Contents.json │ └── on_comment.png ├── placeholder.imageset │ ├── Contents.json │ └── placeholder.png ├── preference.imageset │ ├── Contents.json │ └── preference.png ├── profile_touxiang.imageset │ ├── Contents.json │ └── profile_touxiang.png ├── profile_touxiang_big.imageset │ ├── Contents.json │ └── profile_touxiang_big.png ├── pull_down_BG.imageset │ ├── Contents.json │ └── pull_down_BG.png ├── qingli.imageset │ ├── Contents.json │ └── qingli.png ├── qitian.imageset │ ├── Contents.json │ └── qitian.png ├── quanjxiazai.imageset │ ├── Contents.json │ └── quanjxiazai.png ├── quanqiu.imageset │ ├── Contents.json │ └── quanqiu.png ├── rating-button-default-d.imageset │ ├── Contents.json │ └── rating-button-default-d.png ├── rating-button-default.imageset │ ├── Contents.json │ └── rating-button-default.png ├── rating-button-destructive-d.imageset │ ├── Contents.json │ └── rating-button-destructive-d.png ├── rating-button-destructive.imageset │ ├── Contents.json │ └── rating-button-destructive.png ├── rating_app.imageset │ ├── Contents.json │ └── rating_app.png ├── rating_app1.imageset │ ├── Contents.json │ └── rating_app1.png ├── red_delete.imageset │ ├── Contents.json │ └── red_delete.png ├── refresh_arrow.imageset │ ├── Contents.json │ └── refresh_arrow@2x.png ├── refresh_tips.imageset │ ├── Contents.json │ └── refresh_tips.png ├── saobg.imageset │ ├── Contents.json │ └── saobg.png ├── selected_anonymous.imageset │ ├── Contents.json │ └── selected_anonymous.png ├── sendBack_ afterSale_normal.imageset │ ├── Contents.json │ └── sendBack_ afterSale_normal.png ├── sendBack_ afterSale_selected.imageset │ ├── Contents.json │ └── sendBack_ afterSale_selected.png ├── shanchu.imageset │ ├── Contents.json │ └── shanchu.png ├── shangpinmaidian.imageset │ ├── Contents.json │ └── shangpinmaidian.png ├── share_QZone.imageset │ ├── Contents.json │ └── share_QZone.png ├── share_back.imageset │ ├── Contents.json │ └── share_back.png ├── share_copy.imageset │ ├── Contents.json │ └── share_copy.png ├── share_email.imageset │ ├── Contents.json │ └── share_email.png ├── share_friends.imageset │ ├── Contents.json │ └── share_friends.png ├── share_qq.imageset │ ├── Contents.json │ └── share_qq.png ├── share_sina.imageset │ ├── Contents.json │ └── share_sina.png ├── share_sms.imageset │ ├── Contents.json │ └── share_sms.png ├── share_weixin.imageset │ ├── Contents.json │ └── share_weixin.png ├── shiyongxuzhi.imageset │ ├── Contents.json │ └── shiyongxuzhi.png ├── shoppingCart_3DTouch.imageset │ ├── Contents.json │ └── shoppingCart_3DTouch.png ├── show3D_homePage.imageset │ ├── Contents.json │ └── show3D_homePage.png ├── show3D_introducePage.imageset │ ├── Contents.json │ └── show3D_introducePage.png ├── showFullView_homePage.imageset │ ├── Contents.json │ └── showFullView_homePage.png ├── showFullView_introducePage.imageset │ ├── Contents.json │ └── showFullView_introducePage.png ├── shuliangjia.imageset │ ├── Contents.json │ └── shuliangjia.png ├── shuliangjian.imageset │ ├── Contents.json │ └── shuliangjian.png ├── single_pre.imageset │ ├── Contents.json │ └── single_pre.png ├── slideSelectedBG.imageset │ ├── Contents.json │ └── slideSelectedBG.png ├── sold_out.imageset │ ├── Contents.json │ └── sold_out.png ├── tab_Category.imageset │ ├── Contents.json │ └── tab_Category.png ├── tab_Category_wt.imageset │ ├── Contents.json │ └── tab_Category_wt.png ├── tab_cart.imageset │ ├── Contents.json │ └── tab_cart.png ├── tab_cart_wt.imageset │ ├── Contents.json │ └── tab_cart_wt.png ├── tab_fieldOfView.imageset │ ├── Contents.json │ └── tab_fieldOfView.png ├── tab_fieldOfView_wt.imageset │ ├── Contents.json │ └── tab_fieldOfView_wt.png ├── tab_home.imageset │ ├── Contents.json │ └── tab_home.png ├── tab_home_wt.imageset │ ├── Contents.json │ └── tab_home_wt.png ├── tab_magic.imageset │ ├── Contents.json │ └── tab_magic.png ├── tab_magic_wt.imageset │ ├── Contents.json │ └── tab_magic_wt.png ├── tab_personal.imageset │ ├── Contents.json │ └── tab_personal.png ├── tab_personal_wt.imageset │ ├── Contents.json │ └── tab_personal_wt.png ├── tab_topic.imageset │ ├── Contents.json │ └── tab_topic.png ├── tab_topic_wt.imageset │ ├── Contents.json │ └── tab_topic_wt.png ├── thin_nav_back.imageset │ ├── Contents.json │ └── thin_nav_back.png ├── tianjia.imageset │ ├── Contents.json │ └── tianjia.png ├── timer_background.imageset │ ├── Contents.json │ └── timer_background.png ├── topic_carousel.imageset │ ├── Contents.json │ └── topic_carousel.png ├── touming.imageset │ ├── Contents.json │ └── touming.png ├── touxiang.imageset │ ├── Contents.json │ └── touxiang.png ├── transparence_gou.imageset │ ├── Contents.json │ └── transparence_gou.png ├── triangle_afterSale.imageset │ ├── Contents.json │ └── triangle_afterSale.png ├── un_touming.imageset │ ├── Contents.json │ └── un_touming.png ├── unchoose.imageset │ ├── Contents.json │ └── unchoose.png ├── unheart.imageset │ ├── Contents.json │ └── unheart.png ├── unlookkey.imageset │ ├── Contents.json │ └── unlookkey.png ├── unselected_anonymous.imageset │ ├── Contents.json │ └── unselected_anonymous.png ├── upSlide_productIntro.imageset │ ├── Contents.json │ └── upSlide_productIntro.png ├── upTowardsArrow.imageset │ ├── Contents.json │ └── upTowardsArrow.png ├── viewField_homePage.imageset │ ├── Contents.json │ └── viewField_homePage.png ├── viewInGrid.imageset │ ├── Contents.json │ └── viewInGrid.png ├── waitForReceiving_3DTouch.imageset │ ├── Contents.json │ └── waitForReceiving_3DTouch.png ├── weixinPay.imageset │ ├── Contents.json │ └── weixinPay.png ├── wishList_3DTouch.imageset │ ├── Contents.json │ └── wishList_3DTouch.png ├── wodeshoucang.imageset │ ├── Contents.json │ └── wodeshoucang.png ├── wujiaoxing.imageset │ ├── Contents.json │ └── wujiaoxing.png ├── wujiaoxing_on.imageset │ ├── Contents.json │ └── wujiaoxing_on.png ├── xuanzhong.imageset │ ├── Contents.json │ └── xuanzhong.png ├── yao.imageset │ ├── Contents.json │ └── yao.png ├── yuan.imageset │ ├── Contents.json │ └── yuan.png ├── zaixiankefu.imageset │ ├── Contents.json │ └── zaixiankefu.png ├── zaixianzixun.imageset │ ├── Contents.json │ └── zaixianzixun.png ├── zhedang.imageset │ ├── Contents.json │ └── zhedang.png ├── zhengpin.imageset │ ├── Contents.json │ └── zhengpin.png ├── zhiwen.imageset │ ├── Contents.json │ └── zhiwen.png ├── zhuanquan.imageset │ ├── Contents.json │ └── zhuanquan.png ├── 减100.imageset │ ├── Contents.json │ └── 减100.png └── 扫一扫.imageset │ ├── Contents.json │ └── 扫一扫.png ├── Base.lproj ├── LaunchScreen.storyboard └── Main.storyboard ├── HMSegmentedControl ├── HMSegmentedControl.h └── HMSegmentedControl.m ├── Info.plist ├── MH-Bridge.h ├── MHADScrollView.swift ├── MHAnimationHeartBtn.swift ├── MHBaseNavController.swift ├── MHCategoryBtn.swift ├── MHCategoryDetail.swift ├── MHCategoryDetailParser.swift ├── MHCategoryDetailViewController.swift ├── MHCategoryParser.swift ├── MHCategoryViewController.swift ├── MHCommonSetting.swift ├── MHConst.swift ├── MHCustomFilterPriceTableViewCell.swift ├── MHCustomFilterPriceTableViewCell.xib ├── MHExtension.swift ├── MHFOVCategoryCollectionViewCell.swift ├── MHFOVCategoryCollectionViewCell.xib ├── MHFieldOfViewCategoryView.swift ├── MHFieldOfViewDetailViewController.swift ├── MHFieldOfViewListTableViewCell.swift ├── MHFieldOfViewModel.swift ├── MHFieldOfViewParser.swift ├── MHFieldOfViewViewController.swift ├── MHFilterView.swift ├── MHGoodsTableViewCell.swift ├── MHHomeADTableViewCell.swift ├── MHHomeADTableViewCell.xib ├── MHHomeModel.swift ├── MHHomeNavigatorTableViewCell.swift ├── MHHomeNavigatorTableViewCell.xib ├── MHHomeParser.swift ├── MHHomePromotionsItem.swift ├── MHHomePromotionsTableViewCell.swift ├── MHHomePromotionsTableViewCell.xib ├── MHHomeTableViewController.swift ├── MHHomeViewfieldItem.swift ├── MHHomeViewfieldItem.xib ├── MHHomeViewfieldTableViewCell.swift ├── MHHomeViewfieldTableViewCell.xib ├── MHMeViewController.swift ├── MHNavItemCollectionViewCell.swift ├── MHNavItemCollectionViewCell.xib ├── MHNetwork.swift ├── MHRefresh.swift ├── MHRefreshBase.swift ├── MHRefreshCommon.swift ├── MHRefreshFooter.swift ├── MHRefreshHeader.swift ├── MHRefreshNormalFooter.swift ├── MHRefreshNormalFooter.xib ├── MHRefreshNormalHeader.swift ├── MHRefreshNormalHeader.xib ├── MHResponseModel.swift ├── MHScanResultViewController.swift ├── MHScanResultViewController.xib ├── MHScanerViewController.swift ├── MHScanerViewController.xib ├── MHTabBarController.swift ├── MHVerticalADView.swift ├── PrefixHeader.pch ├── category.json ├── category_hot.json ├── category_new.json ├── fieldOfView_all.json ├── fieldOfView_category.json ├── home.json ├── 分类gif.gif ├── 分类界面.png ├── 分类详情.png ├── 视野.png ├── 视野gif.gif ├── 首页.png └── 首页gif.gif /Podfile: -------------------------------------------------------------------------------- 1 | #Podfile 2 | platform :ios, '9.0' 3 | use_frameworks! 4 | 5 | target '妙汇' do 6 | pod 'Alamofire', '~> 4.0' 7 | pod 'SwiftyJSON' 8 | pod 'HandyJSON', '~> 1.2.0' 9 | pod 'Kingfisher', '~> 3.0' 10 | end 11 | -------------------------------------------------------------------------------- /Pods/Kingfisher/Sources/Box.swift: -------------------------------------------------------------------------------- 1 | // 2 | // Box.swift 3 | // Kingfisher 4 | // 5 | // Created by WANG WEI on 2016/09/12. 6 | // Copyright © 2016年 Wei Wang. All rights reserved. 7 | // 8 | 9 | import Foundation 10 | 11 | class Box { 12 | let value: T 13 | init(value: T) { 14 | self.value = value 15 | } 16 | } 17 | -------------------------------------------------------------------------------- /Pods/Target Support Files/Alamofire/Alamofire-dummy.m: -------------------------------------------------------------------------------- 1 | #import 2 | @interface PodsDummy_Alamofire : NSObject 3 | @end 4 | @implementation PodsDummy_Alamofire 5 | @end 6 | -------------------------------------------------------------------------------- /Pods/Target Support Files/Alamofire/Alamofire-prefix.pch: -------------------------------------------------------------------------------- 1 | #ifdef __OBJC__ 2 | #import 3 | #endif 4 | 5 | -------------------------------------------------------------------------------- /Pods/Target Support Files/Alamofire/Alamofire-umbrella.h: -------------------------------------------------------------------------------- 1 | #ifdef __OBJC__ 2 | #import 3 | #endif 4 | 5 | 6 | FOUNDATION_EXPORT double AlamofireVersionNumber; 7 | FOUNDATION_EXPORT const unsigned char AlamofireVersionString[]; 8 | 9 | -------------------------------------------------------------------------------- /Pods/Target Support Files/Alamofire/Alamofire.modulemap: -------------------------------------------------------------------------------- 1 | framework module Alamofire { 2 | umbrella header "Alamofire-umbrella.h" 3 | 4 | export * 5 | module * { export * } 6 | } 7 | -------------------------------------------------------------------------------- /Pods/Target Support Files/HandyJSON/HandyJSON-dummy.m: -------------------------------------------------------------------------------- 1 | #import 2 | @interface PodsDummy_HandyJSON : NSObject 3 | @end 4 | @implementation PodsDummy_HandyJSON 5 | @end 6 | -------------------------------------------------------------------------------- /Pods/Target Support Files/HandyJSON/HandyJSON-prefix.pch: -------------------------------------------------------------------------------- 1 | #ifdef __OBJC__ 2 | #import 3 | #endif 4 | 5 | -------------------------------------------------------------------------------- /Pods/Target Support Files/HandyJSON/HandyJSON-umbrella.h: -------------------------------------------------------------------------------- 1 | #ifdef __OBJC__ 2 | #import 3 | #endif 4 | 5 | #import "HandyJSON.h" 6 | 7 | FOUNDATION_EXPORT double HandyJSONVersionNumber; 8 | FOUNDATION_EXPORT const unsigned char HandyJSONVersionString[]; 9 | 10 | -------------------------------------------------------------------------------- /Pods/Target Support Files/HandyJSON/HandyJSON.modulemap: -------------------------------------------------------------------------------- 1 | framework module HandyJSON { 2 | umbrella header "HandyJSON-umbrella.h" 3 | 4 | export * 5 | module * { export * } 6 | } 7 | -------------------------------------------------------------------------------- /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 | #ifdef __OBJC__ 2 | #import 3 | #endif 4 | 5 | #import "Kingfisher.h" 6 | 7 | FOUNDATION_EXPORT double KingfisherVersionNumber; 8 | FOUNDATION_EXPORT const unsigned char KingfisherVersionString[]; 9 | 10 | -------------------------------------------------------------------------------- /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/Pods-妙汇/Pods-妙汇-dummy.m: -------------------------------------------------------------------------------- 1 | #import 2 | @interface PodsDummy_Pods___ : NSObject 3 | @end 4 | @implementation PodsDummy_Pods___ 5 | @end 6 | -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-妙汇/Pods-妙汇-umbrella.h: -------------------------------------------------------------------------------- 1 | #ifdef __OBJC__ 2 | #import 3 | #endif 4 | 5 | 6 | FOUNDATION_EXPORT double Pods___VersionNumber; 7 | FOUNDATION_EXPORT const unsigned char Pods___VersionString[]; 8 | 9 | -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-妙汇/Pods-妙汇.modulemap: -------------------------------------------------------------------------------- 1 | framework module Pods___ { 2 | umbrella header "Pods-妙汇-umbrella.h" 3 | 4 | export * 5 | module * { export * } 6 | } 7 | -------------------------------------------------------------------------------- /Pods/Target Support Files/SwiftyJSON/SwiftyJSON-dummy.m: -------------------------------------------------------------------------------- 1 | #import 2 | @interface PodsDummy_SwiftyJSON : NSObject 3 | @end 4 | @implementation PodsDummy_SwiftyJSON 5 | @end 6 | -------------------------------------------------------------------------------- /Pods/Target Support Files/SwiftyJSON/SwiftyJSON-prefix.pch: -------------------------------------------------------------------------------- 1 | #ifdef __OBJC__ 2 | #import 3 | #endif 4 | 5 | -------------------------------------------------------------------------------- /Pods/Target Support Files/SwiftyJSON/SwiftyJSON-umbrella.h: -------------------------------------------------------------------------------- 1 | #ifdef __OBJC__ 2 | #import 3 | #endif 4 | 5 | 6 | FOUNDATION_EXPORT double SwiftyJSONVersionNumber; 7 | FOUNDATION_EXPORT const unsigned char SwiftyJSONVersionString[]; 8 | 9 | -------------------------------------------------------------------------------- /Pods/Target Support Files/SwiftyJSON/SwiftyJSON.modulemap: -------------------------------------------------------------------------------- 1 | framework module SwiftyJSON { 2 | umbrella header "SwiftyJSON-umbrella.h" 3 | 4 | export * 5 | module * { export * } 6 | } 7 | -------------------------------------------------------------------------------- /妙汇.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /妙汇.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /妙汇/Assets.xcassets/AliPay.imageset/AliPay.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CCat00/miaohui--swift/4f6ac4ff367fcedd386435f517d51ddb4880d7ec/妙汇/Assets.xcassets/AliPay.imageset/AliPay.png -------------------------------------------------------------------------------- /妙汇/Assets.xcassets/AliPay.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "AliPay.png", 6 | "scale" : "1x" 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 | } -------------------------------------------------------------------------------- /妙汇/Assets.xcassets/AppIcon.appiconset/AppIcon29x29@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CCat00/miaohui--swift/4f6ac4ff367fcedd386435f517d51ddb4880d7ec/妙汇/Assets.xcassets/AppIcon.appiconset/AppIcon29x29@2x.png -------------------------------------------------------------------------------- /妙汇/Assets.xcassets/AppIcon.appiconset/AppIcon29x29@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CCat00/miaohui--swift/4f6ac4ff367fcedd386435f517d51ddb4880d7ec/妙汇/Assets.xcassets/AppIcon.appiconset/AppIcon29x29@3x.png -------------------------------------------------------------------------------- /妙汇/Assets.xcassets/AppIcon.appiconset/AppIcon40x40@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CCat00/miaohui--swift/4f6ac4ff367fcedd386435f517d51ddb4880d7ec/妙汇/Assets.xcassets/AppIcon.appiconset/AppIcon40x40@2x.png -------------------------------------------------------------------------------- /妙汇/Assets.xcassets/AppIcon.appiconset/AppIcon40x40@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CCat00/miaohui--swift/4f6ac4ff367fcedd386435f517d51ddb4880d7ec/妙汇/Assets.xcassets/AppIcon.appiconset/AppIcon40x40@3x.png -------------------------------------------------------------------------------- /妙汇/Assets.xcassets/AppIcon.appiconset/AppIcon40x40~ipad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CCat00/miaohui--swift/4f6ac4ff367fcedd386435f517d51ddb4880d7ec/妙汇/Assets.xcassets/AppIcon.appiconset/AppIcon40x40~ipad.png -------------------------------------------------------------------------------- /妙汇/Assets.xcassets/AppIcon.appiconset/AppIcon60x60@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CCat00/miaohui--swift/4f6ac4ff367fcedd386435f517d51ddb4880d7ec/妙汇/Assets.xcassets/AppIcon.appiconset/AppIcon60x60@2x.png -------------------------------------------------------------------------------- /妙汇/Assets.xcassets/AppIcon.appiconset/AppIcon60x60@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CCat00/miaohui--swift/4f6ac4ff367fcedd386435f517d51ddb4880d7ec/妙汇/Assets.xcassets/AppIcon.appiconset/AppIcon60x60@3x.png -------------------------------------------------------------------------------- /妙汇/Assets.xcassets/ApplePay.imageset/ApplePay.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CCat00/miaohui--swift/4f6ac4ff367fcedd386435f517d51ddb4880d7ec/妙汇/Assets.xcassets/ApplePay.imageset/ApplePay.png -------------------------------------------------------------------------------- /妙汇/Assets.xcassets/ApplePay.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "ApplePay.png", 6 | "scale" : "1x" 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 | } -------------------------------------------------------------------------------- /妙汇/Assets.xcassets/Arror_left_darkgray.imageset/Arror_left_darkgray.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CCat00/miaohui--swift/4f6ac4ff367fcedd386435f517d51ddb4880d7ec/妙汇/Assets.xcassets/Arror_left_darkgray.imageset/Arror_left_darkgray.png -------------------------------------------------------------------------------- /妙汇/Assets.xcassets/Arror_left_darkgray.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "Arror_left_darkgray.png", 6 | "scale" : "1x" 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 | } -------------------------------------------------------------------------------- /妙汇/Assets.xcassets/Arror_left_lightgray.imageset/Arror_left_lightgray.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CCat00/miaohui--swift/4f6ac4ff367fcedd386435f517d51ddb4880d7ec/妙汇/Assets.xcassets/Arror_left_lightgray.imageset/Arror_left_lightgray.png -------------------------------------------------------------------------------- /妙汇/Assets.xcassets/Arror_left_lightgray.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "Arror_left_lightgray.png", 6 | "scale" : "1x" 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 | } -------------------------------------------------------------------------------- /妙汇/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "version" : 1, 4 | "author" : "xcode" 5 | } 6 | } -------------------------------------------------------------------------------- /妙汇/Assets.xcassets/LaunchImage.launchimage/LaunchImage-800-667h@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CCat00/miaohui--swift/4f6ac4ff367fcedd386435f517d51ddb4880d7ec/妙汇/Assets.xcassets/LaunchImage.launchimage/LaunchImage-800-667h@2x.png -------------------------------------------------------------------------------- /妙汇/Assets.xcassets/LaunchImage.launchimage/LaunchImage-800-Portrait-736h@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CCat00/miaohui--swift/4f6ac4ff367fcedd386435f517d51ddb4880d7ec/妙汇/Assets.xcassets/LaunchImage.launchimage/LaunchImage-800-Portrait-736h@3x.png -------------------------------------------------------------------------------- /妙汇/Assets.xcassets/MessageCenenter.imageset/MessageCenenter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CCat00/miaohui--swift/4f6ac4ff367fcedd386435f517d51ddb4880d7ec/妙汇/Assets.xcassets/MessageCenenter.imageset/MessageCenenter.png -------------------------------------------------------------------------------- /妙汇/Assets.xcassets/MessageCenenter.imageset/MessageCenenter@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CCat00/miaohui--swift/4f6ac4ff367fcedd386435f517d51ddb4880d7ec/妙汇/Assets.xcassets/MessageCenenter.imageset/MessageCenenter@2x.png -------------------------------------------------------------------------------- /妙汇/Assets.xcassets/MessageCenenter_new.imageset/MessageCenenter_new.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CCat00/miaohui--swift/4f6ac4ff367fcedd386435f517d51ddb4880d7ec/妙汇/Assets.xcassets/MessageCenenter_new.imageset/MessageCenenter_new.png -------------------------------------------------------------------------------- /妙汇/Assets.xcassets/MessageCenenter_new.imageset/MessageCenenter_new@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CCat00/miaohui--swift/4f6ac4ff367fcedd386435f517d51ddb4880d7ec/妙汇/Assets.xcassets/MessageCenenter_new.imageset/MessageCenenter_new@2x.png -------------------------------------------------------------------------------- /妙汇/Assets.xcassets/MessageCenter_black.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "MessageCenter_black.png", 6 | "scale" : "1x" 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 | } -------------------------------------------------------------------------------- /妙汇/Assets.xcassets/MessageCenter_black.imageset/MessageCenter_black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CCat00/miaohui--swift/4f6ac4ff367fcedd386435f517d51ddb4880d7ec/妙汇/Assets.xcassets/MessageCenter_black.imageset/MessageCenter_black.png -------------------------------------------------------------------------------- /妙汇/Assets.xcassets/MessageCenter_black@1x.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "MessageCenter_black@1x.png", 6 | "scale" : "1x" 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 | } -------------------------------------------------------------------------------- /妙汇/Assets.xcassets/MessageCenter_black@1x.imageset/MessageCenter_black@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CCat00/miaohui--swift/4f6ac4ff367fcedd386435f517d51ddb4880d7ec/妙汇/Assets.xcassets/MessageCenter_black@1x.imageset/MessageCenter_black@1x.png -------------------------------------------------------------------------------- /妙汇/Assets.xcassets/MessageCenter_black_new.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "MessageCenter_black_new.png", 6 | "scale" : "1x" 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 | } -------------------------------------------------------------------------------- /妙汇/Assets.xcassets/MessageCenter_black_new.imageset/MessageCenter_black_new.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CCat00/miaohui--swift/4f6ac4ff367fcedd386435f517d51ddb4880d7ec/妙汇/Assets.xcassets/MessageCenter_black_new.imageset/MessageCenter_black_new.png -------------------------------------------------------------------------------- /妙汇/Assets.xcassets/MessageCenter_black_new@1x.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "MessageCenter_black_new@1x.png", 6 | "scale" : "1x" 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 | } -------------------------------------------------------------------------------- /妙汇/Assets.xcassets/MessageCenter_black_new@1x.imageset/MessageCenter_black_new@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CCat00/miaohui--swift/4f6ac4ff367fcedd386435f517d51ddb4880d7ec/妙汇/Assets.xcassets/MessageCenter_black_new@1x.imageset/MessageCenter_black_new@1x.png -------------------------------------------------------------------------------- /妙汇/Assets.xcassets/More.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "More.png", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "filename" : "More@2x.png", 11 | "scale" : "2x" 12 | }, 13 | { 14 | "idiom" : "universal", 15 | "scale" : "3x" 16 | } 17 | ], 18 | "info" : { 19 | "version" : 1, 20 | "author" : "xcode" 21 | } 22 | } -------------------------------------------------------------------------------- /妙汇/Assets.xcassets/More.imageset/More.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CCat00/miaohui--swift/4f6ac4ff367fcedd386435f517d51ddb4880d7ec/妙汇/Assets.xcassets/More.imageset/More.png -------------------------------------------------------------------------------- /妙汇/Assets.xcassets/More.imageset/More@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CCat00/miaohui--swift/4f6ac4ff367fcedd386435f517d51ddb4880d7ec/妙汇/Assets.xcassets/More.imageset/More@2x.png -------------------------------------------------------------------------------- /妙汇/Assets.xcassets/More_black.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "More_black.png", 6 | "scale" : "1x" 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 | } -------------------------------------------------------------------------------- /妙汇/Assets.xcassets/More_black.imageset/More_black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CCat00/miaohui--swift/4f6ac4ff367fcedd386435f517d51ddb4880d7ec/妙汇/Assets.xcassets/More_black.imageset/More_black.png -------------------------------------------------------------------------------- /妙汇/Assets.xcassets/QQ_gray_icon.imageset/QQ_gray_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CCat00/miaohui--swift/4f6ac4ff367fcedd386435f517d51ddb4880d7ec/妙汇/Assets.xcassets/QQ_gray_icon.imageset/QQ_gray_icon.png -------------------------------------------------------------------------------- /妙汇/Assets.xcassets/QQ_gray_icon.imageset/QQ_gray_icon@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CCat00/miaohui--swift/4f6ac4ff367fcedd386435f517d51ddb4880d7ec/妙汇/Assets.xcassets/QQ_gray_icon.imageset/QQ_gray_icon@2x.png -------------------------------------------------------------------------------- /妙汇/Assets.xcassets/UIBarButtonItemGrid.imageset/UIBarButtonItemGrid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CCat00/miaohui--swift/4f6ac4ff367fcedd386435f517d51ddb4880d7ec/妙汇/Assets.xcassets/UIBarButtonItemGrid.imageset/UIBarButtonItemGrid.png -------------------------------------------------------------------------------- /妙汇/Assets.xcassets/UIBarButtonItemGrid.imageset/UIBarButtonItemGrid@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CCat00/miaohui--swift/4f6ac4ff367fcedd386435f517d51ddb4880d7ec/妙汇/Assets.xcassets/UIBarButtonItemGrid.imageset/UIBarButtonItemGrid@2x.png -------------------------------------------------------------------------------- /妙汇/Assets.xcassets/Weibo_gray_icon.imageset/Weibo_gray_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CCat00/miaohui--swift/4f6ac4ff367fcedd386435f517d51ddb4880d7ec/妙汇/Assets.xcassets/Weibo_gray_icon.imageset/Weibo_gray_icon.png -------------------------------------------------------------------------------- /妙汇/Assets.xcassets/Weibo_gray_icon.imageset/Weibo_gray_icon@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CCat00/miaohui--swift/4f6ac4ff367fcedd386435f517d51ddb4880d7ec/妙汇/Assets.xcassets/Weibo_gray_icon.imageset/Weibo_gray_icon@2x.png -------------------------------------------------------------------------------- /妙汇/Assets.xcassets/Weixin_gray_icon.imageset/Weixin_gray_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CCat00/miaohui--swift/4f6ac4ff367fcedd386435f517d51ddb4880d7ec/妙汇/Assets.xcassets/Weixin_gray_icon.imageset/Weixin_gray_icon.png -------------------------------------------------------------------------------- /妙汇/Assets.xcassets/Weixin_gray_icon.imageset/Weixin_gray_icon@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CCat00/miaohui--swift/4f6ac4ff367fcedd386435f517d51ddb4880d7ec/妙汇/Assets.xcassets/Weixin_gray_icon.imageset/Weixin_gray_icon@2x.png -------------------------------------------------------------------------------- /妙汇/Assets.xcassets/XQ_360.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "XQ_360.png", 6 | "scale" : "1x" 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 | } -------------------------------------------------------------------------------- /妙汇/Assets.xcassets/XQ_360.imageset/XQ_360.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CCat00/miaohui--swift/4f6ac4ff367fcedd386435f517d51ddb4880d7ec/妙汇/Assets.xcassets/XQ_360.imageset/XQ_360.png -------------------------------------------------------------------------------- /妙汇/Assets.xcassets/XQ_fenxiang.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "XQ_fenxiang.png", 6 | "scale" : "1x" 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 | } -------------------------------------------------------------------------------- /妙汇/Assets.xcassets/XQ_fenxiang.imageset/XQ_fenxiang.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CCat00/miaohui--swift/4f6ac4ff367fcedd386435f517d51ddb4880d7ec/妙汇/Assets.xcassets/XQ_fenxiang.imageset/XQ_fenxiang.png -------------------------------------------------------------------------------- /妙汇/Assets.xcassets/XQ_like.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "XQ_like.png", 6 | "scale" : "1x" 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 | } -------------------------------------------------------------------------------- /妙汇/Assets.xcassets/XQ_like.imageset/XQ_like.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CCat00/miaohui--swift/4f6ac4ff367fcedd386435f517d51ddb4880d7ec/妙汇/Assets.xcassets/XQ_like.imageset/XQ_like.png -------------------------------------------------------------------------------- /妙汇/Assets.xcassets/XQ_pinglun.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "XQ_pinglun.png", 6 | "scale" : "1x" 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 | } -------------------------------------------------------------------------------- /妙汇/Assets.xcassets/XQ_pinglun.imageset/XQ_pinglun.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CCat00/miaohui--swift/4f6ac4ff367fcedd386435f517d51ddb4880d7ec/妙汇/Assets.xcassets/XQ_pinglun.imageset/XQ_pinglun.png -------------------------------------------------------------------------------- /妙汇/Assets.xcassets/XQon_like.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "XQon_like.png", 6 | "scale" : "1x" 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 | } -------------------------------------------------------------------------------- /妙汇/Assets.xcassets/XQon_like.imageset/XQon_like.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CCat00/miaohui--swift/4f6ac4ff367fcedd386435f517d51ddb4880d7ec/妙汇/Assets.xcassets/XQon_like.imageset/XQon_like.png -------------------------------------------------------------------------------- /妙汇/Assets.xcassets/account_email.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "account_email.png", 6 | "scale" : "1x" 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 | } -------------------------------------------------------------------------------- /妙汇/Assets.xcassets/account_email.imageset/account_email.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CCat00/miaohui--swift/4f6ac4ff367fcedd386435f517d51ddb4880d7ec/妙汇/Assets.xcassets/account_email.imageset/account_email.png -------------------------------------------------------------------------------- /妙汇/Assets.xcassets/account_name.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "account_name.png", 6 | "scale" : "1x" 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 | } -------------------------------------------------------------------------------- /妙汇/Assets.xcassets/account_name.imageset/account_name.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CCat00/miaohui--swift/4f6ac4ff367fcedd386435f517d51ddb4880d7ec/妙汇/Assets.xcassets/account_name.imageset/account_name.png -------------------------------------------------------------------------------- /妙汇/Assets.xcassets/account_password.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "account_password.png", 6 | "scale" : "1x" 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 | } -------------------------------------------------------------------------------- /妙汇/Assets.xcassets/account_password.imageset/account_password.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CCat00/miaohui--swift/4f6ac4ff367fcedd386435f517d51ddb4880d7ec/妙汇/Assets.xcassets/account_password.imageset/account_password.png -------------------------------------------------------------------------------- /妙汇/Assets.xcassets/account_phone.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "account_phone.png", 6 | "scale" : "1x" 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 | } -------------------------------------------------------------------------------- /妙汇/Assets.xcassets/account_phone.imageset/account_phone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CCat00/miaohui--swift/4f6ac4ff367fcedd386435f517d51ddb4880d7ec/妙汇/Assets.xcassets/account_phone.imageset/account_phone.png -------------------------------------------------------------------------------- /妙汇/Assets.xcassets/account_revise.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "account_revise.png", 6 | "scale" : "1x" 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 | } -------------------------------------------------------------------------------- /妙汇/Assets.xcassets/account_revise.imageset/account_revise.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CCat00/miaohui--swift/4f6ac4ff367fcedd386435f517d51ddb4880d7ec/妙汇/Assets.xcassets/account_revise.imageset/account_revise.png -------------------------------------------------------------------------------- /妙汇/Assets.xcassets/add.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "add.png", 6 | "scale" : "1x" 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 | } -------------------------------------------------------------------------------- /妙汇/Assets.xcassets/add.imageset/add.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CCat00/miaohui--swift/4f6ac4ff367fcedd386435f517d51ddb4880d7ec/妙汇/Assets.xcassets/add.imageset/add.png -------------------------------------------------------------------------------- /妙汇/Assets.xcassets/addToShoppingCart.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "addToShoppingCart.png", 6 | "scale" : "1x" 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 | } -------------------------------------------------------------------------------- /妙汇/Assets.xcassets/addToShoppingCart.imageset/addToShoppingCart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CCat00/miaohui--swift/4f6ac4ff367fcedd386435f517d51ddb4880d7ec/妙汇/Assets.xcassets/addToShoppingCart.imageset/addToShoppingCart.png -------------------------------------------------------------------------------- /妙汇/Assets.xcassets/addressBG.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "addressBG.png", 6 | "scale" : "1x" 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 | } -------------------------------------------------------------------------------- /妙汇/Assets.xcassets/addressBG.imageset/addressBG.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CCat00/miaohui--swift/4f6ac4ff367fcedd386435f517d51ddb4880d7ec/妙汇/Assets.xcassets/addressBG.imageset/addressBG.png -------------------------------------------------------------------------------- /妙汇/Assets.xcassets/all_order.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "all_order.png", 6 | "scale" : "1x" 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 | } -------------------------------------------------------------------------------- /妙汇/Assets.xcassets/all_order.imageset/all_order.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CCat00/miaohui--swift/4f6ac4ff367fcedd386435f517d51ddb4880d7ec/妙汇/Assets.xcassets/all_order.imageset/all_order.png -------------------------------------------------------------------------------- /妙汇/Assets.xcassets/appicon.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "appicon.png", 6 | "scale" : "1x" 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 | } -------------------------------------------------------------------------------- /妙汇/Assets.xcassets/appicon.imageset/appicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CCat00/miaohui--swift/4f6ac4ff367fcedd386435f517d51ddb4880d7ec/妙汇/Assets.xcassets/appicon.imageset/appicon.png -------------------------------------------------------------------------------- /妙汇/Assets.xcassets/applyFor_ afterSale_normal.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "applyFor_ afterSale_normal.png", 6 | "scale" : "1x" 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 | } -------------------------------------------------------------------------------- /妙汇/Assets.xcassets/applyFor_ afterSale_normal.imageset/applyFor_ afterSale_normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CCat00/miaohui--swift/4f6ac4ff367fcedd386435f517d51ddb4880d7ec/妙汇/Assets.xcassets/applyFor_ afterSale_normal.imageset/applyFor_ afterSale_normal.png -------------------------------------------------------------------------------- /妙汇/Assets.xcassets/applyFor_ afterSale_selected.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "applyFor_ afterSale_selected.png", 6 | "scale" : "1x" 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 | } -------------------------------------------------------------------------------- /妙汇/Assets.xcassets/applyFor_ afterSale_selected.imageset/applyFor_ afterSale_selected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CCat00/miaohui--swift/4f6ac4ff367fcedd386435f517d51ddb4880d7ec/妙汇/Assets.xcassets/applyFor_ afterSale_selected.imageset/applyFor_ afterSale_selected.png -------------------------------------------------------------------------------- /妙汇/Assets.xcassets/arrow_left.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "arrow_left.png", 6 | "scale" : "1x" 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 | } -------------------------------------------------------------------------------- /妙汇/Assets.xcassets/arrow_left.imageset/arrow_left.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CCat00/miaohui--swift/4f6ac4ff367fcedd386435f517d51ddb4880d7ec/妙汇/Assets.xcassets/arrow_left.imageset/arrow_left.png -------------------------------------------------------------------------------- /妙汇/Assets.xcassets/baiyou.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "baiyou.png", 6 | "scale" : "1x" 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 | } -------------------------------------------------------------------------------- /妙汇/Assets.xcassets/baiyou.imageset/baiyou.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CCat00/miaohui--swift/4f6ac4ff367fcedd386435f517d51ddb4880d7ec/妙汇/Assets.xcassets/baiyou.imageset/baiyou.png -------------------------------------------------------------------------------- /妙汇/Assets.xcassets/bind_button_bg.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "bind_button_bg.png", 6 | "scale" : "1x" 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 | } -------------------------------------------------------------------------------- /妙汇/Assets.xcassets/bind_button_bg.imageset/bind_button_bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CCat00/miaohui--swift/4f6ac4ff367fcedd386435f517d51ddb4880d7ec/妙汇/Assets.xcassets/bind_button_bg.imageset/bind_button_bg.png -------------------------------------------------------------------------------- /妙汇/Assets.xcassets/bind_email.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "bind_email.png", 6 | "scale" : "1x" 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 | } -------------------------------------------------------------------------------- /妙汇/Assets.xcassets/bind_email.imageset/bind_email.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CCat00/miaohui--swift/4f6ac4ff367fcedd386435f517d51ddb4880d7ec/妙汇/Assets.xcassets/bind_email.imageset/bind_email.png -------------------------------------------------------------------------------- /妙汇/Assets.xcassets/bind_mobile.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "bind_mobile.png", 6 | "scale" : "1x" 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 | } -------------------------------------------------------------------------------- /妙汇/Assets.xcassets/bind_mobile.imageset/bind_mobile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CCat00/miaohui--swift/4f6ac4ff367fcedd386435f517d51ddb4880d7ec/妙汇/Assets.xcassets/bind_mobile.imageset/bind_mobile.png -------------------------------------------------------------------------------- /妙汇/Assets.xcassets/bind_qq.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "bind_qq.png", 6 | "scale" : "1x" 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 | } -------------------------------------------------------------------------------- /妙汇/Assets.xcassets/bind_qq.imageset/bind_qq.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CCat00/miaohui--swift/4f6ac4ff367fcedd386435f517d51ddb4880d7ec/妙汇/Assets.xcassets/bind_qq.imageset/bind_qq.png -------------------------------------------------------------------------------- /妙汇/Assets.xcassets/bind_qq01.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "bind_qq01.png", 6 | "scale" : "1x" 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 | } -------------------------------------------------------------------------------- /妙汇/Assets.xcassets/bind_qq01.imageset/bind_qq01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CCat00/miaohui--swift/4f6ac4ff367fcedd386435f517d51ddb4880d7ec/妙汇/Assets.xcassets/bind_qq01.imageset/bind_qq01.png -------------------------------------------------------------------------------- /妙汇/Assets.xcassets/bind_weibo.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "bind_weibo.png", 6 | "scale" : "1x" 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 | } -------------------------------------------------------------------------------- /妙汇/Assets.xcassets/bind_weibo.imageset/bind_weibo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CCat00/miaohui--swift/4f6ac4ff367fcedd386435f517d51ddb4880d7ec/妙汇/Assets.xcassets/bind_weibo.imageset/bind_weibo.png -------------------------------------------------------------------------------- /妙汇/Assets.xcassets/bind_weibo01.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "bind_weibo01.png", 6 | "scale" : "1x" 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 | } -------------------------------------------------------------------------------- /妙汇/Assets.xcassets/bind_weibo01.imageset/bind_weibo01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CCat00/miaohui--swift/4f6ac4ff367fcedd386435f517d51ddb4880d7ec/妙汇/Assets.xcassets/bind_weibo01.imageset/bind_weibo01.png -------------------------------------------------------------------------------- /妙汇/Assets.xcassets/bind_weixin.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "bind_weixin.png", 6 | "scale" : "1x" 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 | } -------------------------------------------------------------------------------- /妙汇/Assets.xcassets/bind_weixin.imageset/bind_weixin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CCat00/miaohui--swift/4f6ac4ff367fcedd386435f517d51ddb4880d7ec/妙汇/Assets.xcassets/bind_weixin.imageset/bind_weixin.png -------------------------------------------------------------------------------- /妙汇/Assets.xcassets/bind_weixin01.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "bind_weixin01.png", 6 | "scale" : "1x" 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 | } -------------------------------------------------------------------------------- /妙汇/Assets.xcassets/bind_weixin01.imageset/bind_weixin01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CCat00/miaohui--swift/4f6ac4ff367fcedd386435f517d51ddb4880d7ec/妙汇/Assets.xcassets/bind_weixin01.imageset/bind_weixin01.png -------------------------------------------------------------------------------- /妙汇/Assets.xcassets/bishi.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "bishi.png", 6 | "scale" : "1x" 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 | } -------------------------------------------------------------------------------- /妙汇/Assets.xcassets/bishi.imageset/bishi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CCat00/miaohui--swift/4f6ac4ff367fcedd386435f517d51ddb4880d7ec/妙汇/Assets.xcassets/bishi.imageset/bishi.png -------------------------------------------------------------------------------- /妙汇/Assets.xcassets/button_background.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "button_background.png", 6 | "scale" : "1x" 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 | } -------------------------------------------------------------------------------- /妙汇/Assets.xcassets/button_background.imageset/button_background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CCat00/miaohui--swift/4f6ac4ff367fcedd386435f517d51ddb4880d7ec/妙汇/Assets.xcassets/button_background.imageset/button_background.png -------------------------------------------------------------------------------- /妙汇/Assets.xcassets/button_background_black.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "button_background_black.png", 6 | "scale" : "1x" 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 | } -------------------------------------------------------------------------------- /妙汇/Assets.xcassets/button_background_black.imageset/button_background_black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CCat00/miaohui--swift/4f6ac4ff367fcedd386435f517d51ddb4880d7ec/妙汇/Assets.xcassets/button_background_black.imageset/button_background_black.png -------------------------------------------------------------------------------- /妙汇/Assets.xcassets/button_background_black_h.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "button_background_black_h.png", 6 | "scale" : "1x" 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 | } -------------------------------------------------------------------------------- /妙汇/Assets.xcassets/button_background_black_h.imageset/button_background_black_h.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CCat00/miaohui--swift/4f6ac4ff367fcedd386435f517d51ddb4880d7ec/妙汇/Assets.xcassets/button_background_black_h.imageset/button_background_black_h.png -------------------------------------------------------------------------------- /妙汇/Assets.xcassets/button_background_yellow.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "button_background_yellow.png", 6 | "scale" : "1x" 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 | } -------------------------------------------------------------------------------- /妙汇/Assets.xcassets/button_background_yellow.imageset/button_background_yellow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CCat00/miaohui--swift/4f6ac4ff367fcedd386435f517d51ddb4880d7ec/妙汇/Assets.xcassets/button_background_yellow.imageset/button_background_yellow.png -------------------------------------------------------------------------------- /妙汇/Assets.xcassets/button_bg_gray.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "button_bg_gray.png", 6 | "scale" : "1x" 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 | } -------------------------------------------------------------------------------- /妙汇/Assets.xcassets/button_bg_gray.imageset/button_bg_gray.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CCat00/miaohui--swift/4f6ac4ff367fcedd386435f517d51ddb4880d7ec/妙汇/Assets.xcassets/button_bg_gray.imageset/button_bg_gray.png -------------------------------------------------------------------------------- /妙汇/Assets.xcassets/button_bg_red.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "button_bg_red.png", 6 | "scale" : "1x" 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 | } -------------------------------------------------------------------------------- /妙汇/Assets.xcassets/button_bg_red.imageset/button_bg_red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CCat00/miaohui--swift/4f6ac4ff367fcedd386435f517d51ddb4880d7ec/妙汇/Assets.xcassets/button_bg_red.imageset/button_bg_red.png -------------------------------------------------------------------------------- /妙汇/Assets.xcassets/button_bg_white_alpha.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "button_bg_white_alpha.png", 6 | "scale" : "1x" 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 | } -------------------------------------------------------------------------------- /妙汇/Assets.xcassets/button_bg_white_alpha.imageset/button_bg_white_alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CCat00/miaohui--swift/4f6ac4ff367fcedd386435f517d51ddb4880d7ec/妙汇/Assets.xcassets/button_bg_white_alpha.imageset/button_bg_white_alpha.png -------------------------------------------------------------------------------- /妙汇/Assets.xcassets/button_bg_yellow.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "button_bg_yellow.png", 6 | "scale" : "1x" 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 | } -------------------------------------------------------------------------------- /妙汇/Assets.xcassets/button_bg_yellow.imageset/button_bg_yellow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CCat00/miaohui--swift/4f6ac4ff367fcedd386435f517d51ddb4880d7ec/妙汇/Assets.xcassets/button_bg_yellow.imageset/button_bg_yellow.png -------------------------------------------------------------------------------- /妙汇/Assets.xcassets/camera_black.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "camera_black.png", 6 | "scale" : "1x" 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 | } -------------------------------------------------------------------------------- /妙汇/Assets.xcassets/camera_black.imageset/camera_black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CCat00/miaohui--swift/4f6ac4ff367fcedd386435f517d51ddb4880d7ec/妙汇/Assets.xcassets/camera_black.imageset/camera_black.png -------------------------------------------------------------------------------- /妙汇/Assets.xcassets/camera_on_comment.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "camera_on_comment.png", 6 | "scale" : "1x" 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 | } -------------------------------------------------------------------------------- /妙汇/Assets.xcassets/camera_on_comment.imageset/camera_on_comment.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CCat00/miaohui--swift/4f6ac4ff367fcedd386435f517d51ddb4880d7ec/妙汇/Assets.xcassets/camera_on_comment.imageset/camera_on_comment.png -------------------------------------------------------------------------------- /妙汇/Assets.xcassets/cameral_white.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "cameral_white.png", 6 | "scale" : "1x" 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 | } -------------------------------------------------------------------------------- /妙汇/Assets.xcassets/cameral_white.imageset/cameral_white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CCat00/miaohui--swift/4f6ac4ff367fcedd386435f517d51ddb4880d7ec/妙汇/Assets.xcassets/cameral_white.imageset/cameral_white.png -------------------------------------------------------------------------------- /妙汇/Assets.xcassets/carousel_select.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "carousel_select.png", 6 | "scale" : "1x" 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 | } -------------------------------------------------------------------------------- /妙汇/Assets.xcassets/carousel_select.imageset/carousel_select.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CCat00/miaohui--swift/4f6ac4ff367fcedd386435f517d51ddb4880d7ec/妙汇/Assets.xcassets/carousel_select.imageset/carousel_select.png -------------------------------------------------------------------------------- /妙汇/Assets.xcassets/carousel_un_select.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "carousel_un_select.png", 6 | "scale" : "1x" 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 | } -------------------------------------------------------------------------------- /妙汇/Assets.xcassets/carousel_un_select.imageset/carousel_un_select.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CCat00/miaohui--swift/4f6ac4ff367fcedd386435f517d51ddb4880d7ec/妙汇/Assets.xcassets/carousel_un_select.imageset/carousel_un_select.png -------------------------------------------------------------------------------- /妙汇/Assets.xcassets/cart_decrement.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "cart_decrement.png", 6 | "scale" : "1x" 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 | } -------------------------------------------------------------------------------- /妙汇/Assets.xcassets/cart_decrement.imageset/cart_decrement.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CCat00/miaohui--swift/4f6ac4ff367fcedd386435f517d51ddb4880d7ec/妙汇/Assets.xcassets/cart_decrement.imageset/cart_decrement.png -------------------------------------------------------------------------------- /妙汇/Assets.xcassets/cart_increment.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "cart_increment.png", 6 | "scale" : "1x" 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 | } -------------------------------------------------------------------------------- /妙汇/Assets.xcassets/cart_increment.imageset/cart_increment.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CCat00/miaohui--swift/4f6ac4ff367fcedd386435f517d51ddb4880d7ec/妙汇/Assets.xcassets/cart_increment.imageset/cart_increment.png -------------------------------------------------------------------------------- /妙汇/Assets.xcassets/choose_like.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "choose_like.png", 6 | "scale" : "1x" 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 | } -------------------------------------------------------------------------------- /妙汇/Assets.xcassets/choose_like.imageset/choose_like.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CCat00/miaohui--swift/4f6ac4ff367fcedd386435f517d51ddb4880d7ec/妙汇/Assets.xcassets/choose_like.imageset/choose_like.png -------------------------------------------------------------------------------- /妙汇/Assets.xcassets/choose_unlike.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "choose_unlike.png", 6 | "scale" : "1x" 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 | } -------------------------------------------------------------------------------- /妙汇/Assets.xcassets/choose_unlike.imageset/choose_unlike.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CCat00/miaohui--swift/4f6ac4ff367fcedd386435f517d51ddb4880d7ec/妙汇/Assets.xcassets/choose_unlike.imageset/choose_unlike.png -------------------------------------------------------------------------------- /妙汇/Assets.xcassets/close_ad.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "close_ad.png", 6 | "scale" : "1x" 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 | } -------------------------------------------------------------------------------- /妙汇/Assets.xcassets/close_ad.imageset/close_ad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CCat00/miaohui--swift/4f6ac4ff367fcedd386435f517d51ddb4880d7ec/妙汇/Assets.xcassets/close_ad.imageset/close_ad.png -------------------------------------------------------------------------------- /妙汇/Assets.xcassets/comment_plus.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "comment_plus.png", 6 | "scale" : "1x" 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 | } -------------------------------------------------------------------------------- /妙汇/Assets.xcassets/comment_plus.imageset/comment_plus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CCat00/miaohui--swift/4f6ac4ff367fcedd386435f517d51ddb4880d7ec/妙汇/Assets.xcassets/comment_plus.imageset/comment_plus.png -------------------------------------------------------------------------------- /妙汇/Assets.xcassets/common_checkbox.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "common_checkbox.png", 6 | "scale" : "1x" 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 | } -------------------------------------------------------------------------------- /妙汇/Assets.xcassets/common_checkbox.imageset/common_checkbox.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CCat00/miaohui--swift/4f6ac4ff367fcedd386435f517d51ddb4880d7ec/妙汇/Assets.xcassets/common_checkbox.imageset/common_checkbox.png -------------------------------------------------------------------------------- /妙汇/Assets.xcassets/common_checkbox_on.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "common_checkbox_on.png", 6 | "scale" : "1x" 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 | } -------------------------------------------------------------------------------- /妙汇/Assets.xcassets/common_checkbox_on.imageset/common_checkbox_on.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CCat00/miaohui--swift/4f6ac4ff367fcedd386435f517d51ddb4880d7ec/妙汇/Assets.xcassets/common_checkbox_on.imageset/common_checkbox_on.png -------------------------------------------------------------------------------- /妙汇/Assets.xcassets/compeleted_ afterSale_normal.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "compeleted_ afterSale_normal.png", 6 | "scale" : "1x" 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 | } -------------------------------------------------------------------------------- /妙汇/Assets.xcassets/compeleted_ afterSale_normal.imageset/compeleted_ afterSale_normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CCat00/miaohui--swift/4f6ac4ff367fcedd386435f517d51ddb4880d7ec/妙汇/Assets.xcassets/compeleted_ afterSale_normal.imageset/compeleted_ afterSale_normal.png -------------------------------------------------------------------------------- /妙汇/Assets.xcassets/compeleted_ afterSale_selected.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "compeleted_ afterSale_selected.png", 6 | "scale" : "1x" 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 | } -------------------------------------------------------------------------------- /妙汇/Assets.xcassets/compeleted_ afterSale_selected.imageset/compeleted_ afterSale_selected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CCat00/miaohui--swift/4f6ac4ff367fcedd386435f517d51ddb4880d7ec/妙汇/Assets.xcassets/compeleted_ afterSale_selected.imageset/compeleted_ afterSale_selected.png -------------------------------------------------------------------------------- /妙汇/Assets.xcassets/coupon_invalid_coupon.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "coupon_invalid_coupon.png", 6 | "scale" : "1x" 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 | } -------------------------------------------------------------------------------- /妙汇/Assets.xcassets/coupon_invalid_coupon.imageset/coupon_invalid_coupon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CCat00/miaohui--swift/4f6ac4ff367fcedd386435f517d51ddb4880d7ec/妙汇/Assets.xcassets/coupon_invalid_coupon.imageset/coupon_invalid_coupon.png -------------------------------------------------------------------------------- /妙汇/Assets.xcassets/coupon_selected_coupon.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "coupon_selected_coupon.png", 6 | "scale" : "1x" 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 | } -------------------------------------------------------------------------------- /妙汇/Assets.xcassets/coupon_selected_coupon.imageset/coupon_selected_coupon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CCat00/miaohui--swift/4f6ac4ff367fcedd386435f517d51ddb4880d7ec/妙汇/Assets.xcassets/coupon_selected_coupon.imageset/coupon_selected_coupon.png -------------------------------------------------------------------------------- /妙汇/Assets.xcassets/coupon_valid_coupon.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "coupon_valid_coupon.png", 6 | "scale" : "1x" 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 | } -------------------------------------------------------------------------------- /妙汇/Assets.xcassets/coupon_valid_coupon.imageset/coupon_valid_coupon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CCat00/miaohui--swift/4f6ac4ff367fcedd386435f517d51ddb4880d7ec/妙汇/Assets.xcassets/coupon_valid_coupon.imageset/coupon_valid_coupon.png -------------------------------------------------------------------------------- /妙汇/Assets.xcassets/coupons.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "coupons.png", 6 | "scale" : "1x" 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 | } -------------------------------------------------------------------------------- /妙汇/Assets.xcassets/coupons.imageset/coupons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CCat00/miaohui--swift/4f6ac4ff367fcedd386435f517d51ddb4880d7ec/妙汇/Assets.xcassets/coupons.imageset/coupons.png -------------------------------------------------------------------------------- /妙汇/Assets.xcassets/daifukuan.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "daifukuan.png", 6 | "scale" : "1x" 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 | } -------------------------------------------------------------------------------- /妙汇/Assets.xcassets/daifukuan.imageset/daifukuan.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CCat00/miaohui--swift/4f6ac4ff367fcedd386435f517d51ddb4880d7ec/妙汇/Assets.xcassets/daifukuan.imageset/daifukuan.png -------------------------------------------------------------------------------- /妙汇/Assets.xcassets/daishouhuo.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "daishouhuo.png", 6 | "scale" : "1x" 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 | } -------------------------------------------------------------------------------- /妙汇/Assets.xcassets/daishouhuo.imageset/daishouhuo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CCat00/miaohui--swift/4f6ac4ff367fcedd386435f517d51ddb4880d7ec/妙汇/Assets.xcassets/daishouhuo.imageset/daishouhuo.png -------------------------------------------------------------------------------- /妙汇/Assets.xcassets/delete_cart.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "delete_cart.png", 6 | "scale" : "1x" 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 | } -------------------------------------------------------------------------------- /妙汇/Assets.xcassets/delete_cart.imageset/delete_cart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CCat00/miaohui--swift/4f6ac4ff367fcedd386435f517d51ddb4880d7ec/妙汇/Assets.xcassets/delete_cart.imageset/delete_cart.png -------------------------------------------------------------------------------- /妙汇/Assets.xcassets/dengji.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "dengji.png", 6 | "scale" : "1x" 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 | } -------------------------------------------------------------------------------- /妙汇/Assets.xcassets/dengji.imageset/dengji.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CCat00/miaohui--swift/4f6ac4ff367fcedd386435f517d51ddb4880d7ec/妙汇/Assets.xcassets/dengji.imageset/dengji.png -------------------------------------------------------------------------------- /妙汇/Assets.xcassets/detail_back.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "detail_back.png", 6 | "scale" : "1x" 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 | } -------------------------------------------------------------------------------- /妙汇/Assets.xcassets/detail_back.imageset/detail_back.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CCat00/miaohui--swift/4f6ac4ff367fcedd386435f517d51ddb4880d7ec/妙汇/Assets.xcassets/detail_back.imageset/detail_back.png -------------------------------------------------------------------------------- /妙汇/Assets.xcassets/dingbushezhi.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x" 6 | }, 7 | { 8 | "idiom" : "universal", 9 | "filename" : "dingbushezhi.png", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /妙汇/Assets.xcassets/dingbushezhi.imageset/dingbushezhi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CCat00/miaohui--swift/4f6ac4ff367fcedd386435f517d51ddb4880d7ec/妙汇/Assets.xcassets/dingbushezhi.imageset/dingbushezhi.png -------------------------------------------------------------------------------- /妙汇/Assets.xcassets/doubt_magicDiamonds.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "doubt_magicDiamonds.png", 6 | "scale" : "1x" 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 | } -------------------------------------------------------------------------------- /妙汇/Assets.xcassets/doubt_magicDiamonds.imageset/doubt_magicDiamonds.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CCat00/miaohui--swift/4f6ac4ff367fcedd386435f517d51ddb4880d7ec/妙汇/Assets.xcassets/doubt_magicDiamonds.imageset/doubt_magicDiamonds.png -------------------------------------------------------------------------------- /妙汇/Assets.xcassets/downTowardsArrow.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x" 6 | }, 7 | { 8 | "idiom" : "universal", 9 | "filename" : "downTowardsArrow.png", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /妙汇/Assets.xcassets/downTowardsArrow.imageset/downTowardsArrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CCat00/miaohui--swift/4f6ac4ff367fcedd386435f517d51ddb4880d7ec/妙汇/Assets.xcassets/downTowardsArrow.imageset/downTowardsArrow.png -------------------------------------------------------------------------------- /妙汇/Assets.xcassets/downloadapp.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "downloadapp.png", 6 | "scale" : "1x" 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 | } -------------------------------------------------------------------------------- /妙汇/Assets.xcassets/downloadapp.imageset/downloadapp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CCat00/miaohui--swift/4f6ac4ff367fcedd386435f517d51ddb4880d7ec/妙汇/Assets.xcassets/downloadapp.imageset/downloadapp.png -------------------------------------------------------------------------------- /妙汇/Assets.xcassets/expired_coupon.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "expired_coupon.png", 6 | "scale" : "1x" 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 | } -------------------------------------------------------------------------------- /妙汇/Assets.xcassets/expired_coupon.imageset/expired_coupon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CCat00/miaohui--swift/4f6ac4ff367fcedd386435f517d51ddb4880d7ec/妙汇/Assets.xcassets/expired_coupon.imageset/expired_coupon.png -------------------------------------------------------------------------------- /妙汇/Assets.xcassets/fenxiang.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "fenxiang.png", 6 | "scale" : "1x" 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 | } -------------------------------------------------------------------------------- /妙汇/Assets.xcassets/fenxiang.imageset/fenxiang.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CCat00/miaohui--swift/4f6ac4ff367fcedd386435f517d51ddb4880d7ec/妙汇/Assets.xcassets/fenxiang.imageset/fenxiang.png -------------------------------------------------------------------------------- /妙汇/Assets.xcassets/fenxiang_white.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "fenxiang_white.png", 6 | "scale" : "1x" 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 | } -------------------------------------------------------------------------------- /妙汇/Assets.xcassets/fenxiang_white.imageset/fenxiang_white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CCat00/miaohui--swift/4f6ac4ff367fcedd386435f517d51ddb4880d7ec/妙汇/Assets.xcassets/fenxiang_white.imageset/fenxiang_white.png -------------------------------------------------------------------------------- /妙汇/Assets.xcassets/fenxiangyoujiang.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "fenxiangyoujiang.png", 6 | "scale" : "1x" 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 | } -------------------------------------------------------------------------------- /妙汇/Assets.xcassets/fenxiangyoujiang.imageset/fenxiangyoujiang.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CCat00/miaohui--swift/4f6ac4ff367fcedd386435f517d51ddb4880d7ec/妙汇/Assets.xcassets/fenxiangyoujiang.imageset/fenxiangyoujiang.png -------------------------------------------------------------------------------- /妙汇/Assets.xcassets/fieldOfView_3DTouch.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "fieldOfView_3DTouch.png", 6 | "scale" : "1x" 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 | } -------------------------------------------------------------------------------- /妙汇/Assets.xcassets/fieldOfView_3DTouch.imageset/fieldOfView_3DTouch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CCat00/miaohui--swift/4f6ac4ff367fcedd386435f517d51ddb4880d7ec/妙汇/Assets.xcassets/fieldOfView_3DTouch.imageset/fieldOfView_3DTouch.png -------------------------------------------------------------------------------- /妙汇/Assets.xcassets/firstShowGuide_intro.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "firstShowGuide_intro.png", 6 | "scale" : "1x" 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 | } -------------------------------------------------------------------------------- /妙汇/Assets.xcassets/firstShowGuide_intro.imageset/firstShowGuide_intro.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CCat00/miaohui--swift/4f6ac4ff367fcedd386435f517d51ddb4880d7ec/妙汇/Assets.xcassets/firstShowGuide_intro.imageset/firstShowGuide_intro.png -------------------------------------------------------------------------------- /妙汇/Assets.xcassets/firstShowGuide_photoBrowser.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "firstShowGuide_photoBrowser.png", 6 | "scale" : "1x" 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 | } -------------------------------------------------------------------------------- /妙汇/Assets.xcassets/firstShowGuide_photoBrowser.imageset/firstShowGuide_photoBrowser.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CCat00/miaohui--swift/4f6ac4ff367fcedd386435f517d51ddb4880d7ec/妙汇/Assets.xcassets/firstShowGuide_photoBrowser.imageset/firstShowGuide_photoBrowser.png -------------------------------------------------------------------------------- /妙汇/Assets.xcassets/foot_print.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "foot_print.png", 6 | "scale" : "1x" 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 | } -------------------------------------------------------------------------------- /妙汇/Assets.xcassets/foot_print.imageset/foot_print.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CCat00/miaohui--swift/4f6ac4ff367fcedd386435f517d51ddb4880d7ec/妙汇/Assets.xcassets/foot_print.imageset/foot_print.png -------------------------------------------------------------------------------- /妙汇/Assets.xcassets/foot_print_white.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "foot_print_white.png", 6 | "scale" : "1x" 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 | } -------------------------------------------------------------------------------- /妙汇/Assets.xcassets/foot_print_white.imageset/foot_print_white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CCat00/miaohui--swift/4f6ac4ff367fcedd386435f517d51ddb4880d7ec/妙汇/Assets.xcassets/foot_print_white.imageset/foot_print_white.png -------------------------------------------------------------------------------- /妙汇/Assets.xcassets/fuxuankuang.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "fuxuankuang.png", 6 | "scale" : "1x" 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 | } -------------------------------------------------------------------------------- /妙汇/Assets.xcassets/fuxuankuang.imageset/fuxuankuang.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CCat00/miaohui--swift/4f6ac4ff367fcedd386435f517d51ddb4880d7ec/妙汇/Assets.xcassets/fuxuankuang.imageset/fuxuankuang.png -------------------------------------------------------------------------------- /妙汇/Assets.xcassets/fuxuankuang01.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "fuxuankuang01.png", 6 | "scale" : "1x" 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 | } -------------------------------------------------------------------------------- /妙汇/Assets.xcassets/fuxuankuang01.imageset/fuxuankuang01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CCat00/miaohui--swift/4f6ac4ff367fcedd386435f517d51ddb4880d7ec/妙汇/Assets.xcassets/fuxuankuang01.imageset/fuxuankuang01.png -------------------------------------------------------------------------------- /妙汇/Assets.xcassets/goToShoppingCart.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "goToShoppingCart.png", 6 | "scale" : "1x" 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 | } -------------------------------------------------------------------------------- /妙汇/Assets.xcassets/goToShoppingCart.imageset/goToShoppingCart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CCat00/miaohui--swift/4f6ac4ff367fcedd386435f517d51ddb4880d7ec/妙汇/Assets.xcassets/goToShoppingCart.imageset/goToShoppingCart.png -------------------------------------------------------------------------------- /妙汇/Assets.xcassets/gou.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "gou.png", 6 | "scale" : "1x" 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 | } -------------------------------------------------------------------------------- /妙汇/Assets.xcassets/gou.imageset/gou.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CCat00/miaohui--swift/4f6ac4ff367fcedd386435f517d51ddb4880d7ec/妙汇/Assets.xcassets/gou.imageset/gou.png -------------------------------------------------------------------------------- /妙汇/Assets.xcassets/heart-broken01.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "heart-broken01.png", 6 | "scale" : "1x" 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 | } -------------------------------------------------------------------------------- /妙汇/Assets.xcassets/heart-broken01.imageset/heart-broken01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CCat00/miaohui--swift/4f6ac4ff367fcedd386435f517d51ddb4880d7ec/妙汇/Assets.xcassets/heart-broken01.imageset/heart-broken01.png -------------------------------------------------------------------------------- /妙汇/Assets.xcassets/heart-broken02.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "heart-broken02.png", 6 | "scale" : "1x" 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 | } -------------------------------------------------------------------------------- /妙汇/Assets.xcassets/heart-broken02.imageset/heart-broken02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CCat00/miaohui--swift/4f6ac4ff367fcedd386435f517d51ddb4880d7ec/妙汇/Assets.xcassets/heart-broken02.imageset/heart-broken02.png -------------------------------------------------------------------------------- /妙汇/Assets.xcassets/heart.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "heart.png", 6 | "scale" : "1x" 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 | } -------------------------------------------------------------------------------- /妙汇/Assets.xcassets/heart.imageset/heart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CCat00/miaohui--swift/4f6ac4ff367fcedd386435f517d51ddb4880d7ec/妙汇/Assets.xcassets/heart.imageset/heart.png -------------------------------------------------------------------------------- /妙汇/Assets.xcassets/home_dian.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "home_dian.png", 6 | "scale" : "1x" 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 | } -------------------------------------------------------------------------------- /妙汇/Assets.xcassets/home_dian.imageset/home_dian.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CCat00/miaohui--swift/4f6ac4ff367fcedd386435f517d51ddb4880d7ec/妙汇/Assets.xcassets/home_dian.imageset/home_dian.png -------------------------------------------------------------------------------- /妙汇/Assets.xcassets/home_dian01.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "home_dian01.png", 6 | "scale" : "1x" 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 | } -------------------------------------------------------------------------------- /妙汇/Assets.xcassets/home_dian01.imageset/home_dian01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CCat00/miaohui--swift/4f6ac4ff367fcedd386435f517d51ddb4880d7ec/妙汇/Assets.xcassets/home_dian01.imageset/home_dian01.png -------------------------------------------------------------------------------- /妙汇/Assets.xcassets/home_jiazaitupian.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "home_jiazaitupian.png", 6 | "scale" : "1x" 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 | } -------------------------------------------------------------------------------- /妙汇/Assets.xcassets/home_jiazaitupian.imageset/home_jiazaitupian.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CCat00/miaohui--swift/4f6ac4ff367fcedd386435f517d51ddb4880d7ec/妙汇/Assets.xcassets/home_jiazaitupian.imageset/home_jiazaitupian.png -------------------------------------------------------------------------------- /妙汇/Assets.xcassets/home_search.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x" 6 | }, 7 | { 8 | "idiom" : "universal", 9 | "scale" : "2x" 10 | }, 11 | { 12 | "idiom" : "universal", 13 | "filename" : "home_search.png", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /妙汇/Assets.xcassets/home_search.imageset/home_search.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CCat00/miaohui--swift/4f6ac4ff367fcedd386435f517d51ddb4880d7ec/妙汇/Assets.xcassets/home_search.imageset/home_search.png -------------------------------------------------------------------------------- /妙汇/Assets.xcassets/home_search_white.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "home_search_white.png", 6 | "scale" : "1x" 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 | } -------------------------------------------------------------------------------- /妙汇/Assets.xcassets/home_search_white.imageset/home_search_white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CCat00/miaohui--swift/4f6ac4ff367fcedd386435f517d51ddb4880d7ec/妙汇/Assets.xcassets/home_search_white.imageset/home_search_white.png -------------------------------------------------------------------------------- /妙汇/Assets.xcassets/huidaodingbu.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "huidaodingbu.png", 6 | "scale" : "1x" 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 | } -------------------------------------------------------------------------------- /妙汇/Assets.xcassets/huidaodingbu.imageset/huidaodingbu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CCat00/miaohui--swift/4f6ac4ff367fcedd386435f517d51ddb4880d7ec/妙汇/Assets.xcassets/huidaodingbu.imageset/huidaodingbu.png -------------------------------------------------------------------------------- /妙汇/Assets.xcassets/image_mask.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "image_mask.png", 6 | "scale" : "1x" 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 | } -------------------------------------------------------------------------------- /妙汇/Assets.xcassets/image_mask.imageset/image_mask.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CCat00/miaohui--swift/4f6ac4ff367fcedd386435f517d51ddb4880d7ec/妙汇/Assets.xcassets/image_mask.imageset/image_mask.png -------------------------------------------------------------------------------- /妙汇/Assets.xcassets/inSecKIl_productIntro.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "inSecKIl_productIntro.png", 6 | "scale" : "1x" 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 | } -------------------------------------------------------------------------------- /妙汇/Assets.xcassets/inSecKIl_productIntro.imageset/inSecKIl_productIntro.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CCat00/miaohui--swift/4f6ac4ff367fcedd386435f517d51ddb4880d7ec/妙汇/Assets.xcassets/inSecKIl_productIntro.imageset/inSecKIl_productIntro.png -------------------------------------------------------------------------------- /妙汇/Assets.xcassets/lefrmenu_service.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "lefrmenu_service.png", 6 | "scale" : "1x" 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 | } -------------------------------------------------------------------------------- /妙汇/Assets.xcassets/lefrmenu_service.imageset/lefrmenu_service.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CCat00/miaohui--swift/4f6ac4ff367fcedd386435f517d51ddb4880d7ec/妙汇/Assets.xcassets/lefrmenu_service.imageset/lefrmenu_service.png -------------------------------------------------------------------------------- /妙汇/Assets.xcassets/lefrmenu_service01.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "lefrmenu_service01.png", 6 | "scale" : "1x" 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 | } -------------------------------------------------------------------------------- /妙汇/Assets.xcassets/lefrmenu_service01.imageset/lefrmenu_service01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CCat00/miaohui--swift/4f6ac4ff367fcedd386435f517d51ddb4880d7ec/妙汇/Assets.xcassets/lefrmenu_service01.imageset/lefrmenu_service01.png -------------------------------------------------------------------------------- /妙汇/Assets.xcassets/leftSlide_productIntro.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "leftSlide_productIntro.png", 6 | "scale" : "1x" 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 | } -------------------------------------------------------------------------------- /妙汇/Assets.xcassets/leftSlide_productIntro.imageset/leftSlide_productIntro.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CCat00/miaohui--swift/4f6ac4ff367fcedd386435f517d51ddb4880d7ec/妙汇/Assets.xcassets/leftSlide_productIntro.imageset/leftSlide_productIntro.png -------------------------------------------------------------------------------- /妙汇/Assets.xcassets/leftmenu_all_order.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "leftmenu_all_order.png", 6 | "scale" : "1x" 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 | } -------------------------------------------------------------------------------- /妙汇/Assets.xcassets/leftmenu_all_order.imageset/leftmenu_all_order.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CCat00/miaohui--swift/4f6ac4ff367fcedd386435f517d51ddb4880d7ec/妙汇/Assets.xcassets/leftmenu_all_order.imageset/leftmenu_all_order.png -------------------------------------------------------------------------------- /妙汇/Assets.xcassets/leftmenu_all_order01.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "leftmenu_all_order01.png", 6 | "scale" : "1x" 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 | } -------------------------------------------------------------------------------- /妙汇/Assets.xcassets/leftmenu_all_order01.imageset/leftmenu_all_order01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CCat00/miaohui--swift/4f6ac4ff367fcedd386435f517d51ddb4880d7ec/妙汇/Assets.xcassets/leftmenu_all_order01.imageset/leftmenu_all_order01.png -------------------------------------------------------------------------------- /妙汇/Assets.xcassets/leftmenu_coupon.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "leftmenu_coupon.png", 6 | "scale" : "1x" 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 | } -------------------------------------------------------------------------------- /妙汇/Assets.xcassets/leftmenu_coupon.imageset/leftmenu_coupon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CCat00/miaohui--swift/4f6ac4ff367fcedd386435f517d51ddb4880d7ec/妙汇/Assets.xcassets/leftmenu_coupon.imageset/leftmenu_coupon.png -------------------------------------------------------------------------------- /妙汇/Assets.xcassets/leftmenu_coupon01.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "leftmenu_coupon01.png", 6 | "scale" : "1x" 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 | } -------------------------------------------------------------------------------- /妙汇/Assets.xcassets/leftmenu_coupon01.imageset/leftmenu_coupon01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CCat00/miaohui--swift/4f6ac4ff367fcedd386435f517d51ddb4880d7ec/妙汇/Assets.xcassets/leftmenu_coupon01.imageset/leftmenu_coupon01.png -------------------------------------------------------------------------------- /妙汇/Assets.xcassets/leftmenu_favor.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "leftmenu_favor.png", 6 | "scale" : "1x" 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 | } -------------------------------------------------------------------------------- /妙汇/Assets.xcassets/leftmenu_favor.imageset/leftmenu_favor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CCat00/miaohui--swift/4f6ac4ff367fcedd386435f517d51ddb4880d7ec/妙汇/Assets.xcassets/leftmenu_favor.imageset/leftmenu_favor.png -------------------------------------------------------------------------------- /妙汇/Assets.xcassets/leftmenu_favor01.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "leftmenu_favor01.png", 6 | "scale" : "1x" 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 | } -------------------------------------------------------------------------------- /妙汇/Assets.xcassets/leftmenu_favor01.imageset/leftmenu_favor01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CCat00/miaohui--swift/4f6ac4ff367fcedd386435f517d51ddb4880d7ec/妙汇/Assets.xcassets/leftmenu_favor01.imageset/leftmenu_favor01.png -------------------------------------------------------------------------------- /妙汇/Assets.xcassets/leftmenu_recommend.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "leftmenu_recommend.png", 6 | "scale" : "1x" 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 | } -------------------------------------------------------------------------------- /妙汇/Assets.xcassets/leftmenu_recommend.imageset/leftmenu_recommend.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CCat00/miaohui--swift/4f6ac4ff367fcedd386435f517d51ddb4880d7ec/妙汇/Assets.xcassets/leftmenu_recommend.imageset/leftmenu_recommend.png -------------------------------------------------------------------------------- /妙汇/Assets.xcassets/leftmenu_recommend01.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "leftmenu_recommend01.png", 6 | "scale" : "1x" 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 | } -------------------------------------------------------------------------------- /妙汇/Assets.xcassets/leftmenu_recommend01.imageset/leftmenu_recommend01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CCat00/miaohui--swift/4f6ac4ff367fcedd386435f517d51ddb4880d7ec/妙汇/Assets.xcassets/leftmenu_recommend01.imageset/leftmenu_recommend01.png -------------------------------------------------------------------------------- /妙汇/Assets.xcassets/leftmenu_set.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "leftmenu_set.png", 6 | "scale" : "1x" 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 | } -------------------------------------------------------------------------------- /妙汇/Assets.xcassets/leftmenu_set.imageset/leftmenu_set.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CCat00/miaohui--swift/4f6ac4ff367fcedd386435f517d51ddb4880d7ec/妙汇/Assets.xcassets/leftmenu_set.imageset/leftmenu_set.png -------------------------------------------------------------------------------- /妙汇/Assets.xcassets/leftmenu_set01.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "leftmenu_set01.png", 6 | "scale" : "1x" 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 | } -------------------------------------------------------------------------------- /妙汇/Assets.xcassets/leftmenu_set01.imageset/leftmenu_set01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CCat00/miaohui--swift/4f6ac4ff367fcedd386435f517d51ddb4880d7ec/妙汇/Assets.xcassets/leftmenu_set01.imageset/leftmenu_set01.png -------------------------------------------------------------------------------- /妙汇/Assets.xcassets/liulan.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "liulan.png", 6 | "scale" : "1x" 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 | } -------------------------------------------------------------------------------- /妙汇/Assets.xcassets/liulan.imageset/liulan.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CCat00/miaohui--swift/4f6ac4ff367fcedd386435f517d51ddb4880d7ec/妙汇/Assets.xcassets/liulan.imageset/liulan.png -------------------------------------------------------------------------------- /妙汇/Assets.xcassets/location.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "location.png", 6 | "scale" : "1x" 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 | } -------------------------------------------------------------------------------- /妙汇/Assets.xcassets/location.imageset/location.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CCat00/miaohui--swift/4f6ac4ff367fcedd386435f517d51ddb4880d7ec/妙汇/Assets.xcassets/location.imageset/location.png -------------------------------------------------------------------------------- /妙汇/Assets.xcassets/login_qq.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "login_qq.png", 6 | "scale" : "1x" 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 | } -------------------------------------------------------------------------------- /妙汇/Assets.xcassets/login_qq.imageset/login_qq.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CCat00/miaohui--swift/4f6ac4ff367fcedd386435f517d51ddb4880d7ec/妙汇/Assets.xcassets/login_qq.imageset/login_qq.png -------------------------------------------------------------------------------- /妙汇/Assets.xcassets/login_sina.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "login_sina.png", 6 | "scale" : "1x" 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 | } -------------------------------------------------------------------------------- /妙汇/Assets.xcassets/login_sina.imageset/login_sina.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CCat00/miaohui--swift/4f6ac4ff367fcedd386435f517d51ddb4880d7ec/妙汇/Assets.xcassets/login_sina.imageset/login_sina.png -------------------------------------------------------------------------------- /妙汇/Assets.xcassets/login_weixin.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "login_weixin.png", 6 | "scale" : "1x" 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 | } -------------------------------------------------------------------------------- /妙汇/Assets.xcassets/login_weixin.imageset/login_weixin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CCat00/miaohui--swift/4f6ac4ff367fcedd386435f517d51ddb4880d7ec/妙汇/Assets.xcassets/login_weixin.imageset/login_weixin.png -------------------------------------------------------------------------------- /妙汇/Assets.xcassets/logisticsCricle.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "logisticsCricle.png", 6 | "scale" : "1x" 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 | } -------------------------------------------------------------------------------- /妙汇/Assets.xcassets/logisticsCricle.imageset/logisticsCricle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CCat00/miaohui--swift/4f6ac4ff367fcedd386435f517d51ddb4880d7ec/妙汇/Assets.xcassets/logisticsCricle.imageset/logisticsCricle.png -------------------------------------------------------------------------------- /妙汇/Assets.xcassets/logistics_arrow.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "logistics_arrow.png", 6 | "scale" : "1x" 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 | } -------------------------------------------------------------------------------- /妙汇/Assets.xcassets/logistics_arrow.imageset/logistics_arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CCat00/miaohui--swift/4f6ac4ff367fcedd386435f517d51ddb4880d7ec/妙汇/Assets.xcassets/logistics_arrow.imageset/logistics_arrow.png -------------------------------------------------------------------------------- /妙汇/Assets.xcassets/logistics_unpack.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "logistics_unpack.png", 6 | "scale" : "1x" 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 | } -------------------------------------------------------------------------------- /妙汇/Assets.xcassets/logistics_unpack.imageset/logistics_unpack.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CCat00/miaohui--swift/4f6ac4ff367fcedd386435f517d51ddb4880d7ec/妙汇/Assets.xcassets/logistics_unpack.imageset/logistics_unpack.png -------------------------------------------------------------------------------- /妙汇/Assets.xcassets/look3D_productList.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "look3D_productList.png", 6 | "scale" : "1x" 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 | } -------------------------------------------------------------------------------- /妙汇/Assets.xcassets/look3D_productList.imageset/look3D_productList.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CCat00/miaohui--swift/4f6ac4ff367fcedd386435f517d51ddb4880d7ec/妙汇/Assets.xcassets/look3D_productList.imageset/look3D_productList.png -------------------------------------------------------------------------------- /妙汇/Assets.xcassets/lookPanorama_productList.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "lookPanorama_productList.png", 6 | "scale" : "1x" 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 | } -------------------------------------------------------------------------------- /妙汇/Assets.xcassets/lookPanorama_productList.imageset/lookPanorama_productList.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CCat00/miaohui--swift/4f6ac4ff367fcedd386435f517d51ddb4880d7ec/妙汇/Assets.xcassets/lookPanorama_productList.imageset/lookPanorama_productList.png -------------------------------------------------------------------------------- /妙汇/Assets.xcassets/lookkey.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "lookkey.png", 6 | "scale" : "1x" 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 | } -------------------------------------------------------------------------------- /妙汇/Assets.xcassets/lookkey.imageset/lookkey.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CCat00/miaohui--swift/4f6ac4ff367fcedd386435f517d51ddb4880d7ec/妙汇/Assets.xcassets/lookkey.imageset/lookkey.png -------------------------------------------------------------------------------- /妙汇/Assets.xcassets/miaozuan.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "miaozuan.png", 6 | "scale" : "1x" 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 | } -------------------------------------------------------------------------------- /妙汇/Assets.xcassets/miaozuan.imageset/miaozuan.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CCat00/miaohui--swift/4f6ac4ff367fcedd386435f517d51ddb4880d7ec/妙汇/Assets.xcassets/miaozuan.imageset/miaozuan.png -------------------------------------------------------------------------------- /妙汇/Assets.xcassets/nav_left.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "nav_left.png", 6 | "scale" : "1x" 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 | } -------------------------------------------------------------------------------- /妙汇/Assets.xcassets/nav_left.imageset/nav_left.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CCat00/miaohui--swift/4f6ac4ff367fcedd386435f517d51ddb4880d7ec/妙汇/Assets.xcassets/nav_left.imageset/nav_left.png -------------------------------------------------------------------------------- /妙汇/Assets.xcassets/nav_right.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x" 6 | }, 7 | { 8 | "idiom" : "universal", 9 | "filename" : "nav_right.png", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /妙汇/Assets.xcassets/nav_right.imageset/nav_right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CCat00/miaohui--swift/4f6ac4ff367fcedd386435f517d51ddb4880d7ec/妙汇/Assets.xcassets/nav_right.imageset/nav_right.png -------------------------------------------------------------------------------- /妙汇/Assets.xcassets/nav_right_h.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "nav_right_h.png", 6 | "scale" : "1x" 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 | } -------------------------------------------------------------------------------- /妙汇/Assets.xcassets/nav_right_h.imageset/nav_right_h.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CCat00/miaohui--swift/4f6ac4ff367fcedd386435f517d51ddb4880d7ec/妙汇/Assets.xcassets/nav_right_h.imageset/nav_right_h.png -------------------------------------------------------------------------------- /妙汇/Assets.xcassets/newDynamic_leftMenu.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "newDynamic_leftMenu.png", 6 | "scale" : "1x" 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 | } -------------------------------------------------------------------------------- /妙汇/Assets.xcassets/newDynamic_leftMenu.imageset/newDynamic_leftMenu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CCat00/miaohui--swift/4f6ac4ff367fcedd386435f517d51ddb4880d7ec/妙汇/Assets.xcassets/newDynamic_leftMenu.imageset/newDynamic_leftMenu.png -------------------------------------------------------------------------------- /妙汇/Assets.xcassets/nextStep_usual.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "nextStep_usual.png", 6 | "scale" : "1x" 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 | } -------------------------------------------------------------------------------- /妙汇/Assets.xcassets/nextStep_usual.imageset/nextStep_usual.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CCat00/miaohui--swift/4f6ac4ff367fcedd386435f517d51ddb4880d7ec/妙汇/Assets.xcassets/nextStep_usual.imageset/nextStep_usual.png -------------------------------------------------------------------------------- /妙汇/Assets.xcassets/note_icon.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "note_icon.png", 6 | "scale" : "1x" 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 | } -------------------------------------------------------------------------------- /妙汇/Assets.xcassets/note_icon.imageset/note_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CCat00/miaohui--swift/4f6ac4ff367fcedd386435f517d51ddb4880d7ec/妙汇/Assets.xcassets/note_icon.imageset/note_icon.png -------------------------------------------------------------------------------- /妙汇/Assets.xcassets/on_comment.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "on_comment.png", 6 | "scale" : "1x" 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 | } -------------------------------------------------------------------------------- /妙汇/Assets.xcassets/on_comment.imageset/on_comment.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CCat00/miaohui--swift/4f6ac4ff367fcedd386435f517d51ddb4880d7ec/妙汇/Assets.xcassets/on_comment.imageset/on_comment.png -------------------------------------------------------------------------------- /妙汇/Assets.xcassets/placeholder.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "placeholder.png", 6 | "scale" : "1x" 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 | } -------------------------------------------------------------------------------- /妙汇/Assets.xcassets/placeholder.imageset/placeholder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CCat00/miaohui--swift/4f6ac4ff367fcedd386435f517d51ddb4880d7ec/妙汇/Assets.xcassets/placeholder.imageset/placeholder.png -------------------------------------------------------------------------------- /妙汇/Assets.xcassets/preference.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x" 6 | }, 7 | { 8 | "idiom" : "universal", 9 | "filename" : "preference.png", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /妙汇/Assets.xcassets/preference.imageset/preference.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CCat00/miaohui--swift/4f6ac4ff367fcedd386435f517d51ddb4880d7ec/妙汇/Assets.xcassets/preference.imageset/preference.png -------------------------------------------------------------------------------- /妙汇/Assets.xcassets/profile_touxiang.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "profile_touxiang.png", 6 | "scale" : "1x" 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 | } -------------------------------------------------------------------------------- /妙汇/Assets.xcassets/profile_touxiang.imageset/profile_touxiang.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CCat00/miaohui--swift/4f6ac4ff367fcedd386435f517d51ddb4880d7ec/妙汇/Assets.xcassets/profile_touxiang.imageset/profile_touxiang.png -------------------------------------------------------------------------------- /妙汇/Assets.xcassets/profile_touxiang_big.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x" 6 | }, 7 | { 8 | "idiom" : "universal", 9 | "filename" : "profile_touxiang_big.png", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /妙汇/Assets.xcassets/profile_touxiang_big.imageset/profile_touxiang_big.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CCat00/miaohui--swift/4f6ac4ff367fcedd386435f517d51ddb4880d7ec/妙汇/Assets.xcassets/profile_touxiang_big.imageset/profile_touxiang_big.png -------------------------------------------------------------------------------- /妙汇/Assets.xcassets/pull_down_BG.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "pull_down_BG.png", 6 | "scale" : "1x" 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 | } -------------------------------------------------------------------------------- /妙汇/Assets.xcassets/pull_down_BG.imageset/pull_down_BG.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CCat00/miaohui--swift/4f6ac4ff367fcedd386435f517d51ddb4880d7ec/妙汇/Assets.xcassets/pull_down_BG.imageset/pull_down_BG.png -------------------------------------------------------------------------------- /妙汇/Assets.xcassets/qingli.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "qingli.png", 6 | "scale" : "1x" 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 | } -------------------------------------------------------------------------------- /妙汇/Assets.xcassets/qingli.imageset/qingli.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CCat00/miaohui--swift/4f6ac4ff367fcedd386435f517d51ddb4880d7ec/妙汇/Assets.xcassets/qingli.imageset/qingli.png -------------------------------------------------------------------------------- /妙汇/Assets.xcassets/qitian.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "qitian.png", 6 | "scale" : "1x" 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 | } -------------------------------------------------------------------------------- /妙汇/Assets.xcassets/qitian.imageset/qitian.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CCat00/miaohui--swift/4f6ac4ff367fcedd386435f517d51ddb4880d7ec/妙汇/Assets.xcassets/qitian.imageset/qitian.png -------------------------------------------------------------------------------- /妙汇/Assets.xcassets/quanjxiazai.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "quanjxiazai.png", 6 | "scale" : "1x" 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 | } -------------------------------------------------------------------------------- /妙汇/Assets.xcassets/quanjxiazai.imageset/quanjxiazai.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CCat00/miaohui--swift/4f6ac4ff367fcedd386435f517d51ddb4880d7ec/妙汇/Assets.xcassets/quanjxiazai.imageset/quanjxiazai.png -------------------------------------------------------------------------------- /妙汇/Assets.xcassets/quanqiu.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "quanqiu.png", 6 | "scale" : "1x" 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 | } -------------------------------------------------------------------------------- /妙汇/Assets.xcassets/quanqiu.imageset/quanqiu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CCat00/miaohui--swift/4f6ac4ff367fcedd386435f517d51ddb4880d7ec/妙汇/Assets.xcassets/quanqiu.imageset/quanqiu.png -------------------------------------------------------------------------------- /妙汇/Assets.xcassets/rating-button-default-d.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "rating-button-default-d.png", 6 | "scale" : "1x" 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 | } -------------------------------------------------------------------------------- /妙汇/Assets.xcassets/rating-button-default-d.imageset/rating-button-default-d.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CCat00/miaohui--swift/4f6ac4ff367fcedd386435f517d51ddb4880d7ec/妙汇/Assets.xcassets/rating-button-default-d.imageset/rating-button-default-d.png -------------------------------------------------------------------------------- /妙汇/Assets.xcassets/rating-button-default.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "rating-button-default.png", 6 | "scale" : "1x" 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 | } -------------------------------------------------------------------------------- /妙汇/Assets.xcassets/rating-button-default.imageset/rating-button-default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CCat00/miaohui--swift/4f6ac4ff367fcedd386435f517d51ddb4880d7ec/妙汇/Assets.xcassets/rating-button-default.imageset/rating-button-default.png -------------------------------------------------------------------------------- /妙汇/Assets.xcassets/rating-button-destructive-d.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "rating-button-destructive-d.png", 6 | "scale" : "1x" 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 | } -------------------------------------------------------------------------------- /妙汇/Assets.xcassets/rating-button-destructive-d.imageset/rating-button-destructive-d.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CCat00/miaohui--swift/4f6ac4ff367fcedd386435f517d51ddb4880d7ec/妙汇/Assets.xcassets/rating-button-destructive-d.imageset/rating-button-destructive-d.png -------------------------------------------------------------------------------- /妙汇/Assets.xcassets/rating-button-destructive.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "rating-button-destructive.png", 6 | "scale" : "1x" 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 | } -------------------------------------------------------------------------------- /妙汇/Assets.xcassets/rating-button-destructive.imageset/rating-button-destructive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CCat00/miaohui--swift/4f6ac4ff367fcedd386435f517d51ddb4880d7ec/妙汇/Assets.xcassets/rating-button-destructive.imageset/rating-button-destructive.png -------------------------------------------------------------------------------- /妙汇/Assets.xcassets/rating_app.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "rating_app.png", 6 | "scale" : "1x" 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 | } -------------------------------------------------------------------------------- /妙汇/Assets.xcassets/rating_app.imageset/rating_app.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CCat00/miaohui--swift/4f6ac4ff367fcedd386435f517d51ddb4880d7ec/妙汇/Assets.xcassets/rating_app.imageset/rating_app.png -------------------------------------------------------------------------------- /妙汇/Assets.xcassets/rating_app1.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "rating_app1.png", 6 | "scale" : "1x" 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 | } -------------------------------------------------------------------------------- /妙汇/Assets.xcassets/rating_app1.imageset/rating_app1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CCat00/miaohui--swift/4f6ac4ff367fcedd386435f517d51ddb4880d7ec/妙汇/Assets.xcassets/rating_app1.imageset/rating_app1.png -------------------------------------------------------------------------------- /妙汇/Assets.xcassets/red_delete.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "red_delete.png", 6 | "scale" : "1x" 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 | } -------------------------------------------------------------------------------- /妙汇/Assets.xcassets/red_delete.imageset/red_delete.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CCat00/miaohui--swift/4f6ac4ff367fcedd386435f517d51ddb4880d7ec/妙汇/Assets.xcassets/red_delete.imageset/red_delete.png -------------------------------------------------------------------------------- /妙汇/Assets.xcassets/refresh_arrow.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x" 6 | }, 7 | { 8 | "idiom" : "universal", 9 | "filename" : "refresh_arrow@2x.png", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /妙汇/Assets.xcassets/refresh_arrow.imageset/refresh_arrow@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CCat00/miaohui--swift/4f6ac4ff367fcedd386435f517d51ddb4880d7ec/妙汇/Assets.xcassets/refresh_arrow.imageset/refresh_arrow@2x.png -------------------------------------------------------------------------------- /妙汇/Assets.xcassets/refresh_tips.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "refresh_tips.png", 6 | "scale" : "1x" 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 | } -------------------------------------------------------------------------------- /妙汇/Assets.xcassets/refresh_tips.imageset/refresh_tips.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CCat00/miaohui--swift/4f6ac4ff367fcedd386435f517d51ddb4880d7ec/妙汇/Assets.xcassets/refresh_tips.imageset/refresh_tips.png -------------------------------------------------------------------------------- /妙汇/Assets.xcassets/saobg.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x" 6 | }, 7 | { 8 | "idiom" : "universal", 9 | "filename" : "saobg.png", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /妙汇/Assets.xcassets/saobg.imageset/saobg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CCat00/miaohui--swift/4f6ac4ff367fcedd386435f517d51ddb4880d7ec/妙汇/Assets.xcassets/saobg.imageset/saobg.png -------------------------------------------------------------------------------- /妙汇/Assets.xcassets/selected_anonymous.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "selected_anonymous.png", 6 | "scale" : "1x" 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 | } -------------------------------------------------------------------------------- /妙汇/Assets.xcassets/selected_anonymous.imageset/selected_anonymous.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CCat00/miaohui--swift/4f6ac4ff367fcedd386435f517d51ddb4880d7ec/妙汇/Assets.xcassets/selected_anonymous.imageset/selected_anonymous.png -------------------------------------------------------------------------------- /妙汇/Assets.xcassets/sendBack_ afterSale_normal.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "sendBack_ afterSale_normal.png", 6 | "scale" : "1x" 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 | } -------------------------------------------------------------------------------- /妙汇/Assets.xcassets/sendBack_ afterSale_normal.imageset/sendBack_ afterSale_normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CCat00/miaohui--swift/4f6ac4ff367fcedd386435f517d51ddb4880d7ec/妙汇/Assets.xcassets/sendBack_ afterSale_normal.imageset/sendBack_ afterSale_normal.png -------------------------------------------------------------------------------- /妙汇/Assets.xcassets/sendBack_ afterSale_selected.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "sendBack_ afterSale_selected.png", 6 | "scale" : "1x" 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 | } -------------------------------------------------------------------------------- /妙汇/Assets.xcassets/sendBack_ afterSale_selected.imageset/sendBack_ afterSale_selected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CCat00/miaohui--swift/4f6ac4ff367fcedd386435f517d51ddb4880d7ec/妙汇/Assets.xcassets/sendBack_ afterSale_selected.imageset/sendBack_ afterSale_selected.png -------------------------------------------------------------------------------- /妙汇/Assets.xcassets/shanchu.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "shanchu.png", 6 | "scale" : "1x" 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 | } -------------------------------------------------------------------------------- /妙汇/Assets.xcassets/shanchu.imageset/shanchu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CCat00/miaohui--swift/4f6ac4ff367fcedd386435f517d51ddb4880d7ec/妙汇/Assets.xcassets/shanchu.imageset/shanchu.png -------------------------------------------------------------------------------- /妙汇/Assets.xcassets/shangpinmaidian.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "shangpinmaidian.png", 6 | "scale" : "1x" 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 | } -------------------------------------------------------------------------------- /妙汇/Assets.xcassets/shangpinmaidian.imageset/shangpinmaidian.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CCat00/miaohui--swift/4f6ac4ff367fcedd386435f517d51ddb4880d7ec/妙汇/Assets.xcassets/shangpinmaidian.imageset/shangpinmaidian.png -------------------------------------------------------------------------------- /妙汇/Assets.xcassets/share_QZone.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "share_QZone.png", 6 | "scale" : "1x" 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 | } -------------------------------------------------------------------------------- /妙汇/Assets.xcassets/share_QZone.imageset/share_QZone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CCat00/miaohui--swift/4f6ac4ff367fcedd386435f517d51ddb4880d7ec/妙汇/Assets.xcassets/share_QZone.imageset/share_QZone.png -------------------------------------------------------------------------------- /妙汇/Assets.xcassets/share_back.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "share_back.png", 6 | "scale" : "1x" 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 | } -------------------------------------------------------------------------------- /妙汇/Assets.xcassets/share_back.imageset/share_back.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CCat00/miaohui--swift/4f6ac4ff367fcedd386435f517d51ddb4880d7ec/妙汇/Assets.xcassets/share_back.imageset/share_back.png -------------------------------------------------------------------------------- /妙汇/Assets.xcassets/share_copy.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "share_copy.png", 6 | "scale" : "1x" 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 | } -------------------------------------------------------------------------------- /妙汇/Assets.xcassets/share_copy.imageset/share_copy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CCat00/miaohui--swift/4f6ac4ff367fcedd386435f517d51ddb4880d7ec/妙汇/Assets.xcassets/share_copy.imageset/share_copy.png -------------------------------------------------------------------------------- /妙汇/Assets.xcassets/share_email.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "share_email.png", 6 | "scale" : "1x" 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 | } -------------------------------------------------------------------------------- /妙汇/Assets.xcassets/share_email.imageset/share_email.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CCat00/miaohui--swift/4f6ac4ff367fcedd386435f517d51ddb4880d7ec/妙汇/Assets.xcassets/share_email.imageset/share_email.png -------------------------------------------------------------------------------- /妙汇/Assets.xcassets/share_friends.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "share_friends.png", 6 | "scale" : "1x" 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 | } -------------------------------------------------------------------------------- /妙汇/Assets.xcassets/share_friends.imageset/share_friends.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CCat00/miaohui--swift/4f6ac4ff367fcedd386435f517d51ddb4880d7ec/妙汇/Assets.xcassets/share_friends.imageset/share_friends.png -------------------------------------------------------------------------------- /妙汇/Assets.xcassets/share_qq.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "share_qq.png", 6 | "scale" : "1x" 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 | } -------------------------------------------------------------------------------- /妙汇/Assets.xcassets/share_qq.imageset/share_qq.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CCat00/miaohui--swift/4f6ac4ff367fcedd386435f517d51ddb4880d7ec/妙汇/Assets.xcassets/share_qq.imageset/share_qq.png -------------------------------------------------------------------------------- /妙汇/Assets.xcassets/share_sina.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "share_sina.png", 6 | "scale" : "1x" 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 | } -------------------------------------------------------------------------------- /妙汇/Assets.xcassets/share_sina.imageset/share_sina.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CCat00/miaohui--swift/4f6ac4ff367fcedd386435f517d51ddb4880d7ec/妙汇/Assets.xcassets/share_sina.imageset/share_sina.png -------------------------------------------------------------------------------- /妙汇/Assets.xcassets/share_sms.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "share_sms.png", 6 | "scale" : "1x" 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 | } -------------------------------------------------------------------------------- /妙汇/Assets.xcassets/share_sms.imageset/share_sms.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CCat00/miaohui--swift/4f6ac4ff367fcedd386435f517d51ddb4880d7ec/妙汇/Assets.xcassets/share_sms.imageset/share_sms.png -------------------------------------------------------------------------------- /妙汇/Assets.xcassets/share_weixin.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "share_weixin.png", 6 | "scale" : "1x" 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 | } -------------------------------------------------------------------------------- /妙汇/Assets.xcassets/share_weixin.imageset/share_weixin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CCat00/miaohui--swift/4f6ac4ff367fcedd386435f517d51ddb4880d7ec/妙汇/Assets.xcassets/share_weixin.imageset/share_weixin.png -------------------------------------------------------------------------------- /妙汇/Assets.xcassets/shiyongxuzhi.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "shiyongxuzhi.png", 6 | "scale" : "1x" 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 | } -------------------------------------------------------------------------------- /妙汇/Assets.xcassets/shiyongxuzhi.imageset/shiyongxuzhi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CCat00/miaohui--swift/4f6ac4ff367fcedd386435f517d51ddb4880d7ec/妙汇/Assets.xcassets/shiyongxuzhi.imageset/shiyongxuzhi.png -------------------------------------------------------------------------------- /妙汇/Assets.xcassets/shoppingCart_3DTouch.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "shoppingCart_3DTouch.png", 6 | "scale" : "1x" 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 | } -------------------------------------------------------------------------------- /妙汇/Assets.xcassets/shoppingCart_3DTouch.imageset/shoppingCart_3DTouch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CCat00/miaohui--swift/4f6ac4ff367fcedd386435f517d51ddb4880d7ec/妙汇/Assets.xcassets/shoppingCart_3DTouch.imageset/shoppingCart_3DTouch.png -------------------------------------------------------------------------------- /妙汇/Assets.xcassets/show3D_homePage.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "show3D_homePage.png", 6 | "scale" : "1x" 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 | } -------------------------------------------------------------------------------- /妙汇/Assets.xcassets/show3D_homePage.imageset/show3D_homePage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CCat00/miaohui--swift/4f6ac4ff367fcedd386435f517d51ddb4880d7ec/妙汇/Assets.xcassets/show3D_homePage.imageset/show3D_homePage.png -------------------------------------------------------------------------------- /妙汇/Assets.xcassets/show3D_introducePage.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "show3D_introducePage.png", 6 | "scale" : "1x" 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 | } -------------------------------------------------------------------------------- /妙汇/Assets.xcassets/show3D_introducePage.imageset/show3D_introducePage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CCat00/miaohui--swift/4f6ac4ff367fcedd386435f517d51ddb4880d7ec/妙汇/Assets.xcassets/show3D_introducePage.imageset/show3D_introducePage.png -------------------------------------------------------------------------------- /妙汇/Assets.xcassets/showFullView_homePage.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "showFullView_homePage.png", 6 | "scale" : "1x" 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 | } -------------------------------------------------------------------------------- /妙汇/Assets.xcassets/showFullView_homePage.imageset/showFullView_homePage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CCat00/miaohui--swift/4f6ac4ff367fcedd386435f517d51ddb4880d7ec/妙汇/Assets.xcassets/showFullView_homePage.imageset/showFullView_homePage.png -------------------------------------------------------------------------------- /妙汇/Assets.xcassets/showFullView_introducePage.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "showFullView_introducePage.png", 6 | "scale" : "1x" 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 | } -------------------------------------------------------------------------------- /妙汇/Assets.xcassets/showFullView_introducePage.imageset/showFullView_introducePage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CCat00/miaohui--swift/4f6ac4ff367fcedd386435f517d51ddb4880d7ec/妙汇/Assets.xcassets/showFullView_introducePage.imageset/showFullView_introducePage.png -------------------------------------------------------------------------------- /妙汇/Assets.xcassets/shuliangjia.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "shuliangjia.png", 6 | "scale" : "1x" 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 | } -------------------------------------------------------------------------------- /妙汇/Assets.xcassets/shuliangjia.imageset/shuliangjia.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CCat00/miaohui--swift/4f6ac4ff367fcedd386435f517d51ddb4880d7ec/妙汇/Assets.xcassets/shuliangjia.imageset/shuliangjia.png -------------------------------------------------------------------------------- /妙汇/Assets.xcassets/shuliangjian.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "shuliangjian.png", 6 | "scale" : "1x" 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 | } -------------------------------------------------------------------------------- /妙汇/Assets.xcassets/shuliangjian.imageset/shuliangjian.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CCat00/miaohui--swift/4f6ac4ff367fcedd386435f517d51ddb4880d7ec/妙汇/Assets.xcassets/shuliangjian.imageset/shuliangjian.png -------------------------------------------------------------------------------- /妙汇/Assets.xcassets/single_pre.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "single_pre.png", 6 | "scale" : "1x" 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 | } -------------------------------------------------------------------------------- /妙汇/Assets.xcassets/single_pre.imageset/single_pre.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CCat00/miaohui--swift/4f6ac4ff367fcedd386435f517d51ddb4880d7ec/妙汇/Assets.xcassets/single_pre.imageset/single_pre.png -------------------------------------------------------------------------------- /妙汇/Assets.xcassets/slideSelectedBG.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "slideSelectedBG.png", 6 | "scale" : "1x" 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 | } -------------------------------------------------------------------------------- /妙汇/Assets.xcassets/slideSelectedBG.imageset/slideSelectedBG.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CCat00/miaohui--swift/4f6ac4ff367fcedd386435f517d51ddb4880d7ec/妙汇/Assets.xcassets/slideSelectedBG.imageset/slideSelectedBG.png -------------------------------------------------------------------------------- /妙汇/Assets.xcassets/sold_out.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "sold_out.png", 6 | "scale" : "1x" 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 | } -------------------------------------------------------------------------------- /妙汇/Assets.xcassets/sold_out.imageset/sold_out.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CCat00/miaohui--swift/4f6ac4ff367fcedd386435f517d51ddb4880d7ec/妙汇/Assets.xcassets/sold_out.imageset/sold_out.png -------------------------------------------------------------------------------- /妙汇/Assets.xcassets/tab_Category.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x" 6 | }, 7 | { 8 | "idiom" : "universal", 9 | "filename" : "tab_Category.png", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /妙汇/Assets.xcassets/tab_Category.imageset/tab_Category.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CCat00/miaohui--swift/4f6ac4ff367fcedd386435f517d51ddb4880d7ec/妙汇/Assets.xcassets/tab_Category.imageset/tab_Category.png -------------------------------------------------------------------------------- /妙汇/Assets.xcassets/tab_Category_wt.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x" 6 | }, 7 | { 8 | "idiom" : "universal", 9 | "filename" : "tab_Category_wt.png", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /妙汇/Assets.xcassets/tab_Category_wt.imageset/tab_Category_wt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CCat00/miaohui--swift/4f6ac4ff367fcedd386435f517d51ddb4880d7ec/妙汇/Assets.xcassets/tab_Category_wt.imageset/tab_Category_wt.png -------------------------------------------------------------------------------- /妙汇/Assets.xcassets/tab_cart.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x" 6 | }, 7 | { 8 | "idiom" : "universal", 9 | "filename" : "tab_cart.png", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /妙汇/Assets.xcassets/tab_cart.imageset/tab_cart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CCat00/miaohui--swift/4f6ac4ff367fcedd386435f517d51ddb4880d7ec/妙汇/Assets.xcassets/tab_cart.imageset/tab_cart.png -------------------------------------------------------------------------------- /妙汇/Assets.xcassets/tab_cart_wt.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x" 6 | }, 7 | { 8 | "idiom" : "universal", 9 | "filename" : "tab_cart_wt.png", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /妙汇/Assets.xcassets/tab_cart_wt.imageset/tab_cart_wt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CCat00/miaohui--swift/4f6ac4ff367fcedd386435f517d51ddb4880d7ec/妙汇/Assets.xcassets/tab_cart_wt.imageset/tab_cart_wt.png -------------------------------------------------------------------------------- /妙汇/Assets.xcassets/tab_fieldOfView.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x" 6 | }, 7 | { 8 | "idiom" : "universal", 9 | "filename" : "tab_fieldOfView.png", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /妙汇/Assets.xcassets/tab_fieldOfView.imageset/tab_fieldOfView.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CCat00/miaohui--swift/4f6ac4ff367fcedd386435f517d51ddb4880d7ec/妙汇/Assets.xcassets/tab_fieldOfView.imageset/tab_fieldOfView.png -------------------------------------------------------------------------------- /妙汇/Assets.xcassets/tab_fieldOfView_wt.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x" 6 | }, 7 | { 8 | "idiom" : "universal", 9 | "filename" : "tab_fieldOfView_wt.png", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /妙汇/Assets.xcassets/tab_fieldOfView_wt.imageset/tab_fieldOfView_wt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CCat00/miaohui--swift/4f6ac4ff367fcedd386435f517d51ddb4880d7ec/妙汇/Assets.xcassets/tab_fieldOfView_wt.imageset/tab_fieldOfView_wt.png -------------------------------------------------------------------------------- /妙汇/Assets.xcassets/tab_home.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x" 6 | }, 7 | { 8 | "idiom" : "universal", 9 | "filename" : "tab_home.png", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /妙汇/Assets.xcassets/tab_home.imageset/tab_home.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CCat00/miaohui--swift/4f6ac4ff367fcedd386435f517d51ddb4880d7ec/妙汇/Assets.xcassets/tab_home.imageset/tab_home.png -------------------------------------------------------------------------------- /妙汇/Assets.xcassets/tab_home_wt.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x" 6 | }, 7 | { 8 | "idiom" : "universal", 9 | "filename" : "tab_home_wt.png", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /妙汇/Assets.xcassets/tab_home_wt.imageset/tab_home_wt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CCat00/miaohui--swift/4f6ac4ff367fcedd386435f517d51ddb4880d7ec/妙汇/Assets.xcassets/tab_home_wt.imageset/tab_home_wt.png -------------------------------------------------------------------------------- /妙汇/Assets.xcassets/tab_magic.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x" 6 | }, 7 | { 8 | "idiom" : "universal", 9 | "filename" : "tab_magic.png", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /妙汇/Assets.xcassets/tab_magic.imageset/tab_magic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CCat00/miaohui--swift/4f6ac4ff367fcedd386435f517d51ddb4880d7ec/妙汇/Assets.xcassets/tab_magic.imageset/tab_magic.png -------------------------------------------------------------------------------- /妙汇/Assets.xcassets/tab_magic_wt.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x" 6 | }, 7 | { 8 | "idiom" : "universal", 9 | "filename" : "tab_magic_wt.png", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /妙汇/Assets.xcassets/tab_magic_wt.imageset/tab_magic_wt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CCat00/miaohui--swift/4f6ac4ff367fcedd386435f517d51ddb4880d7ec/妙汇/Assets.xcassets/tab_magic_wt.imageset/tab_magic_wt.png -------------------------------------------------------------------------------- /妙汇/Assets.xcassets/tab_personal.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x" 6 | }, 7 | { 8 | "idiom" : "universal", 9 | "filename" : "tab_personal.png", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /妙汇/Assets.xcassets/tab_personal.imageset/tab_personal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CCat00/miaohui--swift/4f6ac4ff367fcedd386435f517d51ddb4880d7ec/妙汇/Assets.xcassets/tab_personal.imageset/tab_personal.png -------------------------------------------------------------------------------- /妙汇/Assets.xcassets/tab_personal_wt.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x" 6 | }, 7 | { 8 | "idiom" : "universal", 9 | "filename" : "tab_personal_wt.png", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /妙汇/Assets.xcassets/tab_personal_wt.imageset/tab_personal_wt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CCat00/miaohui--swift/4f6ac4ff367fcedd386435f517d51ddb4880d7ec/妙汇/Assets.xcassets/tab_personal_wt.imageset/tab_personal_wt.png -------------------------------------------------------------------------------- /妙汇/Assets.xcassets/tab_topic.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x" 6 | }, 7 | { 8 | "idiom" : "universal", 9 | "filename" : "tab_topic.png", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /妙汇/Assets.xcassets/tab_topic.imageset/tab_topic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CCat00/miaohui--swift/4f6ac4ff367fcedd386435f517d51ddb4880d7ec/妙汇/Assets.xcassets/tab_topic.imageset/tab_topic.png -------------------------------------------------------------------------------- /妙汇/Assets.xcassets/tab_topic_wt.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x" 6 | }, 7 | { 8 | "idiom" : "universal", 9 | "filename" : "tab_topic_wt.png", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /妙汇/Assets.xcassets/tab_topic_wt.imageset/tab_topic_wt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CCat00/miaohui--swift/4f6ac4ff367fcedd386435f517d51ddb4880d7ec/妙汇/Assets.xcassets/tab_topic_wt.imageset/tab_topic_wt.png -------------------------------------------------------------------------------- /妙汇/Assets.xcassets/thin_nav_back.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x" 6 | }, 7 | { 8 | "idiom" : "universal", 9 | "filename" : "thin_nav_back.png", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /妙汇/Assets.xcassets/thin_nav_back.imageset/thin_nav_back.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CCat00/miaohui--swift/4f6ac4ff367fcedd386435f517d51ddb4880d7ec/妙汇/Assets.xcassets/thin_nav_back.imageset/thin_nav_back.png -------------------------------------------------------------------------------- /妙汇/Assets.xcassets/tianjia.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "tianjia.png", 6 | "scale" : "1x" 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 | } -------------------------------------------------------------------------------- /妙汇/Assets.xcassets/tianjia.imageset/tianjia.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CCat00/miaohui--swift/4f6ac4ff367fcedd386435f517d51ddb4880d7ec/妙汇/Assets.xcassets/tianjia.imageset/tianjia.png -------------------------------------------------------------------------------- /妙汇/Assets.xcassets/timer_background.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "timer_background.png", 6 | "scale" : "1x" 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 | } -------------------------------------------------------------------------------- /妙汇/Assets.xcassets/timer_background.imageset/timer_background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CCat00/miaohui--swift/4f6ac4ff367fcedd386435f517d51ddb4880d7ec/妙汇/Assets.xcassets/timer_background.imageset/timer_background.png -------------------------------------------------------------------------------- /妙汇/Assets.xcassets/topic_carousel.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "topic_carousel.png", 6 | "scale" : "1x" 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 | } -------------------------------------------------------------------------------- /妙汇/Assets.xcassets/topic_carousel.imageset/topic_carousel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CCat00/miaohui--swift/4f6ac4ff367fcedd386435f517d51ddb4880d7ec/妙汇/Assets.xcassets/topic_carousel.imageset/topic_carousel.png -------------------------------------------------------------------------------- /妙汇/Assets.xcassets/touming.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "touming.png", 6 | "scale" : "1x" 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 | } -------------------------------------------------------------------------------- /妙汇/Assets.xcassets/touming.imageset/touming.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CCat00/miaohui--swift/4f6ac4ff367fcedd386435f517d51ddb4880d7ec/妙汇/Assets.xcassets/touming.imageset/touming.png -------------------------------------------------------------------------------- /妙汇/Assets.xcassets/touxiang.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "touxiang.png", 6 | "scale" : "1x" 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 | } -------------------------------------------------------------------------------- /妙汇/Assets.xcassets/touxiang.imageset/touxiang.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CCat00/miaohui--swift/4f6ac4ff367fcedd386435f517d51ddb4880d7ec/妙汇/Assets.xcassets/touxiang.imageset/touxiang.png -------------------------------------------------------------------------------- /妙汇/Assets.xcassets/transparence_gou.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "transparence_gou.png", 6 | "scale" : "1x" 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 | } -------------------------------------------------------------------------------- /妙汇/Assets.xcassets/transparence_gou.imageset/transparence_gou.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CCat00/miaohui--swift/4f6ac4ff367fcedd386435f517d51ddb4880d7ec/妙汇/Assets.xcassets/transparence_gou.imageset/transparence_gou.png -------------------------------------------------------------------------------- /妙汇/Assets.xcassets/triangle_afterSale.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "triangle_afterSale.png", 6 | "scale" : "1x" 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 | } -------------------------------------------------------------------------------- /妙汇/Assets.xcassets/triangle_afterSale.imageset/triangle_afterSale.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CCat00/miaohui--swift/4f6ac4ff367fcedd386435f517d51ddb4880d7ec/妙汇/Assets.xcassets/triangle_afterSale.imageset/triangle_afterSale.png -------------------------------------------------------------------------------- /妙汇/Assets.xcassets/un_touming.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "un_touming.png", 6 | "scale" : "1x" 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 | } -------------------------------------------------------------------------------- /妙汇/Assets.xcassets/un_touming.imageset/un_touming.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CCat00/miaohui--swift/4f6ac4ff367fcedd386435f517d51ddb4880d7ec/妙汇/Assets.xcassets/un_touming.imageset/un_touming.png -------------------------------------------------------------------------------- /妙汇/Assets.xcassets/unchoose.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "unchoose.png", 6 | "scale" : "1x" 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 | } -------------------------------------------------------------------------------- /妙汇/Assets.xcassets/unchoose.imageset/unchoose.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CCat00/miaohui--swift/4f6ac4ff367fcedd386435f517d51ddb4880d7ec/妙汇/Assets.xcassets/unchoose.imageset/unchoose.png -------------------------------------------------------------------------------- /妙汇/Assets.xcassets/unheart.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "unheart.png", 6 | "scale" : "1x" 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 | } -------------------------------------------------------------------------------- /妙汇/Assets.xcassets/unheart.imageset/unheart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CCat00/miaohui--swift/4f6ac4ff367fcedd386435f517d51ddb4880d7ec/妙汇/Assets.xcassets/unheart.imageset/unheart.png -------------------------------------------------------------------------------- /妙汇/Assets.xcassets/unlookkey.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "unlookkey.png", 6 | "scale" : "1x" 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 | } -------------------------------------------------------------------------------- /妙汇/Assets.xcassets/unlookkey.imageset/unlookkey.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CCat00/miaohui--swift/4f6ac4ff367fcedd386435f517d51ddb4880d7ec/妙汇/Assets.xcassets/unlookkey.imageset/unlookkey.png -------------------------------------------------------------------------------- /妙汇/Assets.xcassets/unselected_anonymous.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "unselected_anonymous.png", 6 | "scale" : "1x" 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 | } -------------------------------------------------------------------------------- /妙汇/Assets.xcassets/unselected_anonymous.imageset/unselected_anonymous.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CCat00/miaohui--swift/4f6ac4ff367fcedd386435f517d51ddb4880d7ec/妙汇/Assets.xcassets/unselected_anonymous.imageset/unselected_anonymous.png -------------------------------------------------------------------------------- /妙汇/Assets.xcassets/upSlide_productIntro.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "upSlide_productIntro.png", 6 | "scale" : "1x" 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 | } -------------------------------------------------------------------------------- /妙汇/Assets.xcassets/upSlide_productIntro.imageset/upSlide_productIntro.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CCat00/miaohui--swift/4f6ac4ff367fcedd386435f517d51ddb4880d7ec/妙汇/Assets.xcassets/upSlide_productIntro.imageset/upSlide_productIntro.png -------------------------------------------------------------------------------- /妙汇/Assets.xcassets/upTowardsArrow.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "upTowardsArrow.png", 6 | "scale" : "1x" 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 | } -------------------------------------------------------------------------------- /妙汇/Assets.xcassets/upTowardsArrow.imageset/upTowardsArrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CCat00/miaohui--swift/4f6ac4ff367fcedd386435f517d51ddb4880d7ec/妙汇/Assets.xcassets/upTowardsArrow.imageset/upTowardsArrow.png -------------------------------------------------------------------------------- /妙汇/Assets.xcassets/viewField_homePage.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x" 6 | }, 7 | { 8 | "idiom" : "universal", 9 | "filename" : "viewField_homePage.png", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /妙汇/Assets.xcassets/viewField_homePage.imageset/viewField_homePage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CCat00/miaohui--swift/4f6ac4ff367fcedd386435f517d51ddb4880d7ec/妙汇/Assets.xcassets/viewField_homePage.imageset/viewField_homePage.png -------------------------------------------------------------------------------- /妙汇/Assets.xcassets/viewInGrid.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "viewInGrid.png", 6 | "scale" : "1x" 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 | } -------------------------------------------------------------------------------- /妙汇/Assets.xcassets/viewInGrid.imageset/viewInGrid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CCat00/miaohui--swift/4f6ac4ff367fcedd386435f517d51ddb4880d7ec/妙汇/Assets.xcassets/viewInGrid.imageset/viewInGrid.png -------------------------------------------------------------------------------- /妙汇/Assets.xcassets/waitForReceiving_3DTouch.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "waitForReceiving_3DTouch.png", 6 | "scale" : "1x" 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 | } -------------------------------------------------------------------------------- /妙汇/Assets.xcassets/waitForReceiving_3DTouch.imageset/waitForReceiving_3DTouch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CCat00/miaohui--swift/4f6ac4ff367fcedd386435f517d51ddb4880d7ec/妙汇/Assets.xcassets/waitForReceiving_3DTouch.imageset/waitForReceiving_3DTouch.png -------------------------------------------------------------------------------- /妙汇/Assets.xcassets/weixinPay.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "weixinPay.png", 6 | "scale" : "1x" 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 | } -------------------------------------------------------------------------------- /妙汇/Assets.xcassets/weixinPay.imageset/weixinPay.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CCat00/miaohui--swift/4f6ac4ff367fcedd386435f517d51ddb4880d7ec/妙汇/Assets.xcassets/weixinPay.imageset/weixinPay.png -------------------------------------------------------------------------------- /妙汇/Assets.xcassets/wishList_3DTouch.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "wishList_3DTouch.png", 6 | "scale" : "1x" 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 | } -------------------------------------------------------------------------------- /妙汇/Assets.xcassets/wishList_3DTouch.imageset/wishList_3DTouch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CCat00/miaohui--swift/4f6ac4ff367fcedd386435f517d51ddb4880d7ec/妙汇/Assets.xcassets/wishList_3DTouch.imageset/wishList_3DTouch.png -------------------------------------------------------------------------------- /妙汇/Assets.xcassets/wodeshoucang.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "wodeshoucang.png", 6 | "scale" : "1x" 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 | } -------------------------------------------------------------------------------- /妙汇/Assets.xcassets/wodeshoucang.imageset/wodeshoucang.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CCat00/miaohui--swift/4f6ac4ff367fcedd386435f517d51ddb4880d7ec/妙汇/Assets.xcassets/wodeshoucang.imageset/wodeshoucang.png -------------------------------------------------------------------------------- /妙汇/Assets.xcassets/wujiaoxing.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "wujiaoxing.png", 6 | "scale" : "1x" 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 | } -------------------------------------------------------------------------------- /妙汇/Assets.xcassets/wujiaoxing.imageset/wujiaoxing.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CCat00/miaohui--swift/4f6ac4ff367fcedd386435f517d51ddb4880d7ec/妙汇/Assets.xcassets/wujiaoxing.imageset/wujiaoxing.png -------------------------------------------------------------------------------- /妙汇/Assets.xcassets/wujiaoxing_on.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "wujiaoxing_on.png", 6 | "scale" : "1x" 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 | } -------------------------------------------------------------------------------- /妙汇/Assets.xcassets/wujiaoxing_on.imageset/wujiaoxing_on.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CCat00/miaohui--swift/4f6ac4ff367fcedd386435f517d51ddb4880d7ec/妙汇/Assets.xcassets/wujiaoxing_on.imageset/wujiaoxing_on.png -------------------------------------------------------------------------------- /妙汇/Assets.xcassets/xuanzhong.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "xuanzhong.png", 6 | "scale" : "1x" 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 | } -------------------------------------------------------------------------------- /妙汇/Assets.xcassets/xuanzhong.imageset/xuanzhong.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CCat00/miaohui--swift/4f6ac4ff367fcedd386435f517d51ddb4880d7ec/妙汇/Assets.xcassets/xuanzhong.imageset/xuanzhong.png -------------------------------------------------------------------------------- /妙汇/Assets.xcassets/yao.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "yao.png", 6 | "scale" : "1x" 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 | } -------------------------------------------------------------------------------- /妙汇/Assets.xcassets/yao.imageset/yao.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CCat00/miaohui--swift/4f6ac4ff367fcedd386435f517d51ddb4880d7ec/妙汇/Assets.xcassets/yao.imageset/yao.png -------------------------------------------------------------------------------- /妙汇/Assets.xcassets/yuan.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "yuan.png", 6 | "scale" : "1x" 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 | } -------------------------------------------------------------------------------- /妙汇/Assets.xcassets/yuan.imageset/yuan.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CCat00/miaohui--swift/4f6ac4ff367fcedd386435f517d51ddb4880d7ec/妙汇/Assets.xcassets/yuan.imageset/yuan.png -------------------------------------------------------------------------------- /妙汇/Assets.xcassets/zaixiankefu.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "zaixiankefu.png", 6 | "scale" : "1x" 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 | } -------------------------------------------------------------------------------- /妙汇/Assets.xcassets/zaixiankefu.imageset/zaixiankefu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CCat00/miaohui--swift/4f6ac4ff367fcedd386435f517d51ddb4880d7ec/妙汇/Assets.xcassets/zaixiankefu.imageset/zaixiankefu.png -------------------------------------------------------------------------------- /妙汇/Assets.xcassets/zaixianzixun.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "zaixianzixun.png", 6 | "scale" : "1x" 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 | } -------------------------------------------------------------------------------- /妙汇/Assets.xcassets/zaixianzixun.imageset/zaixianzixun.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CCat00/miaohui--swift/4f6ac4ff367fcedd386435f517d51ddb4880d7ec/妙汇/Assets.xcassets/zaixianzixun.imageset/zaixianzixun.png -------------------------------------------------------------------------------- /妙汇/Assets.xcassets/zhedang.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "zhedang.png", 6 | "scale" : "1x" 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 | } -------------------------------------------------------------------------------- /妙汇/Assets.xcassets/zhedang.imageset/zhedang.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CCat00/miaohui--swift/4f6ac4ff367fcedd386435f517d51ddb4880d7ec/妙汇/Assets.xcassets/zhedang.imageset/zhedang.png -------------------------------------------------------------------------------- /妙汇/Assets.xcassets/zhengpin.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "zhengpin.png", 6 | "scale" : "1x" 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 | } -------------------------------------------------------------------------------- /妙汇/Assets.xcassets/zhengpin.imageset/zhengpin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CCat00/miaohui--swift/4f6ac4ff367fcedd386435f517d51ddb4880d7ec/妙汇/Assets.xcassets/zhengpin.imageset/zhengpin.png -------------------------------------------------------------------------------- /妙汇/Assets.xcassets/zhiwen.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "zhiwen.png", 6 | "scale" : "1x" 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 | } -------------------------------------------------------------------------------- /妙汇/Assets.xcassets/zhiwen.imageset/zhiwen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CCat00/miaohui--swift/4f6ac4ff367fcedd386435f517d51ddb4880d7ec/妙汇/Assets.xcassets/zhiwen.imageset/zhiwen.png -------------------------------------------------------------------------------- /妙汇/Assets.xcassets/zhuanquan.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "zhuanquan.png", 6 | "scale" : "1x" 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 | } -------------------------------------------------------------------------------- /妙汇/Assets.xcassets/zhuanquan.imageset/zhuanquan.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CCat00/miaohui--swift/4f6ac4ff367fcedd386435f517d51ddb4880d7ec/妙汇/Assets.xcassets/zhuanquan.imageset/zhuanquan.png -------------------------------------------------------------------------------- /妙汇/Assets.xcassets/减100.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "减100.png", 6 | "scale" : "1x" 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 | } -------------------------------------------------------------------------------- /妙汇/Assets.xcassets/减100.imageset/减100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CCat00/miaohui--swift/4f6ac4ff367fcedd386435f517d51ddb4880d7ec/妙汇/Assets.xcassets/减100.imageset/减100.png -------------------------------------------------------------------------------- /妙汇/Assets.xcassets/扫一扫.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x" 6 | }, 7 | { 8 | "idiom" : "universal", 9 | "filename" : "扫一扫.png", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /妙汇/Assets.xcassets/扫一扫.imageset/扫一扫.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CCat00/miaohui--swift/4f6ac4ff367fcedd386435f517d51ddb4880d7ec/妙汇/Assets.xcassets/扫一扫.imageset/扫一扫.png -------------------------------------------------------------------------------- /妙汇/MH-Bridge.h: -------------------------------------------------------------------------------- 1 | // 2 | // MH-Bridge.h 3 | // 妙汇 4 | // 5 | // Created by 韩威 on 2016/11/2. 6 | // Copyright © 2016年 韩威. All rights reserved. 7 | // 8 | 9 | #import "HMSegmentedControl.h" 10 | -------------------------------------------------------------------------------- /妙汇/MHConst.swift: -------------------------------------------------------------------------------- 1 | // 2 | // MHConst.swift 3 | // 妙汇 4 | // 5 | // Created by 韩威 on 2016/10/18. 6 | // Copyright © 2016年 韩威. All rights reserved. 7 | // 8 | 9 | import Foundation 10 | import UIKit 11 | 12 | let SCREEN_WIDTH = UIScreen.main.bounds.size.width 13 | let SCREEN_HEIGHT = UIScreen.main.bounds.size.height 14 | 15 | let MH_MAIN_COLOR_YELLOW = UIColor.hexColor(hex: 0xFDBC37) 16 | 17 | 18 | //let USE_NETWORK = false 19 | let USE_NETWORK = true 20 | -------------------------------------------------------------------------------- /妙汇/分类gif.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CCat00/miaohui--swift/4f6ac4ff367fcedd386435f517d51ddb4880d7ec/妙汇/分类gif.gif -------------------------------------------------------------------------------- /妙汇/分类界面.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CCat00/miaohui--swift/4f6ac4ff367fcedd386435f517d51ddb4880d7ec/妙汇/分类界面.png -------------------------------------------------------------------------------- /妙汇/分类详情.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CCat00/miaohui--swift/4f6ac4ff367fcedd386435f517d51ddb4880d7ec/妙汇/分类详情.png -------------------------------------------------------------------------------- /妙汇/视野.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CCat00/miaohui--swift/4f6ac4ff367fcedd386435f517d51ddb4880d7ec/妙汇/视野.png -------------------------------------------------------------------------------- /妙汇/视野gif.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CCat00/miaohui--swift/4f6ac4ff367fcedd386435f517d51ddb4880d7ec/妙汇/视野gif.gif -------------------------------------------------------------------------------- /妙汇/首页.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CCat00/miaohui--swift/4f6ac4ff367fcedd386435f517d51ddb4880d7ec/妙汇/首页.png -------------------------------------------------------------------------------- /妙汇/首页gif.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CCat00/miaohui--swift/4f6ac4ff367fcedd386435f517d51ddb4880d7ec/妙汇/首页gif.gif --------------------------------------------------------------------------------