├── .DS_Store ├── .gitignore ├── LICENSE ├── Podfile ├── Podfile.lock ├── Pods ├── AFNetworking │ ├── AFNetworking │ │ ├── AFHTTPSessionManager.h │ │ ├── AFHTTPSessionManager.m │ │ ├── AFNetworkReachabilityManager.h │ │ ├── AFNetworkReachabilityManager.m │ │ ├── AFNetworking.h │ │ ├── AFSecurityPolicy.h │ │ ├── AFSecurityPolicy.m │ │ ├── AFURLRequestSerialization.h │ │ ├── AFURLRequestSerialization.m │ │ ├── AFURLResponseSerialization.h │ │ ├── AFURLResponseSerialization.m │ │ ├── AFURLSessionManager.h │ │ └── AFURLSessionManager.m │ ├── LICENSE │ ├── README.md │ └── UIKit+AFNetworking │ │ ├── AFAutoPurgingImageCache.h │ │ ├── AFAutoPurgingImageCache.m │ │ ├── AFImageDownloader.h │ │ ├── AFImageDownloader.m │ │ ├── AFNetworkActivityIndicatorManager.h │ │ ├── AFNetworkActivityIndicatorManager.m │ │ ├── UIActivityIndicatorView+AFNetworking.h │ │ ├── UIActivityIndicatorView+AFNetworking.m │ │ ├── UIButton+AFNetworking.h │ │ ├── UIButton+AFNetworking.m │ │ ├── UIImage+AFNetworking.h │ │ ├── UIImageView+AFNetworking.h │ │ ├── UIImageView+AFNetworking.m │ │ ├── UIKit+AFNetworking.h │ │ ├── UIProgressView+AFNetworking.h │ │ ├── UIProgressView+AFNetworking.m │ │ ├── UIRefreshControl+AFNetworking.h │ │ ├── UIRefreshControl+AFNetworking.m │ │ ├── UIWebView+AFNetworking.h │ │ └── UIWebView+AFNetworking.m ├── Headers │ ├── Private │ │ ├── AFNetworking │ │ │ ├── AFAutoPurgingImageCache.h │ │ │ ├── AFHTTPSessionManager.h │ │ │ ├── AFImageDownloader.h │ │ │ ├── AFNetworkActivityIndicatorManager.h │ │ │ ├── AFNetworkReachabilityManager.h │ │ │ ├── AFNetworking.h │ │ │ ├── AFSecurityPolicy.h │ │ │ ├── AFURLRequestSerialization.h │ │ │ ├── AFURLResponseSerialization.h │ │ │ ├── AFURLSessionManager.h │ │ │ ├── UIActivityIndicatorView+AFNetworking.h │ │ │ ├── UIButton+AFNetworking.h │ │ │ ├── UIImage+AFNetworking.h │ │ │ ├── UIImageView+AFNetworking.h │ │ │ ├── UIKit+AFNetworking.h │ │ │ ├── UIProgressView+AFNetworking.h │ │ │ ├── UIRefreshControl+AFNetworking.h │ │ │ └── UIWebView+AFNetworking.h │ │ ├── MJExtension │ │ │ ├── MJExtension.h │ │ │ ├── MJExtensionConst.h │ │ │ ├── MJFoundation.h │ │ │ ├── MJProperty.h │ │ │ ├── MJPropertyKey.h │ │ │ ├── MJPropertyType.h │ │ │ ├── NSObject+MJClass.h │ │ │ ├── NSObject+MJCoding.h │ │ │ ├── NSObject+MJKeyValue.h │ │ │ ├── NSObject+MJProperty.h │ │ │ └── NSString+MJExtension.h │ │ ├── MJRefresh │ │ │ ├── MJRefresh.h │ │ │ ├── MJRefreshAutoFooter.h │ │ │ ├── MJRefreshAutoGifFooter.h │ │ │ ├── MJRefreshAutoNormalFooter.h │ │ │ ├── MJRefreshAutoStateFooter.h │ │ │ ├── MJRefreshBackFooter.h │ │ │ ├── MJRefreshBackGifFooter.h │ │ │ ├── MJRefreshBackNormalFooter.h │ │ │ ├── MJRefreshBackStateFooter.h │ │ │ ├── MJRefreshComponent.h │ │ │ ├── MJRefreshConst.h │ │ │ ├── MJRefreshFooter.h │ │ │ ├── MJRefreshGifHeader.h │ │ │ ├── MJRefreshHeader.h │ │ │ ├── MJRefreshNormalHeader.h │ │ │ ├── MJRefreshStateHeader.h │ │ │ ├── UIScrollView+MJExtension.h │ │ │ ├── UIScrollView+MJRefresh.h │ │ │ └── UIView+MJExtension.h │ │ ├── Masonry │ │ │ ├── MASCompositeConstraint.h │ │ │ ├── MASConstraint+Private.h │ │ │ ├── MASConstraint.h │ │ │ ├── MASConstraintMaker.h │ │ │ ├── MASLayoutConstraint.h │ │ │ ├── MASUtilities.h │ │ │ ├── MASViewAttribute.h │ │ │ ├── MASViewConstraint.h │ │ │ ├── Masonry.h │ │ │ ├── NSArray+MASAdditions.h │ │ │ ├── NSArray+MASShorthandAdditions.h │ │ │ ├── NSLayoutConstraint+MASDebugAdditions.h │ │ │ ├── View+MASAdditions.h │ │ │ ├── View+MASShorthandAdditions.h │ │ │ └── ViewController+MASAdditions.h │ │ ├── SDWebImage │ │ │ ├── NSData+ImageContentType.h │ │ │ ├── SDImageCache.h │ │ │ ├── SDWebImageCompat.h │ │ │ ├── SDWebImageDecoder.h │ │ │ ├── SDWebImageDownloader.h │ │ │ ├── SDWebImageDownloaderOperation.h │ │ │ ├── SDWebImageManager.h │ │ │ ├── SDWebImageOperation.h │ │ │ ├── SDWebImagePrefetcher.h │ │ │ ├── UIButton+WebCache.h │ │ │ ├── UIImage+GIF.h │ │ │ ├── UIImage+MultiFormat.h │ │ │ ├── UIImageView+HighlightedWebCache.h │ │ │ ├── UIImageView+WebCache.h │ │ │ └── UIView+WebCacheOperation.h │ │ ├── SVProgressHUD │ │ │ ├── SVIndefiniteAnimatedView.h │ │ │ ├── SVProgressAnimatedView.h │ │ │ ├── SVProgressHUD.h │ │ │ └── SVRadialGradientLayer.h │ │ └── pop │ │ │ ├── FloatConversion.h │ │ │ ├── POP.h │ │ │ ├── POPAction.h │ │ │ ├── POPAnimatableProperty.h │ │ │ ├── POPAnimation.h │ │ │ ├── POPAnimationEvent.h │ │ │ ├── POPAnimationEventInternal.h │ │ │ ├── POPAnimationExtras.h │ │ │ ├── POPAnimationInternal.h │ │ │ ├── POPAnimationPrivate.h │ │ │ ├── POPAnimationRuntime.h │ │ │ ├── POPAnimationTracer.h │ │ │ ├── POPAnimationTracerInternal.h │ │ │ ├── POPAnimator.h │ │ │ ├── POPAnimatorPrivate.h │ │ │ ├── POPBasicAnimation.h │ │ │ ├── POPBasicAnimationInternal.h │ │ │ ├── POPCGUtils.h │ │ │ ├── POPCustomAnimation.h │ │ │ ├── POPDecayAnimation.h │ │ │ ├── POPDecayAnimationInternal.h │ │ │ ├── POPDefines.h │ │ │ ├── POPGeometry.h │ │ │ ├── POPLayerExtras.h │ │ │ ├── POPMath.h │ │ │ ├── POPPropertyAnimation.h │ │ │ ├── POPPropertyAnimationInternal.h │ │ │ ├── POPSpringAnimation.h │ │ │ ├── POPSpringAnimationInternal.h │ │ │ ├── POPSpringSolver.h │ │ │ ├── POPVector.h │ │ │ ├── TransformationMatrix.h │ │ │ └── UnitBezier.h │ └── Public │ │ ├── AFNetworking │ │ ├── AFAutoPurgingImageCache.h │ │ ├── AFHTTPSessionManager.h │ │ ├── AFImageDownloader.h │ │ ├── AFNetworkActivityIndicatorManager.h │ │ ├── AFNetworkReachabilityManager.h │ │ ├── AFNetworking.h │ │ ├── AFSecurityPolicy.h │ │ ├── AFURLRequestSerialization.h │ │ ├── AFURLResponseSerialization.h │ │ ├── AFURLSessionManager.h │ │ ├── UIActivityIndicatorView+AFNetworking.h │ │ ├── UIButton+AFNetworking.h │ │ ├── UIImage+AFNetworking.h │ │ ├── UIImageView+AFNetworking.h │ │ ├── UIKit+AFNetworking.h │ │ ├── UIProgressView+AFNetworking.h │ │ ├── UIRefreshControl+AFNetworking.h │ │ └── UIWebView+AFNetworking.h │ │ ├── MJExtension │ │ ├── MJExtension.h │ │ ├── MJExtensionConst.h │ │ ├── MJFoundation.h │ │ ├── MJProperty.h │ │ ├── MJPropertyKey.h │ │ ├── MJPropertyType.h │ │ ├── NSObject+MJClass.h │ │ ├── NSObject+MJCoding.h │ │ ├── NSObject+MJKeyValue.h │ │ ├── NSObject+MJProperty.h │ │ └── NSString+MJExtension.h │ │ ├── MJRefresh │ │ ├── MJRefresh.h │ │ ├── MJRefreshAutoFooter.h │ │ ├── MJRefreshAutoGifFooter.h │ │ ├── MJRefreshAutoNormalFooter.h │ │ ├── MJRefreshAutoStateFooter.h │ │ ├── MJRefreshBackFooter.h │ │ ├── MJRefreshBackGifFooter.h │ │ ├── MJRefreshBackNormalFooter.h │ │ ├── MJRefreshBackStateFooter.h │ │ ├── MJRefreshComponent.h │ │ ├── MJRefreshConst.h │ │ ├── MJRefreshFooter.h │ │ ├── MJRefreshGifHeader.h │ │ ├── MJRefreshHeader.h │ │ ├── MJRefreshNormalHeader.h │ │ ├── MJRefreshStateHeader.h │ │ ├── UIScrollView+MJExtension.h │ │ ├── UIScrollView+MJRefresh.h │ │ └── UIView+MJExtension.h │ │ ├── Masonry │ │ ├── MASCompositeConstraint.h │ │ ├── MASConstraint+Private.h │ │ ├── MASConstraint.h │ │ ├── MASConstraintMaker.h │ │ ├── MASLayoutConstraint.h │ │ ├── MASUtilities.h │ │ ├── MASViewAttribute.h │ │ ├── MASViewConstraint.h │ │ ├── Masonry.h │ │ ├── NSArray+MASAdditions.h │ │ ├── NSArray+MASShorthandAdditions.h │ │ ├── NSLayoutConstraint+MASDebugAdditions.h │ │ ├── View+MASAdditions.h │ │ ├── View+MASShorthandAdditions.h │ │ └── ViewController+MASAdditions.h │ │ ├── SDWebImage │ │ ├── NSData+ImageContentType.h │ │ ├── SDImageCache.h │ │ ├── SDWebImageCompat.h │ │ ├── SDWebImageDecoder.h │ │ ├── SDWebImageDownloader.h │ │ ├── SDWebImageDownloaderOperation.h │ │ ├── SDWebImageManager.h │ │ ├── SDWebImageOperation.h │ │ ├── SDWebImagePrefetcher.h │ │ ├── UIButton+WebCache.h │ │ ├── UIImage+GIF.h │ │ ├── UIImage+MultiFormat.h │ │ ├── UIImageView+HighlightedWebCache.h │ │ ├── UIImageView+WebCache.h │ │ └── UIView+WebCacheOperation.h │ │ ├── SVProgressHUD │ │ ├── SVIndefiniteAnimatedView.h │ │ ├── SVProgressAnimatedView.h │ │ ├── SVProgressHUD.h │ │ └── SVRadialGradientLayer.h │ │ └── pop │ │ ├── POP.h │ │ ├── POPAnimatableProperty.h │ │ ├── POPAnimation.h │ │ ├── POPAnimationEvent.h │ │ ├── POPAnimationExtras.h │ │ ├── POPAnimationTracer.h │ │ ├── POPAnimator.h │ │ ├── POPBasicAnimation.h │ │ ├── POPCustomAnimation.h │ │ ├── POPDecayAnimation.h │ │ ├── POPDefines.h │ │ ├── POPGeometry.h │ │ ├── POPLayerExtras.h │ │ ├── POPPropertyAnimation.h │ │ └── POPSpringAnimation.h ├── MJExtension │ ├── LICENSE │ ├── MJExtension │ │ ├── MJExtension.h │ │ ├── MJExtensionConst.h │ │ ├── MJExtensionConst.m │ │ ├── MJFoundation.h │ │ ├── MJFoundation.m │ │ ├── MJProperty.h │ │ ├── MJProperty.m │ │ ├── MJPropertyKey.h │ │ ├── MJPropertyKey.m │ │ ├── MJPropertyType.h │ │ ├── MJPropertyType.m │ │ ├── NSObject+MJClass.h │ │ ├── NSObject+MJClass.m │ │ ├── NSObject+MJCoding.h │ │ ├── NSObject+MJCoding.m │ │ ├── NSObject+MJKeyValue.h │ │ ├── NSObject+MJKeyValue.m │ │ ├── NSObject+MJProperty.h │ │ ├── NSObject+MJProperty.m │ │ ├── NSString+MJExtension.h │ │ └── NSString+MJExtension.m │ └── README.md ├── MJRefresh │ ├── LICENSE │ ├── MJRefresh │ │ ├── Base │ │ │ ├── MJRefreshAutoFooter.h │ │ │ ├── MJRefreshAutoFooter.m │ │ │ ├── MJRefreshBackFooter.h │ │ │ ├── MJRefreshBackFooter.m │ │ │ ├── MJRefreshComponent.h │ │ │ ├── MJRefreshComponent.m │ │ │ ├── MJRefreshFooter.h │ │ │ ├── MJRefreshFooter.m │ │ │ ├── MJRefreshHeader.h │ │ │ └── MJRefreshHeader.m │ │ ├── Custom │ │ │ ├── Footer │ │ │ │ ├── Auto │ │ │ │ │ ├── MJRefreshAutoGifFooter.h │ │ │ │ │ ├── MJRefreshAutoGifFooter.m │ │ │ │ │ ├── MJRefreshAutoNormalFooter.h │ │ │ │ │ ├── MJRefreshAutoNormalFooter.m │ │ │ │ │ ├── MJRefreshAutoStateFooter.h │ │ │ │ │ └── MJRefreshAutoStateFooter.m │ │ │ │ └── Back │ │ │ │ │ ├── MJRefreshBackGifFooter.h │ │ │ │ │ ├── MJRefreshBackGifFooter.m │ │ │ │ │ ├── MJRefreshBackNormalFooter.h │ │ │ │ │ ├── MJRefreshBackNormalFooter.m │ │ │ │ │ ├── MJRefreshBackStateFooter.h │ │ │ │ │ └── MJRefreshBackStateFooter.m │ │ │ └── Header │ │ │ │ ├── MJRefreshGifHeader.h │ │ │ │ ├── MJRefreshGifHeader.m │ │ │ │ ├── MJRefreshNormalHeader.h │ │ │ │ ├── MJRefreshNormalHeader.m │ │ │ │ ├── MJRefreshStateHeader.h │ │ │ │ └── MJRefreshStateHeader.m │ │ ├── MJRefresh.bundle │ │ │ └── arrow@2x.png │ │ ├── MJRefresh.h │ │ ├── MJRefreshConst.h │ │ ├── MJRefreshConst.m │ │ ├── UIScrollView+MJExtension.h │ │ ├── UIScrollView+MJExtension.m │ │ ├── UIScrollView+MJRefresh.h │ │ ├── UIScrollView+MJRefresh.m │ │ ├── UIView+MJExtension.h │ │ └── UIView+MJExtension.m │ └── README.md ├── Manifest.lock ├── Masonry │ ├── LICENSE │ ├── Masonry │ │ ├── MASCompositeConstraint.h │ │ ├── MASCompositeConstraint.m │ │ ├── MASConstraint+Private.h │ │ ├── MASConstraint.h │ │ ├── MASConstraint.m │ │ ├── MASConstraintMaker.h │ │ ├── MASConstraintMaker.m │ │ ├── MASLayoutConstraint.h │ │ ├── MASLayoutConstraint.m │ │ ├── MASUtilities.h │ │ ├── MASViewAttribute.h │ │ ├── MASViewAttribute.m │ │ ├── MASViewConstraint.h │ │ ├── MASViewConstraint.m │ │ ├── Masonry.h │ │ ├── NSArray+MASAdditions.h │ │ ├── NSArray+MASAdditions.m │ │ ├── NSArray+MASShorthandAdditions.h │ │ ├── NSLayoutConstraint+MASDebugAdditions.h │ │ ├── NSLayoutConstraint+MASDebugAdditions.m │ │ ├── View+MASAdditions.h │ │ ├── View+MASAdditions.m │ │ ├── View+MASShorthandAdditions.h │ │ ├── ViewController+MASAdditions.h │ │ └── ViewController+MASAdditions.m │ └── README.md ├── Pods.xcodeproj │ └── project.pbxproj ├── SDWebImage │ ├── LICENSE │ ├── README.md │ └── SDWebImage │ │ ├── NSData+ImageContentType.h │ │ ├── NSData+ImageContentType.m │ │ ├── SDImageCache.h │ │ ├── SDImageCache.m │ │ ├── SDWebImageCompat.h │ │ ├── SDWebImageCompat.m │ │ ├── SDWebImageDecoder.h │ │ ├── SDWebImageDecoder.m │ │ ├── SDWebImageDownloader.h │ │ ├── SDWebImageDownloader.m │ │ ├── SDWebImageDownloaderOperation.h │ │ ├── SDWebImageDownloaderOperation.m │ │ ├── SDWebImageManager.h │ │ ├── SDWebImageManager.m │ │ ├── SDWebImageOperation.h │ │ ├── SDWebImagePrefetcher.h │ │ ├── SDWebImagePrefetcher.m │ │ ├── UIButton+WebCache.h │ │ ├── UIButton+WebCache.m │ │ ├── UIImage+GIF.h │ │ ├── UIImage+GIF.m │ │ ├── UIImage+MultiFormat.h │ │ ├── UIImage+MultiFormat.m │ │ ├── UIImageView+HighlightedWebCache.h │ │ ├── UIImageView+HighlightedWebCache.m │ │ ├── UIImageView+WebCache.h │ │ ├── UIImageView+WebCache.m │ │ ├── UIView+WebCacheOperation.h │ │ └── UIView+WebCacheOperation.m ├── SVProgressHUD │ ├── LICENSE.txt │ ├── README.md │ └── SVProgressHUD │ │ ├── SVIndefiniteAnimatedView.h │ │ ├── SVIndefiniteAnimatedView.m │ │ ├── SVProgressAnimatedView.h │ │ ├── SVProgressAnimatedView.m │ │ ├── SVProgressHUD.bundle │ │ ├── angle-mask.png │ │ ├── angle-mask@2x.png │ │ ├── angle-mask@3x.png │ │ ├── error.png │ │ ├── error@2x.png │ │ ├── error@3x.png │ │ ├── info.png │ │ ├── info@2x.png │ │ ├── info@3x.png │ │ ├── success.png │ │ ├── success@2x.png │ │ └── success@3x.png │ │ ├── SVProgressHUD.h │ │ ├── SVProgressHUD.m │ │ ├── SVRadialGradientLayer.h │ │ └── SVRadialGradientLayer.m ├── Target Support Files │ ├── AFNetworking │ │ ├── AFNetworking-dummy.m │ │ ├── AFNetworking-prefix.pch │ │ └── AFNetworking.xcconfig │ ├── MJExtension │ │ ├── MJExtension-dummy.m │ │ ├── MJExtension-prefix.pch │ │ └── MJExtension.xcconfig │ ├── MJRefresh │ │ ├── MJRefresh-dummy.m │ │ ├── MJRefresh-prefix.pch │ │ └── MJRefresh.xcconfig │ ├── Masonry │ │ ├── Masonry-dummy.m │ │ ├── Masonry-prefix.pch │ │ └── Masonry.xcconfig │ ├── Pods-XCFApp │ │ ├── Pods-XCFApp-acknowledgements.markdown │ │ ├── Pods-XCFApp-acknowledgements.plist │ │ ├── Pods-XCFApp-dummy.m │ │ ├── Pods-XCFApp-frameworks.sh │ │ ├── Pods-XCFApp-resources.sh │ │ ├── Pods-XCFApp.debug.xcconfig │ │ └── Pods-XCFApp.release.xcconfig │ ├── SDWebImage │ │ ├── SDWebImage-dummy.m │ │ ├── SDWebImage-prefix.pch │ │ └── SDWebImage.xcconfig │ ├── SVProgressHUD │ │ ├── SVProgressHUD-dummy.m │ │ ├── SVProgressHUD-prefix.pch │ │ └── SVProgressHUD.xcconfig │ └── pop │ │ ├── pop-dummy.m │ │ ├── pop-prefix.pch │ │ └── pop.xcconfig └── pop │ ├── LICENSE │ ├── README.md │ └── pop │ ├── POP.h │ ├── POPAction.h │ ├── POPAnimatableProperty.h │ ├── POPAnimatableProperty.mm │ ├── POPAnimation.h │ ├── POPAnimation.mm │ ├── POPAnimationEvent.h │ ├── POPAnimationEvent.mm │ ├── POPAnimationEventInternal.h │ ├── POPAnimationExtras.h │ ├── POPAnimationExtras.mm │ ├── POPAnimationInternal.h │ ├── POPAnimationPrivate.h │ ├── POPAnimationRuntime.h │ ├── POPAnimationRuntime.mm │ ├── POPAnimationTracer.h │ ├── POPAnimationTracer.mm │ ├── POPAnimationTracerInternal.h │ ├── POPAnimator.h │ ├── POPAnimator.mm │ ├── POPAnimatorPrivate.h │ ├── POPBasicAnimation.h │ ├── POPBasicAnimation.mm │ ├── POPBasicAnimationInternal.h │ ├── POPCGUtils.h │ ├── POPCGUtils.mm │ ├── POPCustomAnimation.h │ ├── POPCustomAnimation.mm │ ├── POPDecayAnimation.h │ ├── POPDecayAnimation.mm │ ├── POPDecayAnimationInternal.h │ ├── POPDefines.h │ ├── POPGeometry.h │ ├── POPGeometry.mm │ ├── POPLayerExtras.h │ ├── POPLayerExtras.mm │ ├── POPMath.h │ ├── POPMath.mm │ ├── POPPropertyAnimation.h │ ├── POPPropertyAnimation.mm │ ├── POPPropertyAnimationInternal.h │ ├── POPSpringAnimation.h │ ├── POPSpringAnimation.mm │ ├── POPSpringAnimationInternal.h │ ├── POPSpringSolver.h │ ├── POPVector.h │ ├── POPVector.mm │ └── WebCore │ ├── FloatConversion.h │ ├── TransformationMatrix.cpp │ ├── TransformationMatrix.h │ └── UnitBezier.h ├── README.md ├── XCFApp.xcodeproj ├── project.pbxproj └── project.xcworkspace │ └── contents.xcworkspacedata ├── XCFApp.xcworkspace ├── contents.xcworkspacedata └── xcshareddata │ ├── IDEWorkspaceChecks.plist │ └── WorkspaceSettings.xcsettings ├── XCFApp ├── .DS_Store ├── Classes │ ├── Bazaar - 市集 │ │ ├── Bazaar - 市集 │ │ │ └── Controller │ │ │ │ ├── XCFBazaarController.h │ │ │ │ └── XCFBazaarController.m │ │ ├── Goods - 商品界面 │ │ │ ├── Controller │ │ │ │ ├── XCFDetailReviewViewController.h │ │ │ │ ├── XCFDetailReviewViewController.m │ │ │ │ ├── XCFGoodsReviewController.h │ │ │ │ ├── XCFGoodsReviewController.m │ │ │ │ ├── XCFGoodsViewController.h │ │ │ │ └── XCFGoodsViewController.m │ │ │ ├── Model │ │ │ │ ├── XCFGoodsAttrs.h │ │ │ │ ├── XCFGoodsAttrs.m │ │ │ │ ├── XCFGoodsKind.h │ │ │ │ ├── XCFGoodsKind.m │ │ │ │ ├── XCFShop.h │ │ │ │ └── XCFShop.m │ │ │ └── View │ │ │ │ ├── ImageTextDetail │ │ │ │ ├── XCFAttrsCell.h │ │ │ │ ├── XCFAttrsCell.m │ │ │ │ ├── XCFGoodsAttrsViewCell.h │ │ │ │ ├── XCFGoodsAttrsViewCell.m │ │ │ │ ├── XCFGoodsImageTextView.h │ │ │ │ └── XCFGoodsImageTextView.m │ │ │ │ ├── KindsCategoryView │ │ │ │ ├── XCFKindsCategoryView.h │ │ │ │ ├── XCFKindsCategoryView.m │ │ │ │ ├── XCFKindsView.h │ │ │ │ ├── XCFKindsView.m │ │ │ │ ├── XCFKindsView.xib │ │ │ │ ├── XCFStepper.h │ │ │ │ ├── XCFStepper.m │ │ │ │ └── XCFStepper.xib │ │ │ │ ├── XCFDetailReviewCell.h │ │ │ │ ├── XCFDetailReviewCell.m │ │ │ │ ├── XCFDetailReviewCell.xib │ │ │ │ ├── XCFGoodsBottomView.h │ │ │ │ ├── XCFGoodsBottomView.m │ │ │ │ ├── XCFGoodsFooterView.h │ │ │ │ ├── XCFGoodsFooterView.m │ │ │ │ ├── XCFGoodsFooterView.xib │ │ │ │ ├── XCFGoodsShopCell.h │ │ │ │ ├── XCFGoodsShopCell.m │ │ │ │ ├── XCFGoodsShopCell.xib │ │ │ │ └── header │ │ │ │ ├── XCFGoodsDetailView.h │ │ │ │ ├── XCFGoodsDetailView.m │ │ │ │ ├── XCFGoodsDetailView.xib │ │ │ │ ├── XCFGoodsHeaderView.h │ │ │ │ ├── XCFGoodsHeaderView.m │ │ │ │ ├── XCFGoodsShopPromotionView.h │ │ │ │ ├── XCFGoodsShopPromotionView.m │ │ │ │ └── XCFGoodsShopPromotionView.xib │ │ └── ShoppingCart - 购物车 │ │ │ ├── Controller │ │ │ ├── XCFCartViewController.h │ │ │ ├── XCFCartViewController.m │ │ │ ├── XCFOrderViewController.h │ │ │ └── XCFOrderViewController.m │ │ │ ├── Model │ │ │ ├── XCFCartItem.h │ │ │ ├── XCFCartItem.m │ │ │ ├── XCFCartItemTool.h │ │ │ └── XCFCartItemTool.m │ │ │ └── View │ │ │ ├── 订单 │ │ │ ├── XCFOrderAddressView.h │ │ │ ├── XCFOrderAddressView.m │ │ │ ├── XCFOrderAddressView.xib │ │ │ ├── XCFOrderFooterView.h │ │ │ ├── XCFOrderFooterView.m │ │ │ ├── XCFOrderFooterView.xib │ │ │ ├── XCFOrderPayView.h │ │ │ ├── XCFOrderPayView.m │ │ │ ├── XCFOrderPayView.xib │ │ │ ├── XCFOrderSectionFooter.h │ │ │ ├── XCFOrderSectionFooter.m │ │ │ └── XCFOrderSectionFooter.xib │ │ │ └── 购物车 │ │ │ ├── XCFCartItemCell.h │ │ │ ├── XCFCartItemCell.m │ │ │ ├── XCFCartItemCell.xib │ │ │ ├── XCFCartItemShopView.h │ │ │ ├── XCFCartItemShopView.m │ │ │ ├── XCFCartItemShopView.xib │ │ │ ├── XCFCartSettlementView.h │ │ │ ├── XCFCartSettlementView.m │ │ │ └── XCFCartSettlementView.xib │ ├── Community - 社区 │ │ ├── Controller │ │ │ ├── XCFCommunityViewController.h │ │ │ ├── XCFCommunityViewController.m │ │ │ ├── XCFTopicDetailController.h │ │ │ ├── XCFTopicDetailController.m │ │ │ ├── XCFTopicViewController.h │ │ │ └── XCFTopicViewController.m │ │ ├── Model │ │ │ ├── XCFCommentTool.h │ │ │ ├── XCFCommentTool.m │ │ │ ├── XCFForum.h │ │ │ ├── XCFForum.m │ │ │ ├── XCFTopic.h │ │ │ ├── XCFTopic.m │ │ │ ├── XCFTopicComment.h │ │ │ └── XCFTopicComment.m │ │ └── View │ │ │ ├── XCFAddCommentView.h │ │ │ ├── XCFAddCommentView.m │ │ │ ├── XCFAddCommentView.xib │ │ │ ├── XCFCommentCell.h │ │ │ ├── XCFCommentCell.m │ │ │ ├── XCFCommentCell.xib │ │ │ ├── XCFForumViewCell.h │ │ │ ├── XCFForumViewCell.m │ │ │ ├── XCFForumViewCell.xib │ │ │ ├── XCFTopicCell.h │ │ │ ├── XCFTopicCell.m │ │ │ └── XCFTopicCell.xib │ ├── Kitchen - 下厨房 │ │ ├── BuyList - 菜篮子 │ │ │ ├── Controller │ │ │ │ ├── XCFIngredientListViewController.h │ │ │ │ └── XCFIngredientListViewController.m │ │ │ ├── Model │ │ │ │ ├── XCFIngredientTool.h │ │ │ │ └── XCFIngredientTool.m │ │ │ └── View │ │ │ │ ├── XCFBuyListSectionHeader.h │ │ │ │ ├── XCFBuyListSectionHeader.m │ │ │ │ ├── XCFBuyListSectionHeader.xib │ │ │ │ ├── XCFIngredientListTopView.h │ │ │ │ ├── XCFIngredientListTopView.m │ │ │ │ ├── XCFIngredientListTopView.xib │ │ │ │ ├── XCFIngredientListViewCell.h │ │ │ │ ├── XCFIngredientListViewCell.m │ │ │ │ ├── XCFIngredientListViewCell.xib │ │ │ │ ├── XCFIngredientView.h │ │ │ │ └── XCFIngredientView.m │ │ ├── CreateRecipe - 创建菜谱 │ │ │ ├── CreateRecipe │ │ │ │ ├── Footer │ │ │ │ │ ├── XCFCreateIngredientFooter.h │ │ │ │ │ ├── XCFCreateIngredientFooter.m │ │ │ │ │ ├── XCFCreateInstructionFooter.h │ │ │ │ │ ├── XCFCreateInstructionFooter.m │ │ │ │ │ ├── XCFIngredientEditFooter.h │ │ │ │ │ ├── XCFIngredientEditFooter.m │ │ │ │ │ ├── XCFRecipeEditViewFooter.h │ │ │ │ │ ├── XCFRecipeEditViewFooter.m │ │ │ │ │ └── XCFRecipeEditViewFooter.xib │ │ │ │ ├── cell │ │ │ │ │ ├── XCFCreateRecipeInstructionCell.h │ │ │ │ │ ├── XCFCreateRecipeInstructionCell.m │ │ │ │ │ ├── XCFCreateTipsCell.h │ │ │ │ │ ├── XCFCreateTipsCell.m │ │ │ │ │ ├── XCFDraftRecipeCell.h │ │ │ │ │ ├── XCFDraftRecipeCell.m │ │ │ │ │ ├── XCFDraftRecipeCell.xib │ │ │ │ │ ├── XCFIngredientEditCell.h │ │ │ │ │ ├── XCFIngredientEditCell.m │ │ │ │ │ └── XCFIngredientEditCell.xib │ │ │ │ └── header │ │ │ │ │ ├── XCFRecipeEditViewHeader.h │ │ │ │ │ ├── XCFRecipeEditViewHeader.m │ │ │ │ │ └── XCFRecipeEditViewHeader.xib │ │ │ ├── 编辑界面 │ │ │ │ ├── Controller │ │ │ │ │ ├── XCFDraftBoxViewController.h │ │ │ │ │ ├── XCFDraftBoxViewController.m │ │ │ │ │ ├── XCFEditController.h │ │ │ │ │ ├── XCFEditController.m │ │ │ │ │ ├── XCFIngredientEditController.h │ │ │ │ │ └── XCFIngredientEditController.m │ │ │ │ └── Model │ │ │ │ │ ├── Tool │ │ │ │ │ ├── XCFCreateRecipe+Tool.h │ │ │ │ │ ├── XCFCreateRecipe+Tool.m │ │ │ │ │ ├── XCFRecipeDraftTool.h │ │ │ │ │ └── XCFRecipeDraftTool.m │ │ │ │ │ ├── XCFCreateIngredient.h │ │ │ │ │ ├── XCFCreateIngredient.m │ │ │ │ │ ├── XCFCreateInstruction.h │ │ │ │ │ ├── XCFCreateInstruction.m │ │ │ │ │ ├── XCFCreateRecipe.h │ │ │ │ │ └── XCFCreateRecipe.m │ │ │ └── 草稿界面 │ │ │ │ └── Controller │ │ │ │ ├── XCFCreateRecipeController.h │ │ │ │ ├── XCFCreateRecipeController.m │ │ │ │ ├── XCFRecipeCreateController.h │ │ │ │ └── XCFRecipeCreateController.m │ │ ├── Main - 下厨房 │ │ │ ├── Controller │ │ │ │ ├── XCFDishViewController.h │ │ │ │ ├── XCFDishViewController.m │ │ │ │ ├── XCFKitchenViewController.h │ │ │ │ ├── XCFKitchenViewController.m │ │ │ │ ├── XCFRecipeListViewController.h │ │ │ │ ├── XCFRecipeListViewController.m │ │ │ │ ├── XCFRecipeViewController.h │ │ │ │ └── XCFRecipeViewController.m │ │ │ ├── Model │ │ │ │ ├── NavModel - 顶部导航数据 │ │ │ │ │ ├── XCFNav.h │ │ │ │ │ ├── XCFNav.m │ │ │ │ │ ├── XCFNavContent.h │ │ │ │ │ ├── XCFNavContent.m │ │ │ │ │ ├── XCFPopEvent.h │ │ │ │ │ ├── XCFPopEvent.m │ │ │ │ │ ├── XCFPopEvents.h │ │ │ │ │ └── XCFPopEvents.m │ │ │ │ ├── PushModel - 跳转页面数据 │ │ │ │ │ ├── Recipe │ │ │ │ │ │ ├── XCFAddedRecipeList.h │ │ │ │ │ │ ├── XCFAddedRecipeList.m │ │ │ │ │ │ ├── XCFRecipe.h │ │ │ │ │ │ ├── XCFRecipe.m │ │ │ │ │ │ ├── XCFRecipeContent.h │ │ │ │ │ │ ├── XCFRecipeContent.m │ │ │ │ │ │ ├── XCFRecipeDish.h │ │ │ │ │ │ ├── XCFRecipeDish.m │ │ │ │ │ │ ├── XCFRecipeIngredient.h │ │ │ │ │ │ ├── XCFRecipeIngredient.m │ │ │ │ │ │ ├── XCFRecipeInstruction.h │ │ │ │ │ │ ├── XCFRecipeInstruction.m │ │ │ │ │ │ ├── XCFRecipeStats.h │ │ │ │ │ │ └── XCFRecipeStats.m │ │ │ │ │ └── RecipeList │ │ │ │ │ │ ├── XCFRecipeList.h │ │ │ │ │ │ ├── XCFRecipeList.m │ │ │ │ │ │ ├── XCFRecipeListReason.h │ │ │ │ │ │ └── XCFRecipeListReason.m │ │ │ │ └── cellModel - 首页 │ │ │ │ │ ├── XCFContent.h │ │ │ │ │ ├── XCFContent.m │ │ │ │ │ ├── XCFContents.h │ │ │ │ │ ├── XCFContents.m │ │ │ │ │ ├── XCFImage.h │ │ │ │ │ ├── XCFImage.m │ │ │ │ │ ├── XCFIssues.h │ │ │ │ │ ├── XCFIssues.m │ │ │ │ │ ├── XCFItems.h │ │ │ │ │ └── XCFItems.m │ │ │ └── View │ │ │ │ ├── Dish - 作品 │ │ │ │ ├── DishShow - 作品展示 │ │ │ │ │ ├── XCFDishCell.h │ │ │ │ │ ├── XCFDishCell.m │ │ │ │ │ ├── XCFDishCell.xib │ │ │ │ │ ├── XCFDishShowCell.h │ │ │ │ │ └── XCFDishShowCell.m │ │ │ │ ├── XCFDishViewCell.h │ │ │ │ ├── XCFDishViewCell.m │ │ │ │ └── XCFDishViewCell.xib │ │ │ │ ├── Nav - 导航 │ │ │ │ ├── XCFDishNavDetailView.h │ │ │ │ ├── XCFDishNavDetailView.m │ │ │ │ ├── XCFKitchenHeader.h │ │ │ │ ├── XCFKitchenHeader.m │ │ │ │ ├── XCFNavButton.h │ │ │ │ ├── XCFNavButton.m │ │ │ │ ├── XCFTopNavImageView.h │ │ │ │ └── XCFTopNavImageView.m │ │ │ │ ├── Recipe - 菜谱 │ │ │ │ ├── XCFAddedRecipeListViewCell.h │ │ │ │ ├── XCFAddedRecipeListViewCell.m │ │ │ │ ├── XCFAddedRecipeListViewCell.xib │ │ │ │ ├── XCFRecipeHeader.h │ │ │ │ ├── XCFRecipeHeader.m │ │ │ │ ├── XCFRecipeIngredientCell.h │ │ │ │ ├── XCFRecipeIngredientCell.m │ │ │ │ ├── XCFRecipeInstructionCell.h │ │ │ │ ├── XCFRecipeInstructionCell.m │ │ │ │ ├── XCFRecipeSupplementaryFooter.h │ │ │ │ └── XCFRecipeSupplementaryFooter.m │ │ │ │ ├── RecipeList - 菜单 │ │ │ │ ├── XCFRecipeListHeader.h │ │ │ │ └── XCFRecipeListHeader.m │ │ │ │ ├── XCFRecipeCell.h │ │ │ │ └── XCFRecipeCell.m │ │ ├── Nav - 导航 │ │ │ ├── Controller │ │ │ │ ├── XCFFeedsViewController.h │ │ │ │ ├── XCFFeedsViewController.m │ │ │ │ ├── XCFKitchenBuyViewController.h │ │ │ │ ├── XCFKitchenBuyViewController.m │ │ │ │ ├── XCFMealViewController.h │ │ │ │ └── XCFMealViewController.m │ │ │ ├── Model │ │ │ │ ├── BuyBuyBuy - 买买买 │ │ │ │ │ ├── XCFGoods.h │ │ │ │ │ ├── XCFGoods.m │ │ │ │ │ ├── XCFReview.h │ │ │ │ │ ├── XCFReview.m │ │ │ │ │ ├── XCFReviewCommodity.h │ │ │ │ │ ├── XCFReviewCommodity.m │ │ │ │ │ ├── XCFReviewPhoto.h │ │ │ │ │ └── XCFReviewPhoto.m │ │ │ │ ├── FeedsModel - 关注动态 │ │ │ │ │ ├── XCFComment.h │ │ │ │ │ ├── XCFComment.m │ │ │ │ │ ├── XCFDiggUsers.h │ │ │ │ │ ├── XCFDiggUsers.m │ │ │ │ │ ├── XCFDish.h │ │ │ │ │ ├── XCFDish.m │ │ │ │ │ ├── XCFEvents.h │ │ │ │ │ ├── XCFEvents.m │ │ │ │ │ ├── XCFFeeds.h │ │ │ │ │ ├── XCFFeeds.m │ │ │ │ │ ├── XCFFeedsContent.h │ │ │ │ │ ├── XCFFeedsContent.m │ │ │ │ │ ├── XCFPicture.h │ │ │ │ │ └── XCFPicture.m │ │ │ │ └── MealsModel - 三餐 │ │ │ │ │ ├── XCFMealInfo.h │ │ │ │ │ └── XCFMealInfo.m │ │ │ └── View │ │ │ │ └── Meals - 三餐 │ │ │ │ ├── XCFMealDishCell.h │ │ │ │ ├── XCFMealDishCell.m │ │ │ │ ├── XCFMealDishCell.xib │ │ │ │ ├── XCFMealHeader.h │ │ │ │ ├── XCFMealHeader.m │ │ │ │ └── XCFMealHeader.xib │ │ ├── Search - 搜索 │ │ │ ├── Controller │ │ │ │ ├── XCFSearchResultViewController.h │ │ │ │ ├── XCFSearchResultViewController.m │ │ │ │ ├── XCFSearchViewController.h │ │ │ │ └── XCFSearchViewController.m │ │ │ ├── Model │ │ │ │ ├── XCFSearchKeywordsTool.h │ │ │ │ └── XCFSearchKeywordsTool.m │ │ │ └── View │ │ │ │ ├── XCFSearchViewFooter.h │ │ │ │ ├── XCFSearchViewFooter.m │ │ │ │ ├── XCFSearchViewHeader.h │ │ │ │ └── XCFSearchViewHeader.m │ │ └── UploadDish - 上传作品 │ │ │ ├── Controller │ │ │ ├── XCFAddTagViewController.h │ │ │ ├── XCFAddTagViewController.m │ │ │ ├── XCFUploadDishViewController.h │ │ │ └── XCFUploadDishViewController.m │ │ │ ├── Model │ │ │ ├── XCFUploadDataTool.h │ │ │ └── XCFUploadDataTool.m │ │ │ └── View │ │ │ ├── XCFMealsAndTagsView.h │ │ │ ├── XCFMealsAndTagsView.m │ │ │ ├── XCFMealsAndTagsView.xib │ │ │ ├── XCFPhotoView.h │ │ │ ├── XCFPhotoView.m │ │ │ ├── XCFPhotoView.xib │ │ │ ├── XCFTagView.h │ │ │ ├── XCFTagView.m │ │ │ ├── XCFTagView.xib │ │ │ ├── XCFTextAndPhotoView.h │ │ │ ├── XCFTextAndPhotoView.m │ │ │ └── XCFTextAndPhotoView.xib │ ├── Me - 我 │ │ ├── Controller │ │ │ ├── XCFMeController.h │ │ │ └── XCFMeController.m │ │ ├── Model │ │ │ ├── XCFAuthor.h │ │ │ ├── XCFAuthor.m │ │ │ ├── XCFAuthorDetail.h │ │ │ └── XCFAuthorDetail.m │ │ └── View │ │ │ ├── XCFMeInfoView.h │ │ │ ├── XCFMeInfoView.m │ │ │ ├── XCFMeInfoView.xib │ │ │ ├── XCFMeSwitchView.h │ │ │ ├── XCFMeSwitchView.m │ │ │ ├── XCFMyLocateNDescView.h │ │ │ ├── XCFMyLocateNDescView.m │ │ │ ├── XCFMyLocateNDescView.xib │ │ │ ├── XCFMyViewHeader.h │ │ │ └── XCFMyViewHeader.m │ ├── Other │ │ ├── AppDelegate.h │ │ ├── AppDelegate.m │ │ ├── Category │ │ │ ├── NSDate+Extension.h │ │ │ ├── NSDate+Extension.m │ │ │ ├── NSString+Extension.h │ │ │ ├── NSString+Extension.m │ │ │ ├── UIBarButtonItem+Extension.h │ │ │ ├── UIBarButtonItem+Extension.m │ │ │ ├── UIButton+Extension.h │ │ │ ├── UIButton+Extension.m │ │ │ ├── UIImage+Extension.h │ │ │ ├── UIImage+Extension.m │ │ │ ├── UIImageView+Extension.h │ │ │ ├── UIImageView+Extension.m │ │ │ ├── UILabel+Extension.h │ │ │ ├── UILabel+Extension.m │ │ │ ├── UIViewController+Extension.h │ │ │ └── UIViewController+Extension.m │ │ ├── Const │ │ │ ├── XCFConst.h │ │ │ ├── XCFConst.m │ │ │ ├── XCFConstRequest.h │ │ │ ├── XCFConstRequest.m │ │ │ ├── XCFConstString.h │ │ │ └── XCFConstString.m │ │ ├── Controller │ │ │ ├── XCFImageShowController.h │ │ │ ├── XCFImageShowController.m │ │ │ ├── XCFNavigationController.h │ │ │ ├── XCFNavigationController.m │ │ │ ├── XCFTabBarController.h │ │ │ └── XCFTabBarController.m │ │ ├── PrefixHeader.pch │ │ ├── Tools │ │ │ ├── XCFCity.h │ │ │ ├── XCFCity.m │ │ │ ├── XCFDetailArea.h │ │ │ ├── XCFDetailArea.m │ │ │ ├── XCFDetailCity.h │ │ │ ├── XCFDetailCity.m │ │ │ ├── XCFDetailLocation.h │ │ │ ├── XCFDetailLocation.m │ │ │ ├── XCFLocation.h │ │ │ └── XCFLocation.m │ │ ├── View │ │ │ ├── XCFAddMark.h │ │ │ ├── XCFAddMark.m │ │ │ ├── XCFBottomView.h │ │ │ ├── XCFBottomView.m │ │ │ ├── XCFCartIcon.h │ │ │ ├── XCFCartIcon.m │ │ │ ├── XCFCartIcon.xib │ │ │ ├── XCFImageShowView.h │ │ │ ├── XCFImageShowView.m │ │ │ ├── XCFSearchBar.h │ │ │ ├── XCFSearchBar.m │ │ │ ├── XCFStarView.h │ │ │ └── XCFStarView.m │ │ └── main.m │ └── Setting - 设置 │ │ ├── Controller │ │ ├── XCFAddressEditingController.h │ │ ├── XCFAddressEditingController.m │ │ ├── XCFProfileEditingController.h │ │ ├── XCFProfileEditingController.m │ │ ├── XCFSettingViewController.h │ │ ├── XCFSettingViewController.m │ │ ├── XCFShippingAddressController.h │ │ └── XCFShippingAddressController.m │ │ ├── Model │ │ ├── XCFAddressInfo.h │ │ ├── XCFAddressInfo.m │ │ ├── XCFAddressInfoTool.h │ │ ├── XCFAddressInfoTool.m │ │ ├── XCFMyInfo.h │ │ └── XCFMyInfo.m │ │ └── View │ │ ├── ProfileEditing │ │ ├── XCFEditingBirthAndGenderCell.h │ │ ├── XCFEditingBirthAndGenderCell.m │ │ ├── XCFEditingBirthAndGenderCell.xib │ │ ├── XCFEditingDescCell.h │ │ ├── XCFEditingDescCell.m │ │ ├── XCFEditingDescCell.xib │ │ ├── XCFEditingLocationCell.h │ │ ├── XCFEditingLocationCell.m │ │ ├── XCFEditingLocationCell.xib │ │ ├── XCFEditingTextCell.h │ │ ├── XCFEditingTextCell.m │ │ ├── XCFEditingTextCell.xib │ │ ├── XCFProfileEditingHeader.h │ │ ├── XCFProfileEditingHeader.m │ │ └── XCFProfileEditingHeader.xib │ │ ├── ShippingAddress │ │ ├── XCFAddAddressView.h │ │ ├── XCFAddAddressView.m │ │ ├── XCFAddressEditingView.h │ │ ├── XCFAddressEditingView.m │ │ ├── XCFAddressEditingView.xib │ │ ├── XCFShippingAddressCell.h │ │ ├── XCFShippingAddressCell.m │ │ └── XCFShippingAddressCell.xib │ │ ├── XCFMyInfoCell.h │ │ ├── XCFMyInfoCell.m │ │ ├── XCFMyInfoCell.xib │ │ ├── XCFSettingFooter.h │ │ └── XCFSettingFooter.m └── Supporting Files │ ├── Assets.xcassets │ ├── AppIcon.appiconset │ │ ├── AppIcon29x29.png │ │ ├── AppIcon29x29@2x.png │ │ ├── AppIcon40x40@2x.png │ │ ├── AppIcon57x57.png │ │ ├── AppIcon57x57@2x.png │ │ ├── AppIcon60x60@2x-1.png │ │ ├── AppIcon60x60@2x.png │ │ ├── AppIcon60x60@3x.png │ │ └── Contents.json │ ├── Brand Assets-2.launchimage │ │ └── Contents.json │ ├── Brand Assets.launchimage │ │ └── Contents.json │ ├── Contents.json │ ├── LaunchImage.launchimage │ │ ├── Contents.json │ │ ├── LaunchImage-568h@2x.png │ │ ├── LaunchImage-700-568h@2x.png │ │ ├── LaunchImage-700@2x.png │ │ ├── LaunchImage-800-667h@2x.png │ │ ├── LaunchImage-800-Portrait-736h@3x.png │ │ ├── LaunchImage.png │ │ └── LaunchImage@2x.png │ ├── Menu │ │ └── Contents.json │ ├── My-我 │ │ ├── Contents.json │ │ ├── myFavourite.imageset │ │ │ ├── Contents.json │ │ │ └── myFavourite.png │ │ ├── myVoucher.imageset │ │ │ ├── Contents.json │ │ │ └── myVoucher.png │ │ ├── mycredit.imageset │ │ │ ├── Contents.json │ │ │ └── mycredit.png │ │ ├── myfav.imageset │ │ │ ├── Contents.json │ │ │ └── myfav.png │ │ └── myorder.imageset │ │ │ ├── Contents.json │ │ │ └── myorder.png │ ├── NavigationBar │ │ ├── Contents.json │ │ ├── backStretchBackgroundNormal.imageset │ │ │ ├── Contents.json │ │ │ └── backStretchBackgroundNormal.png │ │ ├── buylistButtonImage.imageset │ │ │ ├── Contents.json │ │ │ └── buylistButtonImage.png │ │ ├── homepageCreateRecipeButton.imageset │ │ │ ├── Contents.json │ │ │ └── homepageCreateRecipeButton.png │ │ ├── leftPageButtonBackgroundNormal.imageset │ │ │ ├── Contents.json │ │ │ └── leftPageButtonBackgroundNormal.png │ │ ├── navFindFriendsImage.imageset │ │ │ ├── Contents.json │ │ │ └── navFindFriendsImage.png │ │ ├── notification.imageset │ │ │ ├── Contents.json │ │ │ └── notification.png │ │ ├── rightPageSetting.imageset │ │ │ ├── Contents.json │ │ │ └── rightPageSetting.png │ │ └── shoppingCart.imageset │ │ │ ├── Contents.json │ │ │ └── shoppingCart.png │ ├── Share │ │ ├── Contents.json │ │ ├── share_douban.imageset │ │ │ ├── Contents.json │ │ │ └── share_douban.png │ │ ├── share_qq.imageset │ │ │ ├── Contents.json │ │ │ └── share_qq.png │ │ ├── share_qzone.imageset │ │ │ ├── Contents.json │ │ │ └── share_qzone.png │ │ ├── share_weibo.imageset │ │ │ ├── Contents.json │ │ │ └── share_weibo.png │ │ ├── share_weixin.imageset │ │ │ ├── Contents.json │ │ │ └── share_weixin.png │ │ └── share_weixin_friends.imageset │ │ │ ├── Contents.json │ │ │ └── share_weixin_friends.png │ ├── Sync │ │ └── Contents.json │ ├── Tabbar │ │ ├── Contents.json │ │ ├── tabADeselected.imageset │ │ │ ├── Contents.json │ │ │ └── tabADeselected.png │ │ ├── tabASelected.imageset │ │ │ ├── Contents.json │ │ │ └── tabASelected.png │ │ ├── tabBDeselected.imageset │ │ │ ├── Contents.json │ │ │ └── tabBDeselected.png │ │ ├── tabBSelected.imageset │ │ │ ├── Contents.json │ │ │ └── tabBSelected.png │ │ ├── tabCDeselected.imageset │ │ │ ├── Contents.json │ │ │ └── tabCDeselected.png │ │ ├── tabCSelected.imageset │ │ │ ├── Contents.json │ │ │ └── tabCSelected.png │ │ ├── tabDDeselected.imageset │ │ │ ├── Contents.json │ │ │ └── tabDDeselected.png │ │ └── tabDSelected.imageset │ │ │ ├── Contents.json │ │ │ └── tabDSelected.png │ ├── addMark.imageset │ │ ├── Contents.json │ │ └── addMark.png │ ├── addPhotoStyle1.imageset │ │ ├── Contents.json │ │ └── addPhotoStyle1.png │ ├── addPhotoStyle2.imageset │ │ ├── Contents.json │ │ └── addPhotoStyle2.png │ ├── arrow.imageset │ │ ├── Contents.json │ │ └── arrow.png │ ├── backLogin.imageset │ │ ├── Contents.json │ │ └── backLogin.png │ ├── bar.imageset │ │ ├── Contents.json │ │ └── bar@2x.png │ ├── buyListRecipeButtonNormal.imageset │ │ ├── Contents.json │ │ └── buyListRecipeButtonNormal.png │ ├── buyListStatButtonNormal.imageset │ │ ├── Contents.json │ │ └── buyListStatButtonNormal.png │ ├── buylistIngredientStrokeThroughLine.imageset │ │ ├── Contents.json │ │ └── buylistIngredientStrokeThroughLine.png │ ├── camera_Magnet.imageset │ │ ├── Contents.json │ │ └── camera_Magnet.png │ ├── camera_NoMagnet.imageset │ │ ├── Contents.json │ │ └── camera_NoMagnet.png │ ├── camera_line.imageset │ │ ├── Contents.json │ │ ├── camera_line.png │ │ └── camera_line@2x.png │ ├── camera_line_h.imageset │ │ ├── Contents.json │ │ ├── camera_line_h.png │ │ └── camera_line_h@2x.png │ ├── close-1.imageset │ │ ├── Contents.json │ │ ├── close.png │ │ └── close@2x.png │ ├── close.imageset │ │ ├── Contents.json │ │ └── close.png │ ├── closeBlack.imageset │ │ ├── Contents.json │ │ └── closeBlack.png │ ├── closeLandscape.imageset │ │ ├── Contents.json │ │ └── closeLandscape.png │ ├── close_cha.imageset │ │ ├── Contents.json │ │ ├── close_cha.png │ │ └── close_cha@2x.png │ ├── close_cha_h.imageset │ │ ├── Contents.json │ │ ├── close_cha_h.png │ │ └── close_cha_h@2x.png │ ├── comment.imageset │ │ ├── Contents.json │ │ └── comment.png │ ├── convenient_share_other.imageset │ │ ├── Contents.json │ │ └── convenient_share_other.png │ ├── convenient_share_pyq.imageset │ │ ├── Contents.json │ │ └── convenient_share_pyq.png │ ├── convenient_share_wx.imageset │ │ ├── Contents.json │ │ └── convenient_share_wx.png │ ├── creatdishicon.imageset │ │ ├── Contents.json │ │ └── creatdishicon.png │ ├── createRecipeCamera.imageset │ │ ├── Contents.json │ │ └── createRecipeCamera.png │ ├── createRecipeEdit.imageset │ │ ├── Contents.json │ │ └── createRecipeEdit.png │ ├── create_dish_event_delete.imageset │ │ ├── Contents.json │ │ └── create_dish_event_delete.png │ ├── create_dish_photo_delete.imageset │ │ ├── Contents.json │ │ └── create_dish_photo_delete.png │ ├── createctag.imageset │ │ ├── Contents.json │ │ └── createctag.png │ ├── crossMark.imageset │ │ ├── Contents.json │ │ └── crossMark.png │ ├── customerServiceMail.imageset │ │ ├── Contents.json │ │ └── customerServiceMail.png │ ├── customerServicePhone.imageset │ │ ├── Contents.json │ │ └── customerServicePhone.png │ ├── defaultUserHeader.imageset │ │ ├── Contents.json │ │ └── defaultUserHeader.png │ ├── dishPagerLike.imageset │ │ ├── Contents.json │ │ └── dishPagerLike.png │ ├── dishPagerLiked.imageset │ │ ├── Contents.json │ │ └── dishPagerLiked.png │ ├── ectag.imageset │ │ ├── Contents.json │ │ └── ectag.png │ ├── error.imageset │ │ ├── Contents.json │ │ └── error.png │ ├── feedsNoFriends.imageset │ │ ├── Contents.json │ │ └── feedsNoFriends.png │ ├── feedsNoFriendsIcon.imageset │ │ ├── Contents.json │ │ └── feedsNoFriendsIcon.png │ ├── feedsNotLogin.imageset │ │ ├── Contents.json │ │ └── feedsNotLogin.png │ ├── feedsNotLoginIcon.imageset │ │ ├── Contents.json │ │ └── feedsNotLoginIcon.png │ ├── flashing_auto.imageset │ │ ├── Contents.json │ │ ├── flashing_auto.png │ │ └── flashing_auto@2x.png │ ├── flashing_off.imageset │ │ ├── Contents.json │ │ ├── flashing_off.png │ │ └── flashing_off@2x.png │ ├── flashing_on.imageset │ │ ├── Contents.json │ │ ├── flashing_on.png │ │ └── flashing_on@2x.png │ ├── goodsReviewBackground.imageset │ │ ├── Contents.json │ │ └── goodsReviewBackground.png │ ├── goodsReviewQrHelp.imageset │ │ ├── Contents.json │ │ └── goodsReviewQrHelp.png │ ├── goodsReviewShareHat.imageset │ │ ├── Contents.json │ │ └── goodsReviewShareHat.png │ ├── goodsReviewStarDisabled.imageset │ │ ├── Contents.json │ │ └── goodsReviewStarDisabled.png │ ├── goodsReviewStarEnabled.imageset │ │ ├── Contents.json │ │ └── goodsReviewStarEnabled.png │ ├── goodsReviewTextRoundedBg.imageset │ │ ├── Contents.json │ │ ├── goodsReviewTextRoundedBg.png │ │ └── goodsReviewTextRoundedBg@2x.png │ ├── grayBg.imageset │ │ ├── Contents.json │ │ └── grayBg.png │ ├── handleButtonBackgroundSelected.imageset │ │ ├── Contents.json │ │ └── handleButtonBackgroundSelected.png │ ├── homeECBannerFresh.imageset │ │ ├── Contents.json │ │ └── homeECBannerFresh.png │ ├── imagePreviewClose.imageset │ │ ├── Contents.json │ │ └── imagePreviewClose.png │ ├── isEssentialIcon.imageset │ │ ├── Contents.json │ │ └── isEssentialIcon.png │ ├── isStickedIcon.imageset │ │ ├── Contents.json │ │ └── isStickedIcon.png │ ├── jam.imageset │ │ ├── Contents.json │ │ └── jam.png │ ├── jamFilter1.imageset │ │ ├── Contents.json │ │ └── jamFilter1.png │ ├── jamFilter2.imageset │ │ ├── Contents.json │ │ └── jamFilter2.png │ ├── lemon.imageset │ │ ├── Contents.json │ │ └── lemon.png │ ├── lemonFilter1.imageset │ │ ├── Contents.json │ │ └── lemonFilter1.png │ ├── like.imageset │ │ ├── Contents.json │ │ └── like.png │ ├── likeSmall.imageset │ │ ├── Contents.json │ │ └── likeSmall.png │ ├── liked.imageset │ │ ├── Contents.json │ │ └── liked.png │ ├── likedSmall.imageset │ │ ├── Contents.json │ │ └── likedSmall.png │ ├── login_bg.imageset │ │ ├── Contents.json │ │ └── login_bg.png │ ├── logo.imageset │ │ ├── Contents.json │ │ ├── logo.png │ │ └── logo@2x.png │ ├── lookup.imageset │ │ ├── Contents.json │ │ └── lookup.png │ ├── lookup_amatorka.imageset │ │ ├── Contents.json │ │ └── lookup_amatorka.png │ ├── lookup_miss_etikate.imageset │ │ ├── Contents.json │ │ └── lookup_miss_etikate.png │ ├── lookup_soft_elegance_1.imageset │ │ ├── Contents.json │ │ └── lookup_soft_elegance_1.png │ ├── lookup_soft_elegance_2.imageset │ │ ├── Contents.json │ │ └── lookup_soft_elegance_2.png │ ├── nearby.imageset │ │ ├── Contents.json │ │ └── nearby.png │ ├── newRecipeListPicFrame.imageset │ │ ├── Contents.json │ │ └── newRecipeListPicFrame.png │ ├── noneFeedBackground.imageset │ │ ├── Contents.json │ │ └── noneFeedBackground.png │ ├── origin.imageset │ │ ├── Contents.json │ │ └── origin.png │ ├── paymentAlipay.imageset │ │ ├── Contents.json │ │ └── paymentAlipay.png │ ├── paymentWechat.imageset │ │ ├── Contents.json │ │ └── paymentWechat.png │ ├── phoneBindIcon.imageset │ │ ├── Contents.json │ │ └── phoneBindIcon.png │ ├── playButton.imageset │ │ ├── Contents.json │ │ └── playButton.png │ ├── plusIcon.imageset │ │ ├── Contents.json │ │ └── plusIcon.png │ ├── pudding.imageset │ │ ├── Contents.json │ │ └── pudding.png │ ├── puddingFilter1.imageset │ │ ├── Contents.json │ │ └── puddingFilter1.png │ ├── purchaseIngOneClick.imageset │ │ ├── Contents.json │ │ └── purchaseIngOneClick.png │ ├── qqicon.imageset │ │ ├── Contents.json │ │ └── qqicon.png │ ├── recipeDelete.imageset │ │ ├── Contents.json │ │ └── recipeDelete.png │ ├── recipeDetailPortraitCameraIcon.imageset │ │ ├── Contents.json │ │ └── recipeDetailPortraitCameraIcon.png │ ├── recipeDraftEdit.imageset │ │ ├── Contents.json │ │ └── recipeDraftEdit.png │ ├── recipeListBorder.imageset │ │ ├── Contents.json │ │ └── recipeListBorder.png │ ├── refresh.imageset │ │ ├── Contents.json │ │ └── refresh@2x.png │ ├── refresh_click.imageset │ │ ├── Contents.json │ │ └── refresh_click@2x.png │ ├── reportIcon.imageset │ │ ├── Contents.json │ │ └── reportIcon.png │ ├── reportIcongray.imageset │ │ ├── Contents.json │ │ └── reportIcongray.png │ ├── rotateGuide.imageset │ │ ├── Contents.json │ │ └── rotateGuide.png │ ├── save_icon.imageset │ │ ├── Contents.json │ │ ├── save_icon.png │ │ └── save_icon@2x.png │ ├── save_icon_highlighted.imageset │ │ ├── Contents.json │ │ ├── save_icon_highlighted.png │ │ └── save_icon_highlighted@2x.png │ ├── searchIcon.imageset │ │ ├── Contents.json │ │ └── searchIcon.png │ ├── seperator.imageset │ │ ├── Contents.json │ │ └── seperator.png │ ├── sexualitySegmentButtonSelected.imageset │ │ ├── Contents.json │ │ └── sexualitySegmentButtonSelected.png │ ├── shareAppIcon.imageset │ │ ├── Contents.json │ │ └── shareAppIcon.png │ ├── shareIcon.imageset │ │ ├── Contents.json │ │ └── shareIcon.png │ ├── shopIcon.imageset │ │ ├── Contents.json │ │ └── shopIcon.png │ ├── shop_icon.imageset │ │ ├── Contents.json │ │ └── ff824140838911e5907ee0db5512b208.png@2o_50sh_1pr_1l_1wh.png │ ├── shortcutItemSearch.imageset │ │ ├── Contents.json │ │ ├── shortcutItemSearch.png │ │ └── shortcutItemSearch@2x.png │ ├── shortcutitemfavourite.imageset │ │ ├── Contents.json │ │ ├── shortcutitemfavourite.png │ │ └── shortcutitemfavourite@2x.png │ ├── shortcutitemupload.imageset │ │ ├── Contents.json │ │ ├── shortcutitemupload.png │ │ └── shortcutitemupload@2x.png │ ├── shot.imageset │ │ ├── Contents.json │ │ ├── shot.png │ │ └── shot@2x.png │ ├── shot_h.imageset │ │ ├── Contents.json │ │ ├── shot_h.png │ │ └── shot_h@2x.png │ ├── shutdown.imageset │ │ ├── Contents.json │ │ └── shutdown@2x.png │ ├── shutdown_click.imageset │ │ ├── Contents.json │ │ └── shutdown_click@2x.png │ ├── singleSelectDefaultMark.imageset │ │ ├── Contents.json │ │ └── singleSelectDefaultMark.png │ ├── singleSelectedCheckedIcon.imageset │ │ ├── Contents.json │ │ └── singleSelectedCheckedIcon.png │ ├── stepperAddDisabled.imageset │ │ ├── Contents.json │ │ └── stepperAddDisabled.png │ ├── stepperAddEnabled.imageset │ │ ├── Contents.json │ │ └── stepperAddEnabled.png │ ├── stepperMinusDisabled.imageset │ │ ├── Contents.json │ │ └── stepperMinusDisabled.png │ ├── stepperMinusEnabled.imageset │ │ ├── Contents.json │ │ └── stepperMinusEnabled.png │ ├── strawberry.imageset │ │ ├── Contents.json │ │ └── strawberry.png │ ├── strawberryFilter1.imageset │ │ ├── Contents.json │ │ └── strawberryFilter1.png │ ├── strawberryFilter2.imageset │ │ ├── Contents.json │ │ └── strawberryFilter2.png │ ├── success.imageset │ │ ├── Contents.json │ │ └── success.png │ ├── switch_camera.imageset │ │ ├── Contents.json │ │ ├── switch_camera.png │ │ └── switch_camera@2x.png │ ├── switch_camera_h.imageset │ │ ├── Contents.json │ │ ├── switch_camera_h.png │ │ └── switch_camera_h@2x.png │ ├── themeBigPicForBreakfast.imageset │ │ ├── Contents.json │ │ └── themeBigPicForBreakfast.png │ ├── themeBigPicForLaunch.imageset │ │ ├── Contents.json │ │ └── themeBigPicForLaunch.png │ ├── themeBigPicForSupper.imageset │ │ ├── Contents.json │ │ └── themeBigPicForSupper.png │ ├── themeSmallPicForBreakfast.imageset │ │ ├── Contents.json │ │ └── themeSmallPicForBreakfast.png │ ├── themeSmallPicForLaunch.imageset │ │ ├── Contents.json │ │ └── themeSmallPicForLaunch.png │ ├── themeSmallPicForOthers.imageset │ │ ├── Contents.json │ │ └── themeSmallPicForOthers.png │ ├── themeSmallPicForSupper.imageset │ │ ├── Contents.json │ │ └── themeSmallPicForSupper.png │ ├── topicTrangle.imageset │ │ ├── Contents.json │ │ └── topicTrangle.png │ ├── touch_focus.imageset │ │ ├── Contents.json │ │ ├── touch_focus.png │ │ └── touch_focus@2x.png │ ├── touch_focus_x.imageset │ │ ├── Contents.json │ │ ├── touch_focus_x.png │ │ └── touch_focus_x@2x.png │ ├── userIsExpertIcon28x28.imageset │ │ ├── Contents.json │ │ └── userIsExpertIcon28x28.png │ ├── userIsExpertIcon36x36.imageset │ │ ├── Contents.json │ │ └── userIsExpertIcon36x36.png │ ├── webViewIconBack.imageset │ │ ├── Contents.json │ │ └── webViewIconBack.png │ ├── webViewIconBackDisable.imageset │ │ ├── Contents.json │ │ └── webViewIconBackDisable.png │ ├── webViewIconForward.imageset │ │ ├── Contents.json │ │ └── webViewIconForward.png │ ├── webViewIconForwardDisable.imageset │ │ ├── Contents.json │ │ └── webViewIconForwardDisable.png │ ├── webViewIconRefresh.imageset │ │ ├── Contents.json │ │ └── webViewIconRefresh.png │ ├── yellowStar13Disabled.imageset │ │ ├── Contents.json │ │ └── yellowStar13Disabled.png │ ├── yellowStar13Enabled.imageset │ │ ├── Contents.json │ │ └── yellowStar13Enabled.png │ ├── yellowStar13Half.imageset │ │ ├── Contents.json │ │ └── yellowStar13Half.png │ ├── yellowStar40Disabled.imageset │ │ ├── Contents.json │ │ └── yellowStar40Disabled.png │ ├── yellowStar40Enabled.imageset │ │ ├── Contents.json │ │ └── yellowStar40Enabled.png │ ├── yesMark.imageset │ │ ├── Contents.json │ │ └── yesMark.png │ └── yesMarkSmall.imageset │ │ ├── Contents.json │ │ └── yesMarkSmall.png │ ├── Info.plist │ ├── JSON │ ├── breakfast.json │ └── location.json │ └── Plist │ ├── Ingredient.plist │ ├── cart_items.plist │ ├── comment.plist │ ├── detaillocation.plist │ └── keywords.plist ├── XCFAppTests ├── Info.plist └── XCFAppTests.m ├── XCFAppUITests ├── Info.plist └── XCFAppUITests.m └── 下厨房API.md.htm /.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psven/XCFApp/b070c0999b22e5093b8b640f046934aee44ed268/.DS_Store -------------------------------------------------------------------------------- /Podfile: -------------------------------------------------------------------------------- 1 | platform :ios, '7.0' 2 | 3 | target ‘XCFApp’ do 4 | 5 | pod 'MJRefresh' 6 | pod 'MJExtension' 7 | pod 'AFNetworking' 8 | pod 'Masonry' 9 | pod 'SDWebImage' 10 | pod 'SVProgressHUD' 11 | pod ‘pop’ 12 | 13 | end -------------------------------------------------------------------------------- /Pods/Headers/Private/AFNetworking/AFAutoPurgingImageCache.h: -------------------------------------------------------------------------------- 1 | ../../../AFNetworking/UIKit+AFNetworking/AFAutoPurgingImageCache.h -------------------------------------------------------------------------------- /Pods/Headers/Private/AFNetworking/AFHTTPSessionManager.h: -------------------------------------------------------------------------------- 1 | ../../../AFNetworking/AFNetworking/AFHTTPSessionManager.h -------------------------------------------------------------------------------- /Pods/Headers/Private/AFNetworking/AFImageDownloader.h: -------------------------------------------------------------------------------- 1 | ../../../AFNetworking/UIKit+AFNetworking/AFImageDownloader.h -------------------------------------------------------------------------------- /Pods/Headers/Private/AFNetworking/AFNetworkActivityIndicatorManager.h: -------------------------------------------------------------------------------- 1 | ../../../AFNetworking/UIKit+AFNetworking/AFNetworkActivityIndicatorManager.h -------------------------------------------------------------------------------- /Pods/Headers/Private/AFNetworking/AFNetworkReachabilityManager.h: -------------------------------------------------------------------------------- 1 | ../../../AFNetworking/AFNetworking/AFNetworkReachabilityManager.h -------------------------------------------------------------------------------- /Pods/Headers/Private/AFNetworking/AFNetworking.h: -------------------------------------------------------------------------------- 1 | ../../../AFNetworking/AFNetworking/AFNetworking.h -------------------------------------------------------------------------------- /Pods/Headers/Private/AFNetworking/AFSecurityPolicy.h: -------------------------------------------------------------------------------- 1 | ../../../AFNetworking/AFNetworking/AFSecurityPolicy.h -------------------------------------------------------------------------------- /Pods/Headers/Private/AFNetworking/AFURLRequestSerialization.h: -------------------------------------------------------------------------------- 1 | ../../../AFNetworking/AFNetworking/AFURLRequestSerialization.h -------------------------------------------------------------------------------- /Pods/Headers/Private/AFNetworking/AFURLResponseSerialization.h: -------------------------------------------------------------------------------- 1 | ../../../AFNetworking/AFNetworking/AFURLResponseSerialization.h -------------------------------------------------------------------------------- /Pods/Headers/Private/AFNetworking/AFURLSessionManager.h: -------------------------------------------------------------------------------- 1 | ../../../AFNetworking/AFNetworking/AFURLSessionManager.h -------------------------------------------------------------------------------- /Pods/Headers/Private/AFNetworking/UIActivityIndicatorView+AFNetworking.h: -------------------------------------------------------------------------------- 1 | ../../../AFNetworking/UIKit+AFNetworking/UIActivityIndicatorView+AFNetworking.h -------------------------------------------------------------------------------- /Pods/Headers/Private/AFNetworking/UIButton+AFNetworking.h: -------------------------------------------------------------------------------- 1 | ../../../AFNetworking/UIKit+AFNetworking/UIButton+AFNetworking.h -------------------------------------------------------------------------------- /Pods/Headers/Private/AFNetworking/UIImage+AFNetworking.h: -------------------------------------------------------------------------------- 1 | ../../../AFNetworking/UIKit+AFNetworking/UIImage+AFNetworking.h -------------------------------------------------------------------------------- /Pods/Headers/Private/AFNetworking/UIImageView+AFNetworking.h: -------------------------------------------------------------------------------- 1 | ../../../AFNetworking/UIKit+AFNetworking/UIImageView+AFNetworking.h -------------------------------------------------------------------------------- /Pods/Headers/Private/AFNetworking/UIKit+AFNetworking.h: -------------------------------------------------------------------------------- 1 | ../../../AFNetworking/UIKit+AFNetworking/UIKit+AFNetworking.h -------------------------------------------------------------------------------- /Pods/Headers/Private/AFNetworking/UIProgressView+AFNetworking.h: -------------------------------------------------------------------------------- 1 | ../../../AFNetworking/UIKit+AFNetworking/UIProgressView+AFNetworking.h -------------------------------------------------------------------------------- /Pods/Headers/Private/AFNetworking/UIRefreshControl+AFNetworking.h: -------------------------------------------------------------------------------- 1 | ../../../AFNetworking/UIKit+AFNetworking/UIRefreshControl+AFNetworking.h -------------------------------------------------------------------------------- /Pods/Headers/Private/AFNetworking/UIWebView+AFNetworking.h: -------------------------------------------------------------------------------- 1 | ../../../AFNetworking/UIKit+AFNetworking/UIWebView+AFNetworking.h -------------------------------------------------------------------------------- /Pods/Headers/Private/MJExtension/MJExtension.h: -------------------------------------------------------------------------------- 1 | ../../../MJExtension/MJExtension/MJExtension.h -------------------------------------------------------------------------------- /Pods/Headers/Private/MJExtension/MJExtensionConst.h: -------------------------------------------------------------------------------- 1 | ../../../MJExtension/MJExtension/MJExtensionConst.h -------------------------------------------------------------------------------- /Pods/Headers/Private/MJExtension/MJFoundation.h: -------------------------------------------------------------------------------- 1 | ../../../MJExtension/MJExtension/MJFoundation.h -------------------------------------------------------------------------------- /Pods/Headers/Private/MJExtension/MJProperty.h: -------------------------------------------------------------------------------- 1 | ../../../MJExtension/MJExtension/MJProperty.h -------------------------------------------------------------------------------- /Pods/Headers/Private/MJExtension/MJPropertyKey.h: -------------------------------------------------------------------------------- 1 | ../../../MJExtension/MJExtension/MJPropertyKey.h -------------------------------------------------------------------------------- /Pods/Headers/Private/MJExtension/MJPropertyType.h: -------------------------------------------------------------------------------- 1 | ../../../MJExtension/MJExtension/MJPropertyType.h -------------------------------------------------------------------------------- /Pods/Headers/Private/MJExtension/NSObject+MJClass.h: -------------------------------------------------------------------------------- 1 | ../../../MJExtension/MJExtension/NSObject+MJClass.h -------------------------------------------------------------------------------- /Pods/Headers/Private/MJExtension/NSObject+MJCoding.h: -------------------------------------------------------------------------------- 1 | ../../../MJExtension/MJExtension/NSObject+MJCoding.h -------------------------------------------------------------------------------- /Pods/Headers/Private/MJExtension/NSObject+MJKeyValue.h: -------------------------------------------------------------------------------- 1 | ../../../MJExtension/MJExtension/NSObject+MJKeyValue.h -------------------------------------------------------------------------------- /Pods/Headers/Private/MJExtension/NSObject+MJProperty.h: -------------------------------------------------------------------------------- 1 | ../../../MJExtension/MJExtension/NSObject+MJProperty.h -------------------------------------------------------------------------------- /Pods/Headers/Private/MJExtension/NSString+MJExtension.h: -------------------------------------------------------------------------------- 1 | ../../../MJExtension/MJExtension/NSString+MJExtension.h -------------------------------------------------------------------------------- /Pods/Headers/Private/MJRefresh/MJRefresh.h: -------------------------------------------------------------------------------- 1 | ../../../MJRefresh/MJRefresh/MJRefresh.h -------------------------------------------------------------------------------- /Pods/Headers/Private/MJRefresh/MJRefreshAutoFooter.h: -------------------------------------------------------------------------------- 1 | ../../../MJRefresh/MJRefresh/Base/MJRefreshAutoFooter.h -------------------------------------------------------------------------------- /Pods/Headers/Private/MJRefresh/MJRefreshAutoGifFooter.h: -------------------------------------------------------------------------------- 1 | ../../../MJRefresh/MJRefresh/Custom/Footer/Auto/MJRefreshAutoGifFooter.h -------------------------------------------------------------------------------- /Pods/Headers/Private/MJRefresh/MJRefreshAutoNormalFooter.h: -------------------------------------------------------------------------------- 1 | ../../../MJRefresh/MJRefresh/Custom/Footer/Auto/MJRefreshAutoNormalFooter.h -------------------------------------------------------------------------------- /Pods/Headers/Private/MJRefresh/MJRefreshAutoStateFooter.h: -------------------------------------------------------------------------------- 1 | ../../../MJRefresh/MJRefresh/Custom/Footer/Auto/MJRefreshAutoStateFooter.h -------------------------------------------------------------------------------- /Pods/Headers/Private/MJRefresh/MJRefreshBackFooter.h: -------------------------------------------------------------------------------- 1 | ../../../MJRefresh/MJRefresh/Base/MJRefreshBackFooter.h -------------------------------------------------------------------------------- /Pods/Headers/Private/MJRefresh/MJRefreshBackGifFooter.h: -------------------------------------------------------------------------------- 1 | ../../../MJRefresh/MJRefresh/Custom/Footer/Back/MJRefreshBackGifFooter.h -------------------------------------------------------------------------------- /Pods/Headers/Private/MJRefresh/MJRefreshBackNormalFooter.h: -------------------------------------------------------------------------------- 1 | ../../../MJRefresh/MJRefresh/Custom/Footer/Back/MJRefreshBackNormalFooter.h -------------------------------------------------------------------------------- /Pods/Headers/Private/MJRefresh/MJRefreshBackStateFooter.h: -------------------------------------------------------------------------------- 1 | ../../../MJRefresh/MJRefresh/Custom/Footer/Back/MJRefreshBackStateFooter.h -------------------------------------------------------------------------------- /Pods/Headers/Private/MJRefresh/MJRefreshComponent.h: -------------------------------------------------------------------------------- 1 | ../../../MJRefresh/MJRefresh/Base/MJRefreshComponent.h -------------------------------------------------------------------------------- /Pods/Headers/Private/MJRefresh/MJRefreshConst.h: -------------------------------------------------------------------------------- 1 | ../../../MJRefresh/MJRefresh/MJRefreshConst.h -------------------------------------------------------------------------------- /Pods/Headers/Private/MJRefresh/MJRefreshFooter.h: -------------------------------------------------------------------------------- 1 | ../../../MJRefresh/MJRefresh/Base/MJRefreshFooter.h -------------------------------------------------------------------------------- /Pods/Headers/Private/MJRefresh/MJRefreshGifHeader.h: -------------------------------------------------------------------------------- 1 | ../../../MJRefresh/MJRefresh/Custom/Header/MJRefreshGifHeader.h -------------------------------------------------------------------------------- /Pods/Headers/Private/MJRefresh/MJRefreshHeader.h: -------------------------------------------------------------------------------- 1 | ../../../MJRefresh/MJRefresh/Base/MJRefreshHeader.h -------------------------------------------------------------------------------- /Pods/Headers/Private/MJRefresh/MJRefreshNormalHeader.h: -------------------------------------------------------------------------------- 1 | ../../../MJRefresh/MJRefresh/Custom/Header/MJRefreshNormalHeader.h -------------------------------------------------------------------------------- /Pods/Headers/Private/MJRefresh/MJRefreshStateHeader.h: -------------------------------------------------------------------------------- 1 | ../../../MJRefresh/MJRefresh/Custom/Header/MJRefreshStateHeader.h -------------------------------------------------------------------------------- /Pods/Headers/Private/MJRefresh/UIScrollView+MJExtension.h: -------------------------------------------------------------------------------- 1 | ../../../MJRefresh/MJRefresh/UIScrollView+MJExtension.h -------------------------------------------------------------------------------- /Pods/Headers/Private/MJRefresh/UIScrollView+MJRefresh.h: -------------------------------------------------------------------------------- 1 | ../../../MJRefresh/MJRefresh/UIScrollView+MJRefresh.h -------------------------------------------------------------------------------- /Pods/Headers/Private/MJRefresh/UIView+MJExtension.h: -------------------------------------------------------------------------------- 1 | ../../../MJRefresh/MJRefresh/UIView+MJExtension.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Masonry/MASCompositeConstraint.h: -------------------------------------------------------------------------------- 1 | ../../../Masonry/Masonry/MASCompositeConstraint.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Masonry/MASConstraint+Private.h: -------------------------------------------------------------------------------- 1 | ../../../Masonry/Masonry/MASConstraint+Private.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Masonry/MASConstraint.h: -------------------------------------------------------------------------------- 1 | ../../../Masonry/Masonry/MASConstraint.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Masonry/MASConstraintMaker.h: -------------------------------------------------------------------------------- 1 | ../../../Masonry/Masonry/MASConstraintMaker.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Masonry/MASLayoutConstraint.h: -------------------------------------------------------------------------------- 1 | ../../../Masonry/Masonry/MASLayoutConstraint.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Masonry/MASUtilities.h: -------------------------------------------------------------------------------- 1 | ../../../Masonry/Masonry/MASUtilities.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Masonry/MASViewAttribute.h: -------------------------------------------------------------------------------- 1 | ../../../Masonry/Masonry/MASViewAttribute.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Masonry/MASViewConstraint.h: -------------------------------------------------------------------------------- 1 | ../../../Masonry/Masonry/MASViewConstraint.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Masonry/Masonry.h: -------------------------------------------------------------------------------- 1 | ../../../Masonry/Masonry/Masonry.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Masonry/NSArray+MASAdditions.h: -------------------------------------------------------------------------------- 1 | ../../../Masonry/Masonry/NSArray+MASAdditions.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Masonry/NSArray+MASShorthandAdditions.h: -------------------------------------------------------------------------------- 1 | ../../../Masonry/Masonry/NSArray+MASShorthandAdditions.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Masonry/NSLayoutConstraint+MASDebugAdditions.h: -------------------------------------------------------------------------------- 1 | ../../../Masonry/Masonry/NSLayoutConstraint+MASDebugAdditions.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Masonry/View+MASAdditions.h: -------------------------------------------------------------------------------- 1 | ../../../Masonry/Masonry/View+MASAdditions.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Masonry/View+MASShorthandAdditions.h: -------------------------------------------------------------------------------- 1 | ../../../Masonry/Masonry/View+MASShorthandAdditions.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Masonry/ViewController+MASAdditions.h: -------------------------------------------------------------------------------- 1 | ../../../Masonry/Masonry/ViewController+MASAdditions.h -------------------------------------------------------------------------------- /Pods/Headers/Private/SDWebImage/NSData+ImageContentType.h: -------------------------------------------------------------------------------- 1 | ../../../SDWebImage/SDWebImage/NSData+ImageContentType.h -------------------------------------------------------------------------------- /Pods/Headers/Private/SDWebImage/SDImageCache.h: -------------------------------------------------------------------------------- 1 | ../../../SDWebImage/SDWebImage/SDImageCache.h -------------------------------------------------------------------------------- /Pods/Headers/Private/SDWebImage/SDWebImageCompat.h: -------------------------------------------------------------------------------- 1 | ../../../SDWebImage/SDWebImage/SDWebImageCompat.h -------------------------------------------------------------------------------- /Pods/Headers/Private/SDWebImage/SDWebImageDecoder.h: -------------------------------------------------------------------------------- 1 | ../../../SDWebImage/SDWebImage/SDWebImageDecoder.h -------------------------------------------------------------------------------- /Pods/Headers/Private/SDWebImage/SDWebImageDownloader.h: -------------------------------------------------------------------------------- 1 | ../../../SDWebImage/SDWebImage/SDWebImageDownloader.h -------------------------------------------------------------------------------- /Pods/Headers/Private/SDWebImage/SDWebImageDownloaderOperation.h: -------------------------------------------------------------------------------- 1 | ../../../SDWebImage/SDWebImage/SDWebImageDownloaderOperation.h -------------------------------------------------------------------------------- /Pods/Headers/Private/SDWebImage/SDWebImageManager.h: -------------------------------------------------------------------------------- 1 | ../../../SDWebImage/SDWebImage/SDWebImageManager.h -------------------------------------------------------------------------------- /Pods/Headers/Private/SDWebImage/SDWebImageOperation.h: -------------------------------------------------------------------------------- 1 | ../../../SDWebImage/SDWebImage/SDWebImageOperation.h -------------------------------------------------------------------------------- /Pods/Headers/Private/SDWebImage/SDWebImagePrefetcher.h: -------------------------------------------------------------------------------- 1 | ../../../SDWebImage/SDWebImage/SDWebImagePrefetcher.h -------------------------------------------------------------------------------- /Pods/Headers/Private/SDWebImage/UIButton+WebCache.h: -------------------------------------------------------------------------------- 1 | ../../../SDWebImage/SDWebImage/UIButton+WebCache.h -------------------------------------------------------------------------------- /Pods/Headers/Private/SDWebImage/UIImage+GIF.h: -------------------------------------------------------------------------------- 1 | ../../../SDWebImage/SDWebImage/UIImage+GIF.h -------------------------------------------------------------------------------- /Pods/Headers/Private/SDWebImage/UIImage+MultiFormat.h: -------------------------------------------------------------------------------- 1 | ../../../SDWebImage/SDWebImage/UIImage+MultiFormat.h -------------------------------------------------------------------------------- /Pods/Headers/Private/SDWebImage/UIImageView+HighlightedWebCache.h: -------------------------------------------------------------------------------- 1 | ../../../SDWebImage/SDWebImage/UIImageView+HighlightedWebCache.h -------------------------------------------------------------------------------- /Pods/Headers/Private/SDWebImage/UIImageView+WebCache.h: -------------------------------------------------------------------------------- 1 | ../../../SDWebImage/SDWebImage/UIImageView+WebCache.h -------------------------------------------------------------------------------- /Pods/Headers/Private/SDWebImage/UIView+WebCacheOperation.h: -------------------------------------------------------------------------------- 1 | ../../../SDWebImage/SDWebImage/UIView+WebCacheOperation.h -------------------------------------------------------------------------------- /Pods/Headers/Private/SVProgressHUD/SVIndefiniteAnimatedView.h: -------------------------------------------------------------------------------- 1 | ../../../SVProgressHUD/SVProgressHUD/SVIndefiniteAnimatedView.h -------------------------------------------------------------------------------- /Pods/Headers/Private/SVProgressHUD/SVProgressAnimatedView.h: -------------------------------------------------------------------------------- 1 | ../../../SVProgressHUD/SVProgressHUD/SVProgressAnimatedView.h -------------------------------------------------------------------------------- /Pods/Headers/Private/SVProgressHUD/SVProgressHUD.h: -------------------------------------------------------------------------------- 1 | ../../../SVProgressHUD/SVProgressHUD/SVProgressHUD.h -------------------------------------------------------------------------------- /Pods/Headers/Private/SVProgressHUD/SVRadialGradientLayer.h: -------------------------------------------------------------------------------- 1 | ../../../SVProgressHUD/SVProgressHUD/SVRadialGradientLayer.h -------------------------------------------------------------------------------- /Pods/Headers/Private/pop/FloatConversion.h: -------------------------------------------------------------------------------- 1 | ../../../pop/pop/WebCore/FloatConversion.h -------------------------------------------------------------------------------- /Pods/Headers/Private/pop/POP.h: -------------------------------------------------------------------------------- 1 | ../../../pop/pop/POP.h -------------------------------------------------------------------------------- /Pods/Headers/Private/pop/POPAction.h: -------------------------------------------------------------------------------- 1 | ../../../pop/pop/POPAction.h -------------------------------------------------------------------------------- /Pods/Headers/Private/pop/POPAnimatableProperty.h: -------------------------------------------------------------------------------- 1 | ../../../pop/pop/POPAnimatableProperty.h -------------------------------------------------------------------------------- /Pods/Headers/Private/pop/POPAnimation.h: -------------------------------------------------------------------------------- 1 | ../../../pop/pop/POPAnimation.h -------------------------------------------------------------------------------- /Pods/Headers/Private/pop/POPAnimationEvent.h: -------------------------------------------------------------------------------- 1 | ../../../pop/pop/POPAnimationEvent.h -------------------------------------------------------------------------------- /Pods/Headers/Private/pop/POPAnimationEventInternal.h: -------------------------------------------------------------------------------- 1 | ../../../pop/pop/POPAnimationEventInternal.h -------------------------------------------------------------------------------- /Pods/Headers/Private/pop/POPAnimationExtras.h: -------------------------------------------------------------------------------- 1 | ../../../pop/pop/POPAnimationExtras.h -------------------------------------------------------------------------------- /Pods/Headers/Private/pop/POPAnimationInternal.h: -------------------------------------------------------------------------------- 1 | ../../../pop/pop/POPAnimationInternal.h -------------------------------------------------------------------------------- /Pods/Headers/Private/pop/POPAnimationPrivate.h: -------------------------------------------------------------------------------- 1 | ../../../pop/pop/POPAnimationPrivate.h -------------------------------------------------------------------------------- /Pods/Headers/Private/pop/POPAnimationRuntime.h: -------------------------------------------------------------------------------- 1 | ../../../pop/pop/POPAnimationRuntime.h -------------------------------------------------------------------------------- /Pods/Headers/Private/pop/POPAnimationTracer.h: -------------------------------------------------------------------------------- 1 | ../../../pop/pop/POPAnimationTracer.h -------------------------------------------------------------------------------- /Pods/Headers/Private/pop/POPAnimationTracerInternal.h: -------------------------------------------------------------------------------- 1 | ../../../pop/pop/POPAnimationTracerInternal.h -------------------------------------------------------------------------------- /Pods/Headers/Private/pop/POPAnimator.h: -------------------------------------------------------------------------------- 1 | ../../../pop/pop/POPAnimator.h -------------------------------------------------------------------------------- /Pods/Headers/Private/pop/POPAnimatorPrivate.h: -------------------------------------------------------------------------------- 1 | ../../../pop/pop/POPAnimatorPrivate.h -------------------------------------------------------------------------------- /Pods/Headers/Private/pop/POPBasicAnimation.h: -------------------------------------------------------------------------------- 1 | ../../../pop/pop/POPBasicAnimation.h -------------------------------------------------------------------------------- /Pods/Headers/Private/pop/POPBasicAnimationInternal.h: -------------------------------------------------------------------------------- 1 | ../../../pop/pop/POPBasicAnimationInternal.h -------------------------------------------------------------------------------- /Pods/Headers/Private/pop/POPCGUtils.h: -------------------------------------------------------------------------------- 1 | ../../../pop/pop/POPCGUtils.h -------------------------------------------------------------------------------- /Pods/Headers/Private/pop/POPCustomAnimation.h: -------------------------------------------------------------------------------- 1 | ../../../pop/pop/POPCustomAnimation.h -------------------------------------------------------------------------------- /Pods/Headers/Private/pop/POPDecayAnimation.h: -------------------------------------------------------------------------------- 1 | ../../../pop/pop/POPDecayAnimation.h -------------------------------------------------------------------------------- /Pods/Headers/Private/pop/POPDecayAnimationInternal.h: -------------------------------------------------------------------------------- 1 | ../../../pop/pop/POPDecayAnimationInternal.h -------------------------------------------------------------------------------- /Pods/Headers/Private/pop/POPDefines.h: -------------------------------------------------------------------------------- 1 | ../../../pop/pop/POPDefines.h -------------------------------------------------------------------------------- /Pods/Headers/Private/pop/POPGeometry.h: -------------------------------------------------------------------------------- 1 | ../../../pop/pop/POPGeometry.h -------------------------------------------------------------------------------- /Pods/Headers/Private/pop/POPLayerExtras.h: -------------------------------------------------------------------------------- 1 | ../../../pop/pop/POPLayerExtras.h -------------------------------------------------------------------------------- /Pods/Headers/Private/pop/POPMath.h: -------------------------------------------------------------------------------- 1 | ../../../pop/pop/POPMath.h -------------------------------------------------------------------------------- /Pods/Headers/Private/pop/POPPropertyAnimation.h: -------------------------------------------------------------------------------- 1 | ../../../pop/pop/POPPropertyAnimation.h -------------------------------------------------------------------------------- /Pods/Headers/Private/pop/POPPropertyAnimationInternal.h: -------------------------------------------------------------------------------- 1 | ../../../pop/pop/POPPropertyAnimationInternal.h -------------------------------------------------------------------------------- /Pods/Headers/Private/pop/POPSpringAnimation.h: -------------------------------------------------------------------------------- 1 | ../../../pop/pop/POPSpringAnimation.h -------------------------------------------------------------------------------- /Pods/Headers/Private/pop/POPSpringAnimationInternal.h: -------------------------------------------------------------------------------- 1 | ../../../pop/pop/POPSpringAnimationInternal.h -------------------------------------------------------------------------------- /Pods/Headers/Private/pop/POPSpringSolver.h: -------------------------------------------------------------------------------- 1 | ../../../pop/pop/POPSpringSolver.h -------------------------------------------------------------------------------- /Pods/Headers/Private/pop/POPVector.h: -------------------------------------------------------------------------------- 1 | ../../../pop/pop/POPVector.h -------------------------------------------------------------------------------- /Pods/Headers/Private/pop/TransformationMatrix.h: -------------------------------------------------------------------------------- 1 | ../../../pop/pop/WebCore/TransformationMatrix.h -------------------------------------------------------------------------------- /Pods/Headers/Private/pop/UnitBezier.h: -------------------------------------------------------------------------------- 1 | ../../../pop/pop/WebCore/UnitBezier.h -------------------------------------------------------------------------------- /Pods/Headers/Public/AFNetworking/AFAutoPurgingImageCache.h: -------------------------------------------------------------------------------- 1 | ../../../AFNetworking/UIKit+AFNetworking/AFAutoPurgingImageCache.h -------------------------------------------------------------------------------- /Pods/Headers/Public/AFNetworking/AFHTTPSessionManager.h: -------------------------------------------------------------------------------- 1 | ../../../AFNetworking/AFNetworking/AFHTTPSessionManager.h -------------------------------------------------------------------------------- /Pods/Headers/Public/AFNetworking/AFImageDownloader.h: -------------------------------------------------------------------------------- 1 | ../../../AFNetworking/UIKit+AFNetworking/AFImageDownloader.h -------------------------------------------------------------------------------- /Pods/Headers/Public/AFNetworking/AFNetworkActivityIndicatorManager.h: -------------------------------------------------------------------------------- 1 | ../../../AFNetworking/UIKit+AFNetworking/AFNetworkActivityIndicatorManager.h -------------------------------------------------------------------------------- /Pods/Headers/Public/AFNetworking/AFNetworkReachabilityManager.h: -------------------------------------------------------------------------------- 1 | ../../../AFNetworking/AFNetworking/AFNetworkReachabilityManager.h -------------------------------------------------------------------------------- /Pods/Headers/Public/AFNetworking/AFNetworking.h: -------------------------------------------------------------------------------- 1 | ../../../AFNetworking/AFNetworking/AFNetworking.h -------------------------------------------------------------------------------- /Pods/Headers/Public/AFNetworking/AFSecurityPolicy.h: -------------------------------------------------------------------------------- 1 | ../../../AFNetworking/AFNetworking/AFSecurityPolicy.h -------------------------------------------------------------------------------- /Pods/Headers/Public/AFNetworking/AFURLRequestSerialization.h: -------------------------------------------------------------------------------- 1 | ../../../AFNetworking/AFNetworking/AFURLRequestSerialization.h -------------------------------------------------------------------------------- /Pods/Headers/Public/AFNetworking/AFURLResponseSerialization.h: -------------------------------------------------------------------------------- 1 | ../../../AFNetworking/AFNetworking/AFURLResponseSerialization.h -------------------------------------------------------------------------------- /Pods/Headers/Public/AFNetworking/AFURLSessionManager.h: -------------------------------------------------------------------------------- 1 | ../../../AFNetworking/AFNetworking/AFURLSessionManager.h -------------------------------------------------------------------------------- /Pods/Headers/Public/AFNetworking/UIActivityIndicatorView+AFNetworking.h: -------------------------------------------------------------------------------- 1 | ../../../AFNetworking/UIKit+AFNetworking/UIActivityIndicatorView+AFNetworking.h -------------------------------------------------------------------------------- /Pods/Headers/Public/AFNetworking/UIButton+AFNetworking.h: -------------------------------------------------------------------------------- 1 | ../../../AFNetworking/UIKit+AFNetworking/UIButton+AFNetworking.h -------------------------------------------------------------------------------- /Pods/Headers/Public/AFNetworking/UIImage+AFNetworking.h: -------------------------------------------------------------------------------- 1 | ../../../AFNetworking/UIKit+AFNetworking/UIImage+AFNetworking.h -------------------------------------------------------------------------------- /Pods/Headers/Public/AFNetworking/UIImageView+AFNetworking.h: -------------------------------------------------------------------------------- 1 | ../../../AFNetworking/UIKit+AFNetworking/UIImageView+AFNetworking.h -------------------------------------------------------------------------------- /Pods/Headers/Public/AFNetworking/UIKit+AFNetworking.h: -------------------------------------------------------------------------------- 1 | ../../../AFNetworking/UIKit+AFNetworking/UIKit+AFNetworking.h -------------------------------------------------------------------------------- /Pods/Headers/Public/AFNetworking/UIProgressView+AFNetworking.h: -------------------------------------------------------------------------------- 1 | ../../../AFNetworking/UIKit+AFNetworking/UIProgressView+AFNetworking.h -------------------------------------------------------------------------------- /Pods/Headers/Public/AFNetworking/UIRefreshControl+AFNetworking.h: -------------------------------------------------------------------------------- 1 | ../../../AFNetworking/UIKit+AFNetworking/UIRefreshControl+AFNetworking.h -------------------------------------------------------------------------------- /Pods/Headers/Public/AFNetworking/UIWebView+AFNetworking.h: -------------------------------------------------------------------------------- 1 | ../../../AFNetworking/UIKit+AFNetworking/UIWebView+AFNetworking.h -------------------------------------------------------------------------------- /Pods/Headers/Public/MJExtension/MJExtension.h: -------------------------------------------------------------------------------- 1 | ../../../MJExtension/MJExtension/MJExtension.h -------------------------------------------------------------------------------- /Pods/Headers/Public/MJExtension/MJExtensionConst.h: -------------------------------------------------------------------------------- 1 | ../../../MJExtension/MJExtension/MJExtensionConst.h -------------------------------------------------------------------------------- /Pods/Headers/Public/MJExtension/MJFoundation.h: -------------------------------------------------------------------------------- 1 | ../../../MJExtension/MJExtension/MJFoundation.h -------------------------------------------------------------------------------- /Pods/Headers/Public/MJExtension/MJProperty.h: -------------------------------------------------------------------------------- 1 | ../../../MJExtension/MJExtension/MJProperty.h -------------------------------------------------------------------------------- /Pods/Headers/Public/MJExtension/MJPropertyKey.h: -------------------------------------------------------------------------------- 1 | ../../../MJExtension/MJExtension/MJPropertyKey.h -------------------------------------------------------------------------------- /Pods/Headers/Public/MJExtension/MJPropertyType.h: -------------------------------------------------------------------------------- 1 | ../../../MJExtension/MJExtension/MJPropertyType.h -------------------------------------------------------------------------------- /Pods/Headers/Public/MJExtension/NSObject+MJClass.h: -------------------------------------------------------------------------------- 1 | ../../../MJExtension/MJExtension/NSObject+MJClass.h -------------------------------------------------------------------------------- /Pods/Headers/Public/MJExtension/NSObject+MJCoding.h: -------------------------------------------------------------------------------- 1 | ../../../MJExtension/MJExtension/NSObject+MJCoding.h -------------------------------------------------------------------------------- /Pods/Headers/Public/MJExtension/NSObject+MJKeyValue.h: -------------------------------------------------------------------------------- 1 | ../../../MJExtension/MJExtension/NSObject+MJKeyValue.h -------------------------------------------------------------------------------- /Pods/Headers/Public/MJExtension/NSObject+MJProperty.h: -------------------------------------------------------------------------------- 1 | ../../../MJExtension/MJExtension/NSObject+MJProperty.h -------------------------------------------------------------------------------- /Pods/Headers/Public/MJExtension/NSString+MJExtension.h: -------------------------------------------------------------------------------- 1 | ../../../MJExtension/MJExtension/NSString+MJExtension.h -------------------------------------------------------------------------------- /Pods/Headers/Public/MJRefresh/MJRefresh.h: -------------------------------------------------------------------------------- 1 | ../../../MJRefresh/MJRefresh/MJRefresh.h -------------------------------------------------------------------------------- /Pods/Headers/Public/MJRefresh/MJRefreshAutoFooter.h: -------------------------------------------------------------------------------- 1 | ../../../MJRefresh/MJRefresh/Base/MJRefreshAutoFooter.h -------------------------------------------------------------------------------- /Pods/Headers/Public/MJRefresh/MJRefreshAutoGifFooter.h: -------------------------------------------------------------------------------- 1 | ../../../MJRefresh/MJRefresh/Custom/Footer/Auto/MJRefreshAutoGifFooter.h -------------------------------------------------------------------------------- /Pods/Headers/Public/MJRefresh/MJRefreshAutoNormalFooter.h: -------------------------------------------------------------------------------- 1 | ../../../MJRefresh/MJRefresh/Custom/Footer/Auto/MJRefreshAutoNormalFooter.h -------------------------------------------------------------------------------- /Pods/Headers/Public/MJRefresh/MJRefreshAutoStateFooter.h: -------------------------------------------------------------------------------- 1 | ../../../MJRefresh/MJRefresh/Custom/Footer/Auto/MJRefreshAutoStateFooter.h -------------------------------------------------------------------------------- /Pods/Headers/Public/MJRefresh/MJRefreshBackFooter.h: -------------------------------------------------------------------------------- 1 | ../../../MJRefresh/MJRefresh/Base/MJRefreshBackFooter.h -------------------------------------------------------------------------------- /Pods/Headers/Public/MJRefresh/MJRefreshBackGifFooter.h: -------------------------------------------------------------------------------- 1 | ../../../MJRefresh/MJRefresh/Custom/Footer/Back/MJRefreshBackGifFooter.h -------------------------------------------------------------------------------- /Pods/Headers/Public/MJRefresh/MJRefreshBackNormalFooter.h: -------------------------------------------------------------------------------- 1 | ../../../MJRefresh/MJRefresh/Custom/Footer/Back/MJRefreshBackNormalFooter.h -------------------------------------------------------------------------------- /Pods/Headers/Public/MJRefresh/MJRefreshBackStateFooter.h: -------------------------------------------------------------------------------- 1 | ../../../MJRefresh/MJRefresh/Custom/Footer/Back/MJRefreshBackStateFooter.h -------------------------------------------------------------------------------- /Pods/Headers/Public/MJRefresh/MJRefreshComponent.h: -------------------------------------------------------------------------------- 1 | ../../../MJRefresh/MJRefresh/Base/MJRefreshComponent.h -------------------------------------------------------------------------------- /Pods/Headers/Public/MJRefresh/MJRefreshConst.h: -------------------------------------------------------------------------------- 1 | ../../../MJRefresh/MJRefresh/MJRefreshConst.h -------------------------------------------------------------------------------- /Pods/Headers/Public/MJRefresh/MJRefreshFooter.h: -------------------------------------------------------------------------------- 1 | ../../../MJRefresh/MJRefresh/Base/MJRefreshFooter.h -------------------------------------------------------------------------------- /Pods/Headers/Public/MJRefresh/MJRefreshGifHeader.h: -------------------------------------------------------------------------------- 1 | ../../../MJRefresh/MJRefresh/Custom/Header/MJRefreshGifHeader.h -------------------------------------------------------------------------------- /Pods/Headers/Public/MJRefresh/MJRefreshHeader.h: -------------------------------------------------------------------------------- 1 | ../../../MJRefresh/MJRefresh/Base/MJRefreshHeader.h -------------------------------------------------------------------------------- /Pods/Headers/Public/MJRefresh/MJRefreshNormalHeader.h: -------------------------------------------------------------------------------- 1 | ../../../MJRefresh/MJRefresh/Custom/Header/MJRefreshNormalHeader.h -------------------------------------------------------------------------------- /Pods/Headers/Public/MJRefresh/MJRefreshStateHeader.h: -------------------------------------------------------------------------------- 1 | ../../../MJRefresh/MJRefresh/Custom/Header/MJRefreshStateHeader.h -------------------------------------------------------------------------------- /Pods/Headers/Public/MJRefresh/UIScrollView+MJExtension.h: -------------------------------------------------------------------------------- 1 | ../../../MJRefresh/MJRefresh/UIScrollView+MJExtension.h -------------------------------------------------------------------------------- /Pods/Headers/Public/MJRefresh/UIScrollView+MJRefresh.h: -------------------------------------------------------------------------------- 1 | ../../../MJRefresh/MJRefresh/UIScrollView+MJRefresh.h -------------------------------------------------------------------------------- /Pods/Headers/Public/MJRefresh/UIView+MJExtension.h: -------------------------------------------------------------------------------- 1 | ../../../MJRefresh/MJRefresh/UIView+MJExtension.h -------------------------------------------------------------------------------- /Pods/Headers/Public/Masonry/MASCompositeConstraint.h: -------------------------------------------------------------------------------- 1 | ../../../Masonry/Masonry/MASCompositeConstraint.h -------------------------------------------------------------------------------- /Pods/Headers/Public/Masonry/MASConstraint+Private.h: -------------------------------------------------------------------------------- 1 | ../../../Masonry/Masonry/MASConstraint+Private.h -------------------------------------------------------------------------------- /Pods/Headers/Public/Masonry/MASConstraint.h: -------------------------------------------------------------------------------- 1 | ../../../Masonry/Masonry/MASConstraint.h -------------------------------------------------------------------------------- /Pods/Headers/Public/Masonry/MASConstraintMaker.h: -------------------------------------------------------------------------------- 1 | ../../../Masonry/Masonry/MASConstraintMaker.h -------------------------------------------------------------------------------- /Pods/Headers/Public/Masonry/MASLayoutConstraint.h: -------------------------------------------------------------------------------- 1 | ../../../Masonry/Masonry/MASLayoutConstraint.h -------------------------------------------------------------------------------- /Pods/Headers/Public/Masonry/MASUtilities.h: -------------------------------------------------------------------------------- 1 | ../../../Masonry/Masonry/MASUtilities.h -------------------------------------------------------------------------------- /Pods/Headers/Public/Masonry/MASViewAttribute.h: -------------------------------------------------------------------------------- 1 | ../../../Masonry/Masonry/MASViewAttribute.h -------------------------------------------------------------------------------- /Pods/Headers/Public/Masonry/MASViewConstraint.h: -------------------------------------------------------------------------------- 1 | ../../../Masonry/Masonry/MASViewConstraint.h -------------------------------------------------------------------------------- /Pods/Headers/Public/Masonry/Masonry.h: -------------------------------------------------------------------------------- 1 | ../../../Masonry/Masonry/Masonry.h -------------------------------------------------------------------------------- /Pods/Headers/Public/Masonry/NSArray+MASAdditions.h: -------------------------------------------------------------------------------- 1 | ../../../Masonry/Masonry/NSArray+MASAdditions.h -------------------------------------------------------------------------------- /Pods/Headers/Public/Masonry/NSArray+MASShorthandAdditions.h: -------------------------------------------------------------------------------- 1 | ../../../Masonry/Masonry/NSArray+MASShorthandAdditions.h -------------------------------------------------------------------------------- /Pods/Headers/Public/Masonry/NSLayoutConstraint+MASDebugAdditions.h: -------------------------------------------------------------------------------- 1 | ../../../Masonry/Masonry/NSLayoutConstraint+MASDebugAdditions.h -------------------------------------------------------------------------------- /Pods/Headers/Public/Masonry/View+MASAdditions.h: -------------------------------------------------------------------------------- 1 | ../../../Masonry/Masonry/View+MASAdditions.h -------------------------------------------------------------------------------- /Pods/Headers/Public/Masonry/View+MASShorthandAdditions.h: -------------------------------------------------------------------------------- 1 | ../../../Masonry/Masonry/View+MASShorthandAdditions.h -------------------------------------------------------------------------------- /Pods/Headers/Public/Masonry/ViewController+MASAdditions.h: -------------------------------------------------------------------------------- 1 | ../../../Masonry/Masonry/ViewController+MASAdditions.h -------------------------------------------------------------------------------- /Pods/Headers/Public/SDWebImage/NSData+ImageContentType.h: -------------------------------------------------------------------------------- 1 | ../../../SDWebImage/SDWebImage/NSData+ImageContentType.h -------------------------------------------------------------------------------- /Pods/Headers/Public/SDWebImage/SDImageCache.h: -------------------------------------------------------------------------------- 1 | ../../../SDWebImage/SDWebImage/SDImageCache.h -------------------------------------------------------------------------------- /Pods/Headers/Public/SDWebImage/SDWebImageCompat.h: -------------------------------------------------------------------------------- 1 | ../../../SDWebImage/SDWebImage/SDWebImageCompat.h -------------------------------------------------------------------------------- /Pods/Headers/Public/SDWebImage/SDWebImageDecoder.h: -------------------------------------------------------------------------------- 1 | ../../../SDWebImage/SDWebImage/SDWebImageDecoder.h -------------------------------------------------------------------------------- /Pods/Headers/Public/SDWebImage/SDWebImageDownloader.h: -------------------------------------------------------------------------------- 1 | ../../../SDWebImage/SDWebImage/SDWebImageDownloader.h -------------------------------------------------------------------------------- /Pods/Headers/Public/SDWebImage/SDWebImageDownloaderOperation.h: -------------------------------------------------------------------------------- 1 | ../../../SDWebImage/SDWebImage/SDWebImageDownloaderOperation.h -------------------------------------------------------------------------------- /Pods/Headers/Public/SDWebImage/SDWebImageManager.h: -------------------------------------------------------------------------------- 1 | ../../../SDWebImage/SDWebImage/SDWebImageManager.h -------------------------------------------------------------------------------- /Pods/Headers/Public/SDWebImage/SDWebImageOperation.h: -------------------------------------------------------------------------------- 1 | ../../../SDWebImage/SDWebImage/SDWebImageOperation.h -------------------------------------------------------------------------------- /Pods/Headers/Public/SDWebImage/SDWebImagePrefetcher.h: -------------------------------------------------------------------------------- 1 | ../../../SDWebImage/SDWebImage/SDWebImagePrefetcher.h -------------------------------------------------------------------------------- /Pods/Headers/Public/SDWebImage/UIButton+WebCache.h: -------------------------------------------------------------------------------- 1 | ../../../SDWebImage/SDWebImage/UIButton+WebCache.h -------------------------------------------------------------------------------- /Pods/Headers/Public/SDWebImage/UIImage+GIF.h: -------------------------------------------------------------------------------- 1 | ../../../SDWebImage/SDWebImage/UIImage+GIF.h -------------------------------------------------------------------------------- /Pods/Headers/Public/SDWebImage/UIImage+MultiFormat.h: -------------------------------------------------------------------------------- 1 | ../../../SDWebImage/SDWebImage/UIImage+MultiFormat.h -------------------------------------------------------------------------------- /Pods/Headers/Public/SDWebImage/UIImageView+HighlightedWebCache.h: -------------------------------------------------------------------------------- 1 | ../../../SDWebImage/SDWebImage/UIImageView+HighlightedWebCache.h -------------------------------------------------------------------------------- /Pods/Headers/Public/SDWebImage/UIImageView+WebCache.h: -------------------------------------------------------------------------------- 1 | ../../../SDWebImage/SDWebImage/UIImageView+WebCache.h -------------------------------------------------------------------------------- /Pods/Headers/Public/SDWebImage/UIView+WebCacheOperation.h: -------------------------------------------------------------------------------- 1 | ../../../SDWebImage/SDWebImage/UIView+WebCacheOperation.h -------------------------------------------------------------------------------- /Pods/Headers/Public/SVProgressHUD/SVIndefiniteAnimatedView.h: -------------------------------------------------------------------------------- 1 | ../../../SVProgressHUD/SVProgressHUD/SVIndefiniteAnimatedView.h -------------------------------------------------------------------------------- /Pods/Headers/Public/SVProgressHUD/SVProgressAnimatedView.h: -------------------------------------------------------------------------------- 1 | ../../../SVProgressHUD/SVProgressHUD/SVProgressAnimatedView.h -------------------------------------------------------------------------------- /Pods/Headers/Public/SVProgressHUD/SVProgressHUD.h: -------------------------------------------------------------------------------- 1 | ../../../SVProgressHUD/SVProgressHUD/SVProgressHUD.h -------------------------------------------------------------------------------- /Pods/Headers/Public/SVProgressHUD/SVRadialGradientLayer.h: -------------------------------------------------------------------------------- 1 | ../../../SVProgressHUD/SVProgressHUD/SVRadialGradientLayer.h -------------------------------------------------------------------------------- /Pods/Headers/Public/pop/POP.h: -------------------------------------------------------------------------------- 1 | ../../../pop/pop/POP.h -------------------------------------------------------------------------------- /Pods/Headers/Public/pop/POPAnimatableProperty.h: -------------------------------------------------------------------------------- 1 | ../../../pop/pop/POPAnimatableProperty.h -------------------------------------------------------------------------------- /Pods/Headers/Public/pop/POPAnimation.h: -------------------------------------------------------------------------------- 1 | ../../../pop/pop/POPAnimation.h -------------------------------------------------------------------------------- /Pods/Headers/Public/pop/POPAnimationEvent.h: -------------------------------------------------------------------------------- 1 | ../../../pop/pop/POPAnimationEvent.h -------------------------------------------------------------------------------- /Pods/Headers/Public/pop/POPAnimationExtras.h: -------------------------------------------------------------------------------- 1 | ../../../pop/pop/POPAnimationExtras.h -------------------------------------------------------------------------------- /Pods/Headers/Public/pop/POPAnimationTracer.h: -------------------------------------------------------------------------------- 1 | ../../../pop/pop/POPAnimationTracer.h -------------------------------------------------------------------------------- /Pods/Headers/Public/pop/POPAnimator.h: -------------------------------------------------------------------------------- 1 | ../../../pop/pop/POPAnimator.h -------------------------------------------------------------------------------- /Pods/Headers/Public/pop/POPBasicAnimation.h: -------------------------------------------------------------------------------- 1 | ../../../pop/pop/POPBasicAnimation.h -------------------------------------------------------------------------------- /Pods/Headers/Public/pop/POPCustomAnimation.h: -------------------------------------------------------------------------------- 1 | ../../../pop/pop/POPCustomAnimation.h -------------------------------------------------------------------------------- /Pods/Headers/Public/pop/POPDecayAnimation.h: -------------------------------------------------------------------------------- 1 | ../../../pop/pop/POPDecayAnimation.h -------------------------------------------------------------------------------- /Pods/Headers/Public/pop/POPDefines.h: -------------------------------------------------------------------------------- 1 | ../../../pop/pop/POPDefines.h -------------------------------------------------------------------------------- /Pods/Headers/Public/pop/POPGeometry.h: -------------------------------------------------------------------------------- 1 | ../../../pop/pop/POPGeometry.h -------------------------------------------------------------------------------- /Pods/Headers/Public/pop/POPLayerExtras.h: -------------------------------------------------------------------------------- 1 | ../../../pop/pop/POPLayerExtras.h -------------------------------------------------------------------------------- /Pods/Headers/Public/pop/POPPropertyAnimation.h: -------------------------------------------------------------------------------- 1 | ../../../pop/pop/POPPropertyAnimation.h -------------------------------------------------------------------------------- /Pods/Headers/Public/pop/POPSpringAnimation.h: -------------------------------------------------------------------------------- 1 | ../../../pop/pop/POPSpringAnimation.h -------------------------------------------------------------------------------- /Pods/MJExtension/MJExtension/MJFoundation.h: -------------------------------------------------------------------------------- 1 | // 2 | // MJFoundation.h 3 | // MJExtensionExample 4 | // 5 | // Created by MJ Lee on 14/7/16. 6 | // Copyright (c) 2014年 小码哥. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | @interface MJFoundation : NSObject 12 | + (BOOL)isClassFromFoundation:(Class)c; 13 | @end 14 | -------------------------------------------------------------------------------- /Pods/MJRefresh/MJRefresh/Base/MJRefreshBackFooter.h: -------------------------------------------------------------------------------- 1 | // 2 | // MJRefreshBackFooter.h 3 | // MJRefreshExample 4 | // 5 | // Created by MJ Lee on 15/4/24. 6 | // Copyright (c) 2015年 小码哥. All rights reserved. 7 | // 8 | 9 | #import "MJRefreshFooter.h" 10 | 11 | @interface MJRefreshBackFooter : MJRefreshFooter 12 | 13 | @end 14 | -------------------------------------------------------------------------------- /Pods/MJRefresh/MJRefresh/Custom/Footer/Auto/MJRefreshAutoNormalFooter.h: -------------------------------------------------------------------------------- 1 | // 2 | // MJRefreshAutoNormalFooter.h 3 | // MJRefreshExample 4 | // 5 | // Created by MJ Lee on 15/4/24. 6 | // Copyright (c) 2015年 小码哥. All rights reserved. 7 | // 8 | 9 | #import "MJRefreshAutoStateFooter.h" 10 | 11 | @interface MJRefreshAutoNormalFooter : MJRefreshAutoStateFooter 12 | /** 菊花的样式 */ 13 | @property (assign, nonatomic) UIActivityIndicatorViewStyle activityIndicatorViewStyle; 14 | @end 15 | -------------------------------------------------------------------------------- /Pods/MJRefresh/MJRefresh/Custom/Header/MJRefreshNormalHeader.h: -------------------------------------------------------------------------------- 1 | // 2 | // MJRefreshNormalHeader.h 3 | // MJRefreshExample 4 | // 5 | // Created by MJ Lee on 15/4/24. 6 | // Copyright (c) 2015年 小码哥. All rights reserved. 7 | // 8 | 9 | #import "MJRefreshStateHeader.h" 10 | 11 | @interface MJRefreshNormalHeader : MJRefreshStateHeader 12 | @property (weak, nonatomic, readonly) UIImageView *arrowView; 13 | /** 菊花的样式 */ 14 | @property (assign, nonatomic) UIActivityIndicatorViewStyle activityIndicatorViewStyle; 15 | @end 16 | -------------------------------------------------------------------------------- /Pods/MJRefresh/MJRefresh/MJRefresh.bundle/arrow@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psven/XCFApp/b070c0999b22e5093b8b640f046934aee44ed268/Pods/MJRefresh/MJRefresh/MJRefresh.bundle/arrow@2x.png -------------------------------------------------------------------------------- /Pods/Masonry/Masonry/MASLayoutConstraint.m: -------------------------------------------------------------------------------- 1 | // 2 | // MASLayoutConstraint.m 3 | // Masonry 4 | // 5 | // Created by Jonas Budelmann on 3/08/13. 6 | // Copyright (c) 2013 Jonas Budelmann. All rights reserved. 7 | // 8 | 9 | #import "MASLayoutConstraint.h" 10 | 11 | @implementation MASLayoutConstraint 12 | 13 | @end 14 | -------------------------------------------------------------------------------- /Pods/Masonry/Masonry/NSLayoutConstraint+MASDebugAdditions.h: -------------------------------------------------------------------------------- 1 | // 2 | // NSLayoutConstraint+MASDebugAdditions.h 3 | // Masonry 4 | // 5 | // Created by Jonas Budelmann on 3/08/13. 6 | // Copyright (c) 2013 Jonas Budelmann. All rights reserved. 7 | // 8 | 9 | #import "MASUtilities.h" 10 | 11 | /** 12 | * makes debug and log output of NSLayoutConstraints more readable 13 | */ 14 | @interface NSLayoutConstraint (MASDebugAdditions) 15 | 16 | @end 17 | -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/SDWebImageOperation.h: -------------------------------------------------------------------------------- 1 | /* 2 | * This file is part of the SDWebImage package. 3 | * (c) Olivier Poitrey 4 | * 5 | * For the full copyright and license information, please view the LICENSE 6 | * file that was distributed with this source code. 7 | */ 8 | 9 | #import 10 | 11 | @protocol SDWebImageOperation 12 | 13 | - (void)cancel; 14 | 15 | @end 16 | -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/UIImage+GIF.h: -------------------------------------------------------------------------------- 1 | // 2 | // UIImage+GIF.h 3 | // LBGIFImage 4 | // 5 | // Created by Laurin Brandner on 06.01.12. 6 | // Copyright (c) 2012 __MyCompanyName__. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | @interface UIImage (GIF) 12 | 13 | + (UIImage *)sd_animatedGIFNamed:(NSString *)name; 14 | 15 | + (UIImage *)sd_animatedGIFWithData:(NSData *)data; 16 | 17 | - (UIImage *)sd_animatedImageByScalingAndCroppingToSize:(CGSize)size; 18 | 19 | @end 20 | -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/UIImage+MultiFormat.h: -------------------------------------------------------------------------------- 1 | // 2 | // UIImage+MultiFormat.h 3 | // SDWebImage 4 | // 5 | // Created by Olivier Poitrey on 07/06/13. 6 | // Copyright (c) 2013 Dailymotion. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | @interface UIImage (MultiFormat) 12 | 13 | + (UIImage *)sd_imageWithData:(NSData *)data; 14 | 15 | @end 16 | -------------------------------------------------------------------------------- /Pods/SVProgressHUD/SVProgressHUD/SVIndefiniteAnimatedView.h: -------------------------------------------------------------------------------- 1 | // 2 | // SVIndefiniteAnimatedView.h 3 | // SVProgressHUD, https://github.com/SVProgressHUD/SVProgressHUD 4 | // 5 | // Copyright (c) 2014-2016 Guillaume Campagna. All rights reserved. 6 | // 7 | 8 | #import 9 | 10 | @interface SVIndefiniteAnimatedView : UIView 11 | 12 | @property (nonatomic, assign) CGFloat strokeThickness; 13 | @property (nonatomic, assign) CGFloat radius; 14 | @property (nonatomic, strong) UIColor *strokeColor; 15 | 16 | @end 17 | 18 | -------------------------------------------------------------------------------- /Pods/SVProgressHUD/SVProgressHUD/SVProgressHUD.bundle/angle-mask.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psven/XCFApp/b070c0999b22e5093b8b640f046934aee44ed268/Pods/SVProgressHUD/SVProgressHUD/SVProgressHUD.bundle/angle-mask.png -------------------------------------------------------------------------------- /Pods/SVProgressHUD/SVProgressHUD/SVProgressHUD.bundle/angle-mask@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psven/XCFApp/b070c0999b22e5093b8b640f046934aee44ed268/Pods/SVProgressHUD/SVProgressHUD/SVProgressHUD.bundle/angle-mask@2x.png -------------------------------------------------------------------------------- /Pods/SVProgressHUD/SVProgressHUD/SVProgressHUD.bundle/angle-mask@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psven/XCFApp/b070c0999b22e5093b8b640f046934aee44ed268/Pods/SVProgressHUD/SVProgressHUD/SVProgressHUD.bundle/angle-mask@3x.png -------------------------------------------------------------------------------- /Pods/SVProgressHUD/SVProgressHUD/SVProgressHUD.bundle/error.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psven/XCFApp/b070c0999b22e5093b8b640f046934aee44ed268/Pods/SVProgressHUD/SVProgressHUD/SVProgressHUD.bundle/error.png -------------------------------------------------------------------------------- /Pods/SVProgressHUD/SVProgressHUD/SVProgressHUD.bundle/error@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psven/XCFApp/b070c0999b22e5093b8b640f046934aee44ed268/Pods/SVProgressHUD/SVProgressHUD/SVProgressHUD.bundle/error@2x.png -------------------------------------------------------------------------------- /Pods/SVProgressHUD/SVProgressHUD/SVProgressHUD.bundle/error@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psven/XCFApp/b070c0999b22e5093b8b640f046934aee44ed268/Pods/SVProgressHUD/SVProgressHUD/SVProgressHUD.bundle/error@3x.png -------------------------------------------------------------------------------- /Pods/SVProgressHUD/SVProgressHUD/SVProgressHUD.bundle/info.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psven/XCFApp/b070c0999b22e5093b8b640f046934aee44ed268/Pods/SVProgressHUD/SVProgressHUD/SVProgressHUD.bundle/info.png -------------------------------------------------------------------------------- /Pods/SVProgressHUD/SVProgressHUD/SVProgressHUD.bundle/info@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psven/XCFApp/b070c0999b22e5093b8b640f046934aee44ed268/Pods/SVProgressHUD/SVProgressHUD/SVProgressHUD.bundle/info@2x.png -------------------------------------------------------------------------------- /Pods/SVProgressHUD/SVProgressHUD/SVProgressHUD.bundle/info@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psven/XCFApp/b070c0999b22e5093b8b640f046934aee44ed268/Pods/SVProgressHUD/SVProgressHUD/SVProgressHUD.bundle/info@3x.png -------------------------------------------------------------------------------- /Pods/SVProgressHUD/SVProgressHUD/SVProgressHUD.bundle/success.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psven/XCFApp/b070c0999b22e5093b8b640f046934aee44ed268/Pods/SVProgressHUD/SVProgressHUD/SVProgressHUD.bundle/success.png -------------------------------------------------------------------------------- /Pods/SVProgressHUD/SVProgressHUD/SVProgressHUD.bundle/success@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psven/XCFApp/b070c0999b22e5093b8b640f046934aee44ed268/Pods/SVProgressHUD/SVProgressHUD/SVProgressHUD.bundle/success@2x.png -------------------------------------------------------------------------------- /Pods/SVProgressHUD/SVProgressHUD/SVProgressHUD.bundle/success@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psven/XCFApp/b070c0999b22e5093b8b640f046934aee44ed268/Pods/SVProgressHUD/SVProgressHUD/SVProgressHUD.bundle/success@3x.png -------------------------------------------------------------------------------- /Pods/SVProgressHUD/SVProgressHUD/SVRadialGradientLayer.h: -------------------------------------------------------------------------------- 1 | // 2 | // SVRadialGradientLayer.h 3 | // SVProgressHUD, https://github.com/SVProgressHUD/SVProgressHUD 4 | // 5 | // Copyright (c) 2014-2016 Tobias Tiemerding. All rights reserved. 6 | // 7 | 8 | #import 9 | 10 | @interface SVRadialGradientLayer : CALayer 11 | 12 | @property (nonatomic) CGPoint gradientCenter; 13 | 14 | @end 15 | -------------------------------------------------------------------------------- /Pods/Target Support Files/AFNetworking/AFNetworking-dummy.m: -------------------------------------------------------------------------------- 1 | #import 2 | @interface PodsDummy_AFNetworking : NSObject 3 | @end 4 | @implementation PodsDummy_AFNetworking 5 | @end 6 | -------------------------------------------------------------------------------- /Pods/Target Support Files/AFNetworking/AFNetworking-prefix.pch: -------------------------------------------------------------------------------- 1 | #ifdef __OBJC__ 2 | #import 3 | #endif 4 | 5 | #ifndef TARGET_OS_IOS 6 | #define TARGET_OS_IOS TARGET_OS_IPHONE 7 | #endif 8 | 9 | #ifndef TARGET_OS_WATCH 10 | #define TARGET_OS_WATCH 0 11 | #endif 12 | 13 | #ifndef TARGET_OS_TV 14 | #define TARGET_OS_TV 0 15 | #endif 16 | -------------------------------------------------------------------------------- /Pods/Target Support Files/MJExtension/MJExtension-dummy.m: -------------------------------------------------------------------------------- 1 | #import 2 | @interface PodsDummy_MJExtension : NSObject 3 | @end 4 | @implementation PodsDummy_MJExtension 5 | @end 6 | -------------------------------------------------------------------------------- /Pods/Target Support Files/MJExtension/MJExtension-prefix.pch: -------------------------------------------------------------------------------- 1 | #ifdef __OBJC__ 2 | #import 3 | #endif 4 | 5 | -------------------------------------------------------------------------------- /Pods/Target Support Files/MJRefresh/MJRefresh-dummy.m: -------------------------------------------------------------------------------- 1 | #import 2 | @interface PodsDummy_MJRefresh : NSObject 3 | @end 4 | @implementation PodsDummy_MJRefresh 5 | @end 6 | -------------------------------------------------------------------------------- /Pods/Target Support Files/MJRefresh/MJRefresh-prefix.pch: -------------------------------------------------------------------------------- 1 | #ifdef __OBJC__ 2 | #import 3 | #endif 4 | 5 | -------------------------------------------------------------------------------- /Pods/Target Support Files/Masonry/Masonry-dummy.m: -------------------------------------------------------------------------------- 1 | #import 2 | @interface PodsDummy_Masonry : NSObject 3 | @end 4 | @implementation PodsDummy_Masonry 5 | @end 6 | -------------------------------------------------------------------------------- /Pods/Target Support Files/Masonry/Masonry-prefix.pch: -------------------------------------------------------------------------------- 1 | #ifdef __OBJC__ 2 | #import 3 | #endif 4 | 5 | -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-XCFApp/Pods-XCFApp-dummy.m: -------------------------------------------------------------------------------- 1 | #import 2 | @interface PodsDummy_Pods_XCFApp : NSObject 3 | @end 4 | @implementation PodsDummy_Pods_XCFApp 5 | @end 6 | -------------------------------------------------------------------------------- /Pods/Target Support Files/SDWebImage/SDWebImage-dummy.m: -------------------------------------------------------------------------------- 1 | #import 2 | @interface PodsDummy_SDWebImage : NSObject 3 | @end 4 | @implementation PodsDummy_SDWebImage 5 | @end 6 | -------------------------------------------------------------------------------- /Pods/Target Support Files/SDWebImage/SDWebImage-prefix.pch: -------------------------------------------------------------------------------- 1 | #ifdef __OBJC__ 2 | #import 3 | #endif 4 | 5 | -------------------------------------------------------------------------------- /Pods/Target Support Files/SVProgressHUD/SVProgressHUD-dummy.m: -------------------------------------------------------------------------------- 1 | #import 2 | @interface PodsDummy_SVProgressHUD : NSObject 3 | @end 4 | @implementation PodsDummy_SVProgressHUD 5 | @end 6 | -------------------------------------------------------------------------------- /Pods/Target Support Files/SVProgressHUD/SVProgressHUD-prefix.pch: -------------------------------------------------------------------------------- 1 | #ifdef __OBJC__ 2 | #import 3 | #endif 4 | 5 | -------------------------------------------------------------------------------- /Pods/Target Support Files/pop/pop-dummy.m: -------------------------------------------------------------------------------- 1 | #import 2 | @interface PodsDummy_pop : NSObject 3 | @end 4 | @implementation PodsDummy_pop 5 | @end 6 | -------------------------------------------------------------------------------- /Pods/Target Support Files/pop/pop-prefix.pch: -------------------------------------------------------------------------------- 1 | #ifdef __OBJC__ 2 | #import 3 | #endif 4 | 5 | -------------------------------------------------------------------------------- /XCFApp.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /XCFApp.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /XCFApp.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | IDEDidComputeMac32BitWarning 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /XCFApp.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | BuildSystemType 6 | Original 7 | 8 | 9 | -------------------------------------------------------------------------------- /XCFApp/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psven/XCFApp/b070c0999b22e5093b8b640f046934aee44ed268/XCFApp/.DS_Store -------------------------------------------------------------------------------- /XCFApp/Classes/Bazaar - 市集/Bazaar - 市集/Controller/XCFBazaarController.h: -------------------------------------------------------------------------------- 1 | // 2 | // XCFBazaarController.h 3 | // XCFApp 4 | // 5 | // Created by callmejoejoe on 16/4/17. 6 | // Copyright © 2016年 Joey. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | @interface XCFBazaarController : UIViewController 12 | 13 | @end 14 | -------------------------------------------------------------------------------- /XCFApp/Classes/Bazaar - 市集/Goods - 商品界面/Controller/XCFDetailReviewViewController.h: -------------------------------------------------------------------------------- 1 | // 2 | // XCFDetailReviewViewController.h 3 | // XCFApp 4 | // 5 | // Created by callmejoejoe on 16/4/17. 6 | // Copyright © 2016年 Joey. All rights reserved. 7 | // 8 | 9 | #import 10 | @class XCFReview; 11 | 12 | @interface XCFDetailReviewViewController : UITableViewController 13 | @property (nonatomic, strong) XCFReview *review; 14 | @end 15 | -------------------------------------------------------------------------------- /XCFApp/Classes/Bazaar - 市集/Goods - 商品界面/Controller/XCFGoodsReviewController.h: -------------------------------------------------------------------------------- 1 | // 2 | // XCFGoodsReviewController.h 3 | // XCFApp 4 | // 5 | // Created by callmejoejoe on 16/4/16. 6 | // Copyright © 2016年 Joey. All rights reserved. 7 | // 8 | 9 | #import 10 | @class XCFGoods; 11 | @interface XCFGoodsReviewController : UIViewController 12 | /** 模型数据 */ 13 | @property (nonatomic, strong) XCFGoods *goods; 14 | 15 | @end 16 | -------------------------------------------------------------------------------- /XCFApp/Classes/Bazaar - 市集/Goods - 商品界面/Controller/XCFGoodsViewController.h: -------------------------------------------------------------------------------- 1 | // 2 | // XCFGoodsViewController.h 3 | // XCFApp 4 | // 5 | // Created by callmejoejoe on 16/4/14. 6 | // Copyright © 2016年 Joey. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | @interface XCFGoodsViewController : UIViewController 12 | 13 | @end 14 | -------------------------------------------------------------------------------- /XCFApp/Classes/Bazaar - 市集/Goods - 商品界面/View/ImageTextDetail/XCFAttrsCell.h: -------------------------------------------------------------------------------- 1 | // 2 | // XCFAttrsCell.h 3 | // XCFApp 4 | // 5 | // Created by callmejoejoe on 16/4/16. 6 | // Copyright © 2016年 Joey. All rights reserved. 7 | // 8 | 9 | #import 10 | @class XCFGoodsAttrs; 11 | 12 | @interface XCFAttrsCell : UITableViewCell 13 | 14 | /** 模型数据 */ 15 | @property (nonatomic, strong) XCFGoodsAttrs *attrs; 16 | 17 | @end 18 | -------------------------------------------------------------------------------- /XCFApp/Classes/Bazaar - 市集/Goods - 商品界面/View/ImageTextDetail/XCFGoodsAttrsViewCell.h: -------------------------------------------------------------------------------- 1 | // 2 | // XCFGoodsAttrsViewCell.h 3 | // XCFApp 4 | // 5 | // Created by callmejoejoe on 16/4/16. 6 | // Copyright © 2016年 Joey. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | @interface XCFGoodsAttrsViewCell : UICollectionViewCell 12 | /** 详细属性 */ 13 | @property (nonatomic, strong) NSArray *attrsArray; 14 | /** 隐藏图文详情界面 */ 15 | @property (nonatomic, copy) void (^viewWillDismissBlock)(); 16 | 17 | @end 18 | -------------------------------------------------------------------------------- /XCFApp/Classes/Bazaar - 市集/Goods - 商品界面/View/ImageTextDetail/XCFGoodsImageTextView.h: -------------------------------------------------------------------------------- 1 | // 2 | // XCFGoodsImageTextView.h 3 | // XCFApp 4 | // 5 | // Created by callmejoejoe on 16/4/16. 6 | // Copyright © 2016年 Joey. All rights reserved. 7 | // 8 | 9 | #import 10 | @class XCFGoods; 11 | 12 | @interface XCFGoodsImageTextView : UIView 13 | /** 模型数据 */ 14 | @property (nonatomic, strong) XCFGoods *goods; 15 | /** 隐藏图文详情界面 */ 16 | @property (nonatomic, copy) void (^viewWillDismissBlock)(); 17 | 18 | @end 19 | 20 | -------------------------------------------------------------------------------- /XCFApp/Classes/Bazaar - 市集/Goods - 商品界面/View/XCFDetailReviewCell.h: -------------------------------------------------------------------------------- 1 | // 2 | // XCFDetailReviewCell.h 3 | // XCFApp 4 | // 5 | // Created by callmejoejoe on 16/4/16. 6 | // Copyright © 2016年 Joey. All rights reserved. 7 | // 8 | 9 | #import 10 | @class XCFReview, XCFGoodsKind; 11 | 12 | @interface XCFDetailReviewCell : UITableViewCell 13 | @property (nonatomic, strong) XCFReview *review; 14 | @property (nonatomic, copy) void (^showImageBlock)(NSUInteger, CGRect); // 展示图片 15 | @end 16 | -------------------------------------------------------------------------------- /XCFApp/Classes/Bazaar - 市集/Goods - 商品界面/View/XCFGoodsBottomView.h: -------------------------------------------------------------------------------- 1 | // 2 | // XCFGoodsBottomView.h 3 | // XCFApp 4 | // 5 | // Created by callmejoejoe on 16/4/16. 6 | // Copyright © 2016年 Joey. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | @interface XCFGoodsBottomView : UIView 12 | /** 回调block */ 13 | @property (nonatomic, strong) void (^actionBlock)(NSInteger); 14 | 15 | @end 16 | -------------------------------------------------------------------------------- /XCFApp/Classes/Bazaar - 市集/Goods - 商品界面/View/XCFGoodsFooterView.h: -------------------------------------------------------------------------------- 1 | // 2 | // XCFGoodsFooterView.h 3 | // XCFApp 4 | // 5 | // Created by callmejoejoe on 16/4/16. 6 | // Copyright © 2016年 Joey. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | @interface XCFGoodsFooterView : UITableViewHeaderFooterView 12 | 13 | @end 14 | -------------------------------------------------------------------------------- /XCFApp/Classes/Bazaar - 市集/Goods - 商品界面/View/XCFGoodsFooterView.m: -------------------------------------------------------------------------------- 1 | // 2 | // XCFGoodsFooterView.m 3 | // XCFApp 4 | // 5 | // Created by callmejoejoe on 16/4/16. 6 | // Copyright © 2016年 Joey. All rights reserved. 7 | // 8 | 9 | #import "XCFGoodsFooterView.h" 10 | 11 | @implementation XCFGoodsFooterView 12 | 13 | - (void)awakeFromNib { 14 | self.contentView.backgroundColor = XCFGlobalBackgroundColor; 15 | } 16 | 17 | @end 18 | -------------------------------------------------------------------------------- /XCFApp/Classes/Bazaar - 市集/Goods - 商品界面/View/XCFGoodsShopCell.h: -------------------------------------------------------------------------------- 1 | // 2 | // XCFGoodsShopCell.h 3 | // XCFApp 4 | // 5 | // Created by callmejoejoe on 16/4/15. 6 | // Copyright © 2016年 Joey. All rights reserved. 7 | // 8 | 9 | #import 10 | @class XCFShop; 11 | 12 | @interface XCFGoodsShopCell : UITableViewCell 13 | /** 模型数据 */ 14 | @property (nonatomic, strong) XCFShop *shop; 15 | 16 | @end 17 | -------------------------------------------------------------------------------- /XCFApp/Classes/Bazaar - 市集/Goods - 商品界面/View/header/XCFGoodsDetailView.h: -------------------------------------------------------------------------------- 1 | // 2 | // XCFGoodsDetailView.h 3 | // XCFApp 4 | // 5 | // Created by callmejoejoe on 16/4/15. 6 | // Copyright © 2016年 Joey. All rights reserved. 7 | // 8 | 9 | #import 10 | @class XCFGoods; 11 | 12 | @interface XCFGoodsDetailView : UIView 13 | /** 模型数据 */ 14 | @property (nonatomic, strong) XCFGoods *goods; 15 | 16 | @end 17 | -------------------------------------------------------------------------------- /XCFApp/Classes/Bazaar - 市集/Goods - 商品界面/View/header/XCFGoodsShopPromotionView.h: -------------------------------------------------------------------------------- 1 | // 2 | // XCFGoodsShopPromotionView.h 3 | // XCFApp 4 | // 5 | // Created by callmejoejoe on 16/4/15. 6 | // Copyright © 2016年 Joey. All rights reserved. 7 | // 8 | 9 | #import 10 | @class XCFGoods; 11 | 12 | @interface XCFGoodsShopPromotionView : UIView 13 | /** 模型数据 */ 14 | @property (nonatomic, strong) XCFGoods *goods; 15 | 16 | @end 17 | -------------------------------------------------------------------------------- /XCFApp/Classes/Bazaar - 市集/ShoppingCart - 购物车/Controller/XCFCartViewController.h: -------------------------------------------------------------------------------- 1 | // 2 | // XCFCartViewController.h 3 | // XCFApp 4 | // 5 | // Created by callmejoejoe on 16/4/23. 6 | // Copyright © 2016年 Joey. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | @interface XCFCartViewController : UIViewController 12 | 13 | @end 14 | -------------------------------------------------------------------------------- /XCFApp/Classes/Bazaar - 市集/ShoppingCart - 购物车/Controller/XCFOrderViewController.h: -------------------------------------------------------------------------------- 1 | // 2 | // XCFOrderViewController.h 3 | // XCFApp 4 | // 5 | // Created by callmejoejoe on 16/4/24. 6 | // Copyright © 2016年 Joey. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | @interface XCFOrderViewController : UIViewController 12 | @property (nonatomic, strong) NSArray *buyItems; // 立即购买才有的数据 13 | @end 14 | -------------------------------------------------------------------------------- /XCFApp/Classes/Bazaar - 市集/ShoppingCart - 购物车/View/订单/XCFOrderAddressView.h: -------------------------------------------------------------------------------- 1 | // 2 | // XCFOrderAddressView.h 3 | // XCFApp 4 | // 5 | // Created by callmejoejoe on 16/4/24. 6 | // Copyright © 2016年 Joey. All rights reserved. 7 | // 8 | 9 | #import 10 | #import "XCFAddressInfo.h" 11 | 12 | @interface XCFOrderAddressView : UIView 13 | @property (nonatomic, strong) XCFAddressInfo *addressInfo; 14 | @property (nonatomic, copy) void (^goToAddressBlock)(); 15 | @end 16 | -------------------------------------------------------------------------------- /XCFApp/Classes/Bazaar - 市集/ShoppingCart - 购物车/View/订单/XCFOrderFooterView.h: -------------------------------------------------------------------------------- 1 | // 2 | // XCFOrderFooterView.h 3 | // XCFApp 4 | // 5 | // Created by callmejoejoe on 16/4/24. 6 | // Copyright © 2016年 Joey. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | @interface XCFOrderFooterView : UIView 12 | 13 | @end 14 | -------------------------------------------------------------------------------- /XCFApp/Classes/Bazaar - 市集/ShoppingCart - 购物车/View/订单/XCFOrderPayView.h: -------------------------------------------------------------------------------- 1 | // 2 | // XCFOrderPayView.h 3 | // XCFApp 4 | // 5 | // Created by callmejoejoe on 16/4/24. 6 | // Copyright © 2016年 Joey. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | @interface XCFOrderPayView : UIView 12 | 13 | @property (nonatomic, strong) NSArray *buyItems; // 购买商品数据 14 | 15 | @end 16 | -------------------------------------------------------------------------------- /XCFApp/Classes/Bazaar - 市集/ShoppingCart - 购物车/View/订单/XCFOrderSectionFooter.h: -------------------------------------------------------------------------------- 1 | // 2 | // XCFOrderSectionFooter.h 3 | // XCFApp 4 | // 5 | // Created by callmejoejoe on 16/4/24. 6 | // Copyright © 2016年 Joey. All rights reserved. 7 | // 8 | 9 | #import 10 | @class XCFCartItem; 11 | 12 | @interface XCFOrderSectionFooter : UITableViewHeaderFooterView 13 | @property (nonatomic, strong) NSArray *shopArray; // 模型数据 14 | @end 15 | -------------------------------------------------------------------------------- /XCFApp/Classes/Community - 社区/Controller/XCFCommunityViewController.h: -------------------------------------------------------------------------------- 1 | // 2 | // XCFCommunityViewController.h 3 | // XCFApp 4 | // 5 | // Created by callmejoejoe on 16/4/27. 6 | // Copyright © 2016年 Joey. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | @interface XCFCommunityViewController : UIViewController 12 | 13 | @end 14 | -------------------------------------------------------------------------------- /XCFApp/Classes/Community - 社区/Controller/XCFTopicDetailController.h: -------------------------------------------------------------------------------- 1 | // 2 | // XCFTopicDetailController.h 3 | // XCFApp 4 | // 5 | // Created by callmejoejoe on 16/4/27. 6 | // Copyright © 2016年 Joey. All rights reserved. 7 | // 8 | 9 | #import 10 | @class XCFTopic; 11 | 12 | @interface XCFTopicDetailController : UIViewController 13 | @property (nonatomic, strong) XCFTopic *topic; 14 | @end 15 | -------------------------------------------------------------------------------- /XCFApp/Classes/Community - 社区/Controller/XCFTopicViewController.h: -------------------------------------------------------------------------------- 1 | // 2 | // XCFTopicViewController.h 3 | // XCFApp 4 | // 5 | // Created by callmejoejoe on 16/4/27. 6 | // Copyright © 2016年 Joey. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | @interface XCFTopicViewController : UITableViewController 12 | 13 | @end 14 | -------------------------------------------------------------------------------- /XCFApp/Classes/Community - 社区/Model/XCFCommentTool.h: -------------------------------------------------------------------------------- 1 | // 2 | // XCFCommentTool.h 3 | // XCFApp 4 | // 5 | // Created by callmejoejoe on 16/4/27. 6 | // Copyright © 2016年 Joey. All rights reserved. 7 | // 8 | 9 | #import 10 | @class XCFTopicComment; 11 | 12 | @interface XCFCommentTool : NSObject 13 | 14 | + (NSArray *)totalComments; 15 | + (NSArray *)totalAuthors; 16 | + (void)addComment:(XCFTopicComment *)comment; 17 | + (void)recovery; 18 | 19 | @end 20 | -------------------------------------------------------------------------------- /XCFApp/Classes/Community - 社区/Model/XCFForum.h: -------------------------------------------------------------------------------- 1 | // 2 | // XCFForum.h 3 | // XCFApp 4 | // 5 | // Created by callmejoejoe on 16/4/27. 6 | // Copyright © 2016年 Joey. All rights reserved. 7 | // 8 | 9 | #import 10 | @class XCFAuthor; 11 | 12 | @interface XCFForum : NSObject 13 | @property (nonatomic, strong) NSArray *latest_authors; // 最后发表主题的作者 14 | @property (nonatomic, copy) NSString *name; // 社区名称 15 | @property (nonatomic, copy) NSString *desc; // 最后主题的内容 16 | @end 17 | -------------------------------------------------------------------------------- /XCFApp/Classes/Community - 社区/Model/XCFForum.m: -------------------------------------------------------------------------------- 1 | // 2 | // XCFForum.m 3 | // XCFApp 4 | // 5 | // Created by callmejoejoe on 16/4/27. 6 | // Copyright © 2016年 Joey. All rights reserved. 7 | // 8 | 9 | #import "XCFForum.h" 10 | #import "XCFAuthor.h" 11 | @implementation XCFForum 12 | 13 | + (NSDictionary *)mj_objectClassInArray { 14 | return @{@"latest_authors" : [XCFAuthor class]}; 15 | } 16 | 17 | @end 18 | -------------------------------------------------------------------------------- /XCFApp/Classes/Community - 社区/View/XCFCommentCell.h: -------------------------------------------------------------------------------- 1 | // 2 | // XCFCommentCell.h 3 | // XCFApp 4 | // 5 | // Created by callmejoejoe on 16/4/27. 6 | // Copyright © 2016年 Joey. All rights reserved. 7 | // 8 | 9 | #import 10 | @class XCFTopicComment; 11 | 12 | @interface XCFCommentCell : UITableViewCell 13 | @property (nonatomic, strong) XCFTopicComment *comment; 14 | @end 15 | -------------------------------------------------------------------------------- /XCFApp/Classes/Community - 社区/View/XCFForumViewCell.h: -------------------------------------------------------------------------------- 1 | // 2 | // XCFForumViewCell.h 3 | // XCFApp 4 | // 5 | // Created by callmejoejoe on 16/4/27. 6 | // Copyright © 2016年 Joey. All rights reserved. 7 | // 8 | 9 | #import 10 | @class XCFForum; 11 | 12 | @interface XCFForumViewCell : UITableViewCell 13 | @property (nonatomic, strong) XCFForum *forum; 14 | @end 15 | -------------------------------------------------------------------------------- /XCFApp/Classes/Community - 社区/View/XCFTopicCell.h: -------------------------------------------------------------------------------- 1 | // 2 | // XCFTopicCell.h 3 | // XCFApp 4 | // 5 | // Created by callmejoejoe on 16/4/27. 6 | // Copyright © 2016年 Joey. All rights reserved. 7 | // 8 | 9 | #import 10 | @class XCFTopic; 11 | 12 | @interface XCFTopicCell : UITableViewCell 13 | @property (nonatomic, strong) XCFTopic *topic; 14 | @end 15 | -------------------------------------------------------------------------------- /XCFApp/Classes/Kitchen - 下厨房/BuyList - 菜篮子/Controller/XCFIngredientListViewController.h: -------------------------------------------------------------------------------- 1 | // 2 | // XCFIngredientListViewController.h 3 | // XCFApp 4 | // 5 | // Created by callmejoejoe on 16/4/25. 6 | // Copyright © 2016年 Joey. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | @interface XCFIngredientListViewController : UIViewController 12 | 13 | @end 14 | -------------------------------------------------------------------------------- /XCFApp/Classes/Kitchen - 下厨房/BuyList - 菜篮子/View/XCFBuyListSectionHeader.h: -------------------------------------------------------------------------------- 1 | // 2 | // XCFBuyListSectionHeader.h 3 | // XCFApp 4 | // 5 | // Created by callmejoejoe on 16/4/26. 6 | // Copyright © 2016年 Joey. All rights reserved. 7 | // 8 | 9 | #import 10 | @class XCFRecipe; 11 | 12 | @interface XCFBuyListSectionHeader : UITableViewHeaderFooterView 13 | @property (nonatomic, strong) XCFRecipe *recipe; 14 | @end 15 | -------------------------------------------------------------------------------- /XCFApp/Classes/Kitchen - 下厨房/BuyList - 菜篮子/View/XCFIngredientListViewCell.h: -------------------------------------------------------------------------------- 1 | // 2 | // XCFIngredientListViewCell.h 3 | // XCFApp 4 | // 5 | // Created by callmejoejoe on 16/4/25. 6 | // Copyright © 2016年 Joey. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | @interface XCFIngredientListViewCell : UITableViewCell 12 | @property (nonatomic, copy) NSString *name; // 菜谱名称 13 | @end 14 | -------------------------------------------------------------------------------- /XCFApp/Classes/Kitchen - 下厨房/BuyList - 菜篮子/View/XCFIngredientView.h: -------------------------------------------------------------------------------- 1 | // 2 | // XCFIngredientView.h 3 | // XCFApp 4 | // 5 | // Created by callmejoejoe on 16/4/25. 6 | // Copyright © 2016年 Joey. All rights reserved. 7 | // 8 | 9 | #import 10 | @class XCFRecipe; 11 | 12 | @interface XCFIngredientView : UITableViewHeaderFooterView 13 | @property (nonatomic, strong) XCFRecipe *recipe; // 菜谱 14 | @end 15 | -------------------------------------------------------------------------------- /XCFApp/Classes/Kitchen - 下厨房/CreateRecipe - 创建菜谱/CreateRecipe/Footer/XCFCreateIngredientFooter.h: -------------------------------------------------------------------------------- 1 | // 2 | // XCFCreateIngredientFooter.h 3 | // XCFApp 4 | // 5 | // Created by callmejoejoe on 16/4/18. 6 | // Copyright © 2016年 Joey. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | @interface XCFCreateIngredientFooter : UITableViewHeaderFooterView 12 | 13 | @property (nonatomic, copy) void (^addIngredientBlock)(); 14 | 15 | @end 16 | -------------------------------------------------------------------------------- /XCFApp/Classes/Kitchen - 下厨房/CreateRecipe - 创建菜谱/CreateRecipe/cell/XCFCreateTipsCell.h: -------------------------------------------------------------------------------- 1 | // 2 | // XCFCreateTipsCell.h 3 | // XCFApp 4 | // 5 | // Created by callmejoejoe on 16/4/18. 6 | // Copyright © 2016年 Joey. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | @interface XCFCreateTipsCell : UITableViewCell 12 | 13 | @property (nonatomic, copy) NSString *tips; 14 | 15 | @end 16 | -------------------------------------------------------------------------------- /XCFApp/Classes/Kitchen - 下厨房/CreateRecipe - 创建菜谱/CreateRecipe/cell/XCFDraftRecipeCell.h: -------------------------------------------------------------------------------- 1 | // 2 | // XCFDraftRecipeCell.h 3 | // XCFApp 4 | // 5 | // Created by callmejoejoe on 16/4/19. 6 | // Copyright © 2016年 Joey. All rights reserved. 7 | // 8 | 9 | #import 10 | @class XCFCreateRecipe; 11 | 12 | @interface XCFDraftRecipeCell : UITableViewCell 13 | /** 草稿数据 */ 14 | @property (nonatomic, strong) XCFCreateRecipe *recipeDraft; 15 | 16 | @end 17 | -------------------------------------------------------------------------------- /XCFApp/Classes/Kitchen - 下厨房/CreateRecipe - 创建菜谱/编辑界面/Controller/XCFDraftBoxViewController.h: -------------------------------------------------------------------------------- 1 | // 2 | // XCFDraftBoxViewController.h 3 | // XCFApp 4 | // 5 | // Created by callmejoejoe on 16/4/19. 6 | // Copyright © 2016年 Joey. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | @interface XCFDraftBoxViewController : UITableViewController 12 | 13 | @end 14 | -------------------------------------------------------------------------------- /XCFApp/Classes/Kitchen - 下厨房/CreateRecipe - 创建菜谱/草稿界面/Controller/XCFRecipeCreateController.h: -------------------------------------------------------------------------------- 1 | // 2 | // XCFRecipeCreateController.h 3 | // XCFApp 4 | // 5 | // Created by callmejoejoe on 16/4/17. 6 | // Copyright © 2016年 Joey. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | @interface XCFRecipeCreateController : UIViewController 12 | 13 | @end 14 | -------------------------------------------------------------------------------- /XCFApp/Classes/Kitchen - 下厨房/Main - 下厨房/Controller/XCFDishViewController.h: -------------------------------------------------------------------------------- 1 | // 2 | // XCFDishViewController.h 3 | // XCFApp 4 | // 5 | // Created by callmejoejoe on 16/4/10. 6 | // Copyright © 2016年 Joey. All rights reserved. 7 | // 8 | 9 | 10 | #import 11 | @class XCFDish; 12 | 13 | @interface XCFDishViewController : UITableViewController 14 | /** 模型数据 */ 15 | @property (nonatomic, strong) XCFDish *dish; 16 | 17 | @end 18 | -------------------------------------------------------------------------------- /XCFApp/Classes/Kitchen - 下厨房/Main - 下厨房/Controller/XCFKitchenViewController.h: -------------------------------------------------------------------------------- 1 | // 2 | // XCFKitchenViewController.h 3 | // XCFApp 4 | // 5 | // Created by callmejoejoe on 16/4/2. 6 | // Copyright © 2016年 Joey. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | @interface XCFKitchenViewController : UITableViewController 12 | 13 | @end 14 | -------------------------------------------------------------------------------- /XCFApp/Classes/Kitchen - 下厨房/Main - 下厨房/Controller/XCFRecipeListViewController.h: -------------------------------------------------------------------------------- 1 | // 2 | // XCFRecipeListViewController.h 3 | // XCFApp 4 | // 5 | // Created by callmejoejoe on 16/4/6. 6 | // Copyright © 2016年 Joey. All rights reserved. 7 | // 8 | 9 | /** 10 | * 菜单控制器 11 | */ 12 | #import 13 | 14 | @interface XCFRecipeListViewController : UITableViewController 15 | 16 | @end 17 | -------------------------------------------------------------------------------- /XCFApp/Classes/Kitchen - 下厨房/Main - 下厨房/Controller/XCFRecipeViewController.h: -------------------------------------------------------------------------------- 1 | // 2 | // XCFRecipeViewController.h 3 | // XCFApp 4 | // 5 | // Created by callmejoejoe on 16/4/7. 6 | // Copyright © 2016年 Joey. All rights reserved. 7 | // 8 | 9 | /** 10 | * 菜谱控制器 11 | */ 12 | #import 13 | 14 | @interface XCFRecipeViewController : UIViewController 15 | 16 | @end 17 | -------------------------------------------------------------------------------- /XCFApp/Classes/Kitchen - 下厨房/Main - 下厨房/Model/NavModel - 顶部导航数据/XCFNav.h: -------------------------------------------------------------------------------- 1 | // 2 | // XCFNav.h 3 | // XCFApp 4 | // 5 | // Created by callmejoejoe on 16/4/4. 6 | // Copyright © 2016年 Joey. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | @interface XCFNav : NSObject 12 | /** 导航跳转URL */ 13 | @property (nonatomic, copy) NSString *url; 14 | /** 导航标题 */ 15 | @property (nonatomic, copy) NSString *name; 16 | /** 图片地址 */ 17 | @property (nonatomic, copy) NSString *picurl; 18 | 19 | @end 20 | -------------------------------------------------------------------------------- /XCFApp/Classes/Kitchen - 下厨房/Main - 下厨房/Model/NavModel - 顶部导航数据/XCFNav.m: -------------------------------------------------------------------------------- 1 | // 2 | // XCFNav.m 3 | // XCFApp 4 | // 5 | // Created by callmejoejoe on 16/4/4. 6 | // Copyright © 2016年 Joey. All rights reserved. 7 | // 8 | 9 | #import "XCFNav.h" 10 | 11 | @implementation XCFNav 12 | 13 | @end 14 | -------------------------------------------------------------------------------- /XCFApp/Classes/Kitchen - 下厨房/Main - 下厨房/Model/NavModel - 顶部导航数据/XCFNavContent.m: -------------------------------------------------------------------------------- 1 | // 2 | // XCFNavContent.m 3 | // XCFApp 4 | // 5 | // Created by callmejoejoe on 16/4/4. 6 | // Copyright © 2016年 Joey. All rights reserved. 7 | // 8 | 9 | #import "XCFNavContent.h" 10 | #import "XCFNav.h" 11 | 12 | @implementation XCFNavContent 13 | 14 | + (NSDictionary *)mj_objectClassInArray { 15 | return @{@"navs" : [XCFNav class]}; 16 | } 17 | 18 | @end 19 | -------------------------------------------------------------------------------- /XCFApp/Classes/Kitchen - 下厨房/Main - 下厨房/Model/NavModel - 顶部导航数据/XCFPopEvent.m: -------------------------------------------------------------------------------- 1 | // 2 | // XCFPopEvent.m 3 | // XCFApp 4 | // 5 | // Created by callmejoejoe on 16/4/4. 6 | // Copyright © 2016年 Joey. All rights reserved. 7 | // 8 | 9 | #import "XCFPopEvent.h" 10 | 11 | @implementation XCFPopEvent 12 | 13 | + (NSDictionary *)mj_replacedKeyFromPropertyName { 14 | return @{@"ID" : @"id", 15 | @"thumbnail_280" : @"dishes.dishes[0].thumbnail_280"}; 16 | } 17 | 18 | @end 19 | -------------------------------------------------------------------------------- /XCFApp/Classes/Kitchen - 下厨房/Main - 下厨房/Model/NavModel - 顶部导航数据/XCFPopEvents.h: -------------------------------------------------------------------------------- 1 | // 2 | // XCFPopEvents.h 3 | // XCFApp 4 | // 5 | // Created by callmejoejoe on 16/4/4. 6 | // Copyright © 2016年 Joey. All rights reserved. 7 | // 8 | 9 | #import 10 | @class XCFPopEvent; 11 | 12 | @interface XCFPopEvents : NSObject 13 | /** 导航个数 */ 14 | @property (nonatomic, assign) NSInteger count; 15 | /** 导航数据 */ 16 | @property (nonatomic, strong) NSArray *events; 17 | 18 | @end 19 | -------------------------------------------------------------------------------- /XCFApp/Classes/Kitchen - 下厨房/Main - 下厨房/Model/NavModel - 顶部导航数据/XCFPopEvents.m: -------------------------------------------------------------------------------- 1 | // 2 | // XCFPopEvents.m 3 | // XCFApp 4 | // 5 | // Created by callmejoejoe on 16/4/4. 6 | // Copyright © 2016年 Joey. All rights reserved. 7 | // 8 | 9 | #import "XCFPopEvents.h" 10 | #import "XCFPopEvent.h" 11 | 12 | @implementation XCFPopEvents 13 | 14 | + (NSDictionary *)mj_objectClassInArray { 15 | return @{@"events" : [XCFPopEvent class]}; 16 | } 17 | 18 | @end 19 | -------------------------------------------------------------------------------- /XCFApp/Classes/Kitchen - 下厨房/Main - 下厨房/Model/PushModel - 跳转页面数据/Recipe/XCFAddedRecipeList.m: -------------------------------------------------------------------------------- 1 | // 2 | // XCFAddedRecipeList.m 3 | // XCFApp 4 | // 5 | // Created by callmejoejoe on 16/4/5. 6 | // Copyright © 2016年 Joey. All rights reserved. 7 | // 8 | 9 | #import "XCFAddedRecipeList.h" 10 | #import "XCFRecipeList.h" 11 | 12 | @implementation XCFAddedRecipeList 13 | 14 | + (NSDictionary *)mj_objectClassInArray { 15 | return @{@"recipe_lists" : [XCFRecipeList class]}; 16 | } 17 | 18 | @end 19 | -------------------------------------------------------------------------------- /XCFApp/Classes/Kitchen - 下厨房/Main - 下厨房/Model/PushModel - 跳转页面数据/Recipe/XCFRecipeContent.m: -------------------------------------------------------------------------------- 1 | // 2 | // XCFRecipeContent.m 3 | // XCFApp 4 | // 5 | // Created by callmejoejoe on 16/4/5. 6 | // Copyright © 2016年 Joey. All rights reserved. 7 | // 8 | 9 | #import "XCFRecipeContent.h" 10 | 11 | @implementation XCFRecipeContent 12 | 13 | + (NSDictionary *)mj_objectClassInArray { 14 | return @{@"dish_ids" : [NSString class]}; 15 | } 16 | 17 | @end 18 | -------------------------------------------------------------------------------- /XCFApp/Classes/Kitchen - 下厨房/Main - 下厨房/Model/PushModel - 跳转页面数据/Recipe/XCFRecipeDish.h: -------------------------------------------------------------------------------- 1 | // 2 | // XCFRecipeDish.h 3 | // XCFApp 4 | // 5 | // Created by callmejoejoe on 16/4/5. 6 | // Copyright © 2016年 Joey. All rights reserved. 7 | // 8 | 9 | /// 菜谱作品详细数据 10 | #import 11 | @class XCFDish; 12 | 13 | @interface XCFRecipeDish : NSObject 14 | /** 作品数组 */ 15 | @property (nonatomic, strong) NSArray *dishes; 16 | 17 | @end 18 | -------------------------------------------------------------------------------- /XCFApp/Classes/Kitchen - 下厨房/Main - 下厨房/Model/PushModel - 跳转页面数据/Recipe/XCFRecipeDish.m: -------------------------------------------------------------------------------- 1 | // 2 | // XCFRecipeDish.m 3 | // XCFApp 4 | // 5 | // Created by callmejoejoe on 16/4/5. 6 | // Copyright © 2016年 Joey. All rights reserved. 7 | // 8 | 9 | #import "XCFRecipeDish.h" 10 | #import "XCFDish.h" 11 | 12 | @implementation XCFRecipeDish 13 | 14 | + (NSDictionary *)mj_objectClassInArray { 15 | return @{@"dishes" : [XCFDish class]}; 16 | } 17 | 18 | @end 19 | -------------------------------------------------------------------------------- /XCFApp/Classes/Kitchen - 下厨房/Main - 下厨房/Model/PushModel - 跳转页面数据/Recipe/XCFRecipeStats.m: -------------------------------------------------------------------------------- 1 | // 2 | // XCFRecipeStats.m 3 | // XCFApp 4 | // 5 | // Created by callmejoejoe on 16/4/5. 6 | // Copyright © 2016年 Joey. All rights reserved. 7 | // 8 | 9 | #import "XCFRecipeStats.h" 10 | 11 | @implementation XCFRecipeStats 12 | 13 | @end 14 | -------------------------------------------------------------------------------- /XCFApp/Classes/Kitchen - 下厨房/Main - 下厨房/Model/PushModel - 跳转页面数据/RecipeList/XCFRecipeListReason.m: -------------------------------------------------------------------------------- 1 | // 2 | // XCFRecipeListReason.m 3 | // XCFApp 4 | // 5 | // Created by callmejoejoe on 16/4/5. 6 | // Copyright © 2016年 Joey. All rights reserved. 7 | // 8 | 9 | #import "XCFRecipeListReason.h" 10 | 11 | @implementation XCFRecipeListReason 12 | 13 | @end 14 | -------------------------------------------------------------------------------- /XCFApp/Classes/Kitchen - 下厨房/Main - 下厨房/Model/cellModel - 首页/XCFContent.h: -------------------------------------------------------------------------------- 1 | // 2 | // XCFContent.h 3 | // XCFApp 4 | // 5 | // Created by callmejoejoe on 16/4/2. 6 | // Copyright © 2016年 Joey. All rights reserved. 7 | // 8 | 9 | #import 10 | @class XCFIssues; 11 | 12 | @interface XCFContent : NSObject 13 | /** 菜谱组数 */ 14 | @property (nonatomic, assign) NSUInteger count; 15 | /** 菜谱数据 */ 16 | @property (nonatomic, strong) NSArray *issues; 17 | @end 18 | -------------------------------------------------------------------------------- /XCFApp/Classes/Kitchen - 下厨房/Main - 下厨房/Model/cellModel - 首页/XCFContent.m: -------------------------------------------------------------------------------- 1 | // 2 | // XCFContent.m 3 | // XCFApp 4 | // 5 | // Created by callmejoejoe on 16/4/2. 6 | // Copyright © 2016年 Joey. All rights reserved. 7 | // 8 | 9 | #import "XCFContent.h" 10 | #import "XCFIssues.h" 11 | 12 | @implementation XCFContent 13 | 14 | + (NSDictionary *)mj_objectClassInArray { 15 | return @{@"issues" : [XCFIssues class]}; 16 | } 17 | 18 | @end 19 | -------------------------------------------------------------------------------- /XCFApp/Classes/Kitchen - 下厨房/Main - 下厨房/Model/cellModel - 首页/XCFContents.m: -------------------------------------------------------------------------------- 1 | // 2 | // XCFContents.m 3 | // XCFApp 4 | // 5 | // Created by callmejoejoe on 16/4/2. 6 | // Copyright © 2016年 Joey. All rights reserved. 7 | // 8 | 9 | #import "XCFContents.h" 10 | 11 | @implementation XCFContents 12 | 13 | @end 14 | -------------------------------------------------------------------------------- /XCFApp/Classes/Kitchen - 下厨房/Main - 下厨房/Model/cellModel - 首页/XCFImage.h: -------------------------------------------------------------------------------- 1 | // 2 | // XCFImage.h 3 | // XCFApp 4 | // 5 | // Created by callmejoejoe on 16/4/2. 6 | // Copyright © 2016年 Joey. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | @interface XCFImage : NSObject 12 | 13 | /** 图片地址 */ 14 | @property (nonatomic, copy) NSString *url; 15 | /** 图片宽度 */ 16 | @property (nonatomic, assign) CGFloat width; 17 | /** 图片高度 */ 18 | @property (nonatomic, assign) CGFloat height; 19 | 20 | @end 21 | -------------------------------------------------------------------------------- /XCFApp/Classes/Kitchen - 下厨房/Main - 下厨房/Model/cellModel - 首页/XCFImage.m: -------------------------------------------------------------------------------- 1 | // 2 | // XCFImage.m 3 | // XCFApp 4 | // 5 | // Created by callmejoejoe on 16/4/2. 6 | // Copyright © 2016年 Joey. All rights reserved. 7 | // 8 | 9 | #import "XCFImage.h" 10 | 11 | @implementation XCFImage 12 | 13 | - (CGFloat)height { 14 | return _height * (XCFScreenWidth / self.width); 15 | } 16 | 17 | @end 18 | -------------------------------------------------------------------------------- /XCFApp/Classes/Kitchen - 下厨房/Main - 下厨房/Model/cellModel - 首页/XCFIssues.m: -------------------------------------------------------------------------------- 1 | // 2 | // XCFRecipe.m 3 | // XCFApp 4 | // 5 | // Created by callmejoejoe on 16/4/2. 6 | // Copyright © 2016年 Joey. All rights reserved. 7 | // 8 | 9 | #import "XCFIssues.h" 10 | #import "XCFItems.h" 11 | 12 | @implementation XCFIssues 13 | 14 | + (NSDictionary *)mj_objectClassInArray { 15 | return @{@"items" : [XCFItems class]}; 16 | } 17 | 18 | @end 19 | -------------------------------------------------------------------------------- /XCFApp/Classes/Kitchen - 下厨房/Main - 下厨房/View/Recipe - 菜谱/XCFAddedRecipeListViewCell.h: -------------------------------------------------------------------------------- 1 | // 2 | // XCFAddedRecipeListViewCell.h 3 | // XCFApp 4 | // 5 | // Created by callmejoejoe on 16/4/9. 6 | // Copyright © 2016年 Joey. All rights reserved. 7 | // 8 | 9 | #import 10 | @class XCFRecipeList; 11 | 12 | @interface XCFAddedRecipeListViewCell : UITableViewCell 13 | /** 模型数据 */ 14 | @property (nonatomic, strong) XCFRecipeList *addedList; 15 | @end 16 | -------------------------------------------------------------------------------- /XCFApp/Classes/Kitchen - 下厨房/Main - 下厨房/View/Recipe - 菜谱/XCFRecipeHeader.h: -------------------------------------------------------------------------------- 1 | // 2 | // XCFRecipeHeader.h 3 | // XCFApp 4 | // 5 | // Created by callmejoejoe on 16/4/7. 6 | // Copyright © 2016年 Joey. All rights reserved. 7 | // 8 | 9 | #import 10 | @class XCFRecipe; 11 | 12 | @interface XCFRecipeHeader : UIView 13 | 14 | /** 模型数据 */ 15 | @property (nonatomic, strong) XCFRecipe *recipe; 16 | 17 | @end 18 | -------------------------------------------------------------------------------- /XCFApp/Classes/Kitchen - 下厨房/Main - 下厨房/View/Recipe - 菜谱/XCFRecipeInstructionCell.h: -------------------------------------------------------------------------------- 1 | // 2 | // XCFRecipeInstructionCell.h 3 | // XCFApp 4 | // 5 | // Created by callmejoejoe on 16/4/7. 6 | // Copyright © 2016年 Joey. All rights reserved. 7 | // 8 | 9 | #import 10 | @class XCFRecipeInstruction; 11 | 12 | @interface XCFRecipeInstructionCell : UITableViewCell 13 | /** 模型数据 */ 14 | @property (nonatomic, strong) XCFRecipeInstruction *instruction; 15 | 16 | @end 17 | -------------------------------------------------------------------------------- /XCFApp/Classes/Kitchen - 下厨房/Main - 下厨房/View/Recipe - 菜谱/XCFRecipeSupplementaryFooter.h: -------------------------------------------------------------------------------- 1 | // 2 | // XCFRecipeSupplementaryFooter.h 3 | // XCFApp 4 | // 5 | // Created by callmejoejoe on 16/4/9. 6 | // Copyright © 2016年 Joey. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | @interface XCFRecipeSupplementaryFooter : UITableViewHeaderFooterView 12 | 13 | /** 上传按钮点击block */ 14 | @property (nonatomic, copy) void (^uploadButtonClickedBlock)(); 15 | 16 | @end 17 | -------------------------------------------------------------------------------- /XCFApp/Classes/Kitchen - 下厨房/Main - 下厨房/View/RecipeList - 菜单/XCFRecipeListHeader.h: -------------------------------------------------------------------------------- 1 | // 2 | // XCFRecipeListHeader.h 3 | // XCFApp 4 | // 5 | // Created by callmejoejoe on 16/4/6. 6 | // Copyright © 2016年 Joey. All rights reserved. 7 | // 8 | 9 | #import 10 | @class XCFRecipeList; 11 | 12 | @interface XCFRecipeListHeader : UIView 13 | 14 | /** 模型数据 */ 15 | @property (nonatomic, strong) XCFRecipeList *recipeList; 16 | /** 收藏按钮点击事件 */ 17 | @property (nonatomic, copy) void (^collectActionBlock)(); 18 | 19 | @end 20 | -------------------------------------------------------------------------------- /XCFApp/Classes/Kitchen - 下厨房/Nav - 导航/Controller/XCFFeedsViewController.h: -------------------------------------------------------------------------------- 1 | // 2 | // XCFFeedsViewController.h 3 | // XCFApp 4 | // 5 | // Created by callmejoejoe on 16/4/11. 6 | // Copyright © 2016年 Joey. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | @interface XCFFeedsViewController : UITableViewController 12 | 13 | @end 14 | -------------------------------------------------------------------------------- /XCFApp/Classes/Kitchen - 下厨房/Nav - 导航/Controller/XCFKitchenBuyViewController.h: -------------------------------------------------------------------------------- 1 | // 2 | // XCFKitchenBuyViewController.h 3 | // XCFApp 4 | // 5 | // Created by callmejoejoe on 16/4/14. 6 | // Copyright © 2016年 Joey. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | @interface XCFKitchenBuyViewController : UITableViewController 12 | 13 | @end 14 | -------------------------------------------------------------------------------- /XCFApp/Classes/Kitchen - 下厨房/Nav - 导航/Controller/XCFMealViewController.h: -------------------------------------------------------------------------------- 1 | // 2 | // XCFMealViewController.h 3 | // XCFApp 4 | // 5 | // Created by callmejoejoe on 16/4/22. 6 | // Copyright © 2016年 Joey. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | @interface XCFMealViewController : UIViewController 12 | 13 | @end 14 | -------------------------------------------------------------------------------- /XCFApp/Classes/Kitchen - 下厨房/Nav - 导航/Model/BuyBuyBuy - 买买买/XCFReviewCommodity.m: -------------------------------------------------------------------------------- 1 | // 2 | // XCFReviewCommodity.m 3 | // XCFApp 4 | // 5 | // Created by callmejoejoe on 16/4/14. 6 | // Copyright © 2016年 Joey. All rights reserved. 7 | // 8 | 9 | #import "XCFReviewCommodity.h" 10 | 11 | @implementation XCFReviewCommodity 12 | 13 | @end 14 | -------------------------------------------------------------------------------- /XCFApp/Classes/Kitchen - 下厨房/Nav - 导航/Model/BuyBuyBuy - 买买买/XCFReviewPhoto.h: -------------------------------------------------------------------------------- 1 | // 2 | // XCFReviewPhoto.h 3 | // XCFApp 4 | // 5 | // Created by callmejoejoe on 16/4/14. 6 | // Copyright © 2016年 Joey. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | @interface XCFReviewPhoto : NSObject 12 | /** 图片地址 */ 13 | @property (nonatomic, copy) NSString *url; 14 | /** 标识 */ 15 | @property (nonatomic, copy) NSString *ident; 16 | @end 17 | -------------------------------------------------------------------------------- /XCFApp/Classes/Kitchen - 下厨房/Nav - 导航/Model/FeedsModel - 关注动态/XCFComment.m: -------------------------------------------------------------------------------- 1 | // 2 | // XCFComment.m 3 | // XCFApp 4 | // 5 | // Created by callmejoejoe on 16/4/5. 6 | // Copyright © 2016年 Joey. All rights reserved. 7 | // 8 | 9 | #import "XCFComment.h" 10 | 11 | @implementation XCFComment 12 | 13 | + (NSDictionary *)mj_replacedKeyFromPropertyName { 14 | return @{@"ID" : @"id"}; 15 | } 16 | 17 | @end 18 | -------------------------------------------------------------------------------- /XCFApp/Classes/Kitchen - 下厨房/Nav - 导航/Model/FeedsModel - 关注动态/XCFDiggUsers.m: -------------------------------------------------------------------------------- 1 | // 2 | // XCFDiggUsers.m 3 | // XCFApp 4 | // 5 | // Created by callmejoejoe on 16/4/3. 6 | // Copyright © 2016年 Joey. All rights reserved. 7 | // 8 | 9 | #import "XCFDiggUsers.h" 10 | #import "XCFAuthor.h" 11 | 12 | @implementation XCFDiggUsers 13 | 14 | + (NSDictionary *)mj_objectClassInArray { 15 | return @{@"users" : [XCFAuthor class]}; 16 | } 17 | 18 | @end 19 | -------------------------------------------------------------------------------- /XCFApp/Classes/Kitchen - 下厨房/Nav - 导航/Model/FeedsModel - 关注动态/XCFEvents.m: -------------------------------------------------------------------------------- 1 | // 2 | // XCFEvents.m 3 | // XCFApp 4 | // 5 | // Created by callmejoejoe on 16/4/3. 6 | // Copyright © 2016年 Joey. All rights reserved. 7 | // 8 | 9 | #import "XCFEvents.h" 10 | 11 | @implementation XCFEvents 12 | 13 | + (NSDictionary *)mj_replacedKeyFromPropertyName { 14 | return @{@"ID" : @"id"}; 15 | } 16 | 17 | @end 18 | -------------------------------------------------------------------------------- /XCFApp/Classes/Kitchen - 下厨房/Nav - 导航/Model/FeedsModel - 关注动态/XCFFeeds.m: -------------------------------------------------------------------------------- 1 | // 2 | // XCFFeeds.m 3 | // XCFApp 4 | // 5 | // Created by callmejoejoe on 16/4/3. 6 | // Copyright © 2016年 Joey. All rights reserved. 7 | // 8 | 9 | #import "XCFFeeds.h" 10 | 11 | @implementation XCFFeeds 12 | 13 | + (NSDictionary *)mj_replacedKeyFromPropertyName { 14 | return @{@"ID" : @"id"}; 15 | } 16 | 17 | @end 18 | -------------------------------------------------------------------------------- /XCFApp/Classes/Kitchen - 下厨房/Nav - 导航/Model/FeedsModel - 关注动态/XCFFeedsContent.h: -------------------------------------------------------------------------------- 1 | // 2 | // XCFFeedsContent.h 3 | // XCFApp 4 | // 5 | // Created by callmejoejoe on 16/4/11. 6 | // Copyright © 2016年 Joey. All rights reserved. 7 | // 8 | 9 | #import 10 | @class XCFFeeds; 11 | 12 | @interface XCFFeedsContent : NSObject 13 | /** 菜谱详情 */ 14 | @property (nonatomic, strong) NSArray *feeds; 15 | /** 类型 */ 16 | @property (nonatomic, assign) NSInteger count; 17 | 18 | @end 19 | -------------------------------------------------------------------------------- /XCFApp/Classes/Kitchen - 下厨房/Nav - 导航/Model/FeedsModel - 关注动态/XCFFeedsContent.m: -------------------------------------------------------------------------------- 1 | // 2 | // XCFFeedsContent.m 3 | // XCFApp 4 | // 5 | // Created by callmejoejoe on 16/4/11. 6 | // Copyright © 2016年 Joey. All rights reserved. 7 | // 8 | 9 | #import "XCFFeedsContent.h" 10 | #import "XCFFeeds.h" 11 | 12 | @implementation XCFFeedsContent 13 | 14 | + (NSDictionary *)mj_objectClassInArray { 15 | return @{@"feeds" : [XCFFeeds class]}; 16 | } 17 | 18 | @end 19 | -------------------------------------------------------------------------------- /XCFApp/Classes/Kitchen - 下厨房/Nav - 导航/Model/FeedsModel - 关注动态/XCFPicture.m: -------------------------------------------------------------------------------- 1 | // 2 | // XCFPicture.m 3 | // XCFApp 4 | // 5 | // Created by callmejoejoe on 16/4/3. 6 | // Copyright © 2016年 Joey. All rights reserved. 7 | // 8 | 9 | #import "XCFPicture.h" 10 | 11 | @implementation XCFPicture 12 | 13 | + (NSDictionary *)mj_replacedKeyFromPropertyName { 14 | return @{@"bigPhoto" : @"600", 15 | @"smallPhoto" : @"280"}; 16 | } 17 | 18 | @end 19 | -------------------------------------------------------------------------------- /XCFApp/Classes/Kitchen - 下厨房/Nav - 导航/Model/MealsModel - 三餐/XCFMealInfo.h: -------------------------------------------------------------------------------- 1 | // 2 | // XCFMealInfo.h 3 | // XCFApp 4 | // 5 | // Created by callmejoejoe on 16/4/22. 6 | // Copyright © 2016年 Joey. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | @interface XCFMealInfo : NSObject 12 | @property (nonatomic, copy) NSString *name; // 标题 13 | @property (nonatomic, copy) NSString *n_dishes; // 作品数 14 | @property (nonatomic, copy) NSString *desc; // 描述 15 | @end 16 | -------------------------------------------------------------------------------- /XCFApp/Classes/Kitchen - 下厨房/Nav - 导航/Model/MealsModel - 三餐/XCFMealInfo.m: -------------------------------------------------------------------------------- 1 | // 2 | // XCFMealInfo.m 3 | // XCFApp 4 | // 5 | // Created by callmejoejoe on 16/4/22. 6 | // Copyright © 2016年 Joey. All rights reserved. 7 | // 8 | 9 | #import "XCFMealInfo.h" 10 | 11 | @implementation XCFMealInfo 12 | 13 | @end 14 | -------------------------------------------------------------------------------- /XCFApp/Classes/Kitchen - 下厨房/Nav - 导航/View/Meals - 三餐/XCFMealDishCell.h: -------------------------------------------------------------------------------- 1 | // 2 | // XCFMealDishCell.h 3 | // XCFApp 4 | // 5 | // Created by callmejoejoe on 16/4/22. 6 | // Copyright © 2016年 Joey. All rights reserved. 7 | // 8 | 9 | #import 10 | @class XCFDish; 11 | 12 | @interface XCFMealDishCell : UICollectionViewCell 13 | @property (nonatomic, strong) XCFDish *dish; 14 | @end 15 | -------------------------------------------------------------------------------- /XCFApp/Classes/Kitchen - 下厨房/Nav - 导航/View/Meals - 三餐/XCFMealHeader.h: -------------------------------------------------------------------------------- 1 | // 2 | // XCFMealHeader.h 3 | // XCFApp 4 | // 5 | // Created by callmejoejoe on 16/4/22. 6 | // Copyright © 2016年 Joey. All rights reserved. 7 | // 8 | 9 | #import 10 | @class XCFMealInfo; 11 | 12 | @interface XCFMealHeader : UICollectionReusableView 13 | @property (nonatomic, strong) XCFMealInfo *mealInfo; 14 | @end 15 | -------------------------------------------------------------------------------- /XCFApp/Classes/Kitchen - 下厨房/Search - 搜索/Controller/XCFSearchResultViewController.h: -------------------------------------------------------------------------------- 1 | // 2 | // XCFSearchResultViewController.h 3 | // XCFApp 4 | // 5 | // Created by callmejoejoe on 16/4/26. 6 | // Copyright © 2016年 Joey. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | @interface XCFSearchResultViewController : UIViewController 12 | @property (nonatomic, copy) NSString *result; // 搜索结果 13 | @end 14 | -------------------------------------------------------------------------------- /XCFApp/Classes/Kitchen - 下厨房/Search - 搜索/Controller/XCFSearchViewController.h: -------------------------------------------------------------------------------- 1 | // 2 | // XCFSearchViewController.h 3 | // XCFApp 4 | // 5 | // Created by callmejoejoe on 16/4/26. 6 | // Copyright © 2016年 Joey. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | @interface XCFSearchViewController : UITableViewController 12 | 13 | @end 14 | -------------------------------------------------------------------------------- /XCFApp/Classes/Kitchen - 下厨房/Search - 搜索/Model/XCFSearchKeywordsTool.h: -------------------------------------------------------------------------------- 1 | // 2 | // XCFSearchKeywordsTool.h 3 | // XCFApp 4 | // 5 | // Created by callmejoejoe on 16/4/26. 6 | // Copyright © 2016年 Joey. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | @interface XCFSearchKeywordsTool : NSObject 12 | 13 | + (void)update; 14 | + (NSArray *)totalWords; 15 | + (void)addNewWord:(NSString *)newWord; 16 | + (void)removeAllWords; 17 | 18 | @end 19 | -------------------------------------------------------------------------------- /XCFApp/Classes/Kitchen - 下厨房/Search - 搜索/View/XCFSearchViewFooter.h: -------------------------------------------------------------------------------- 1 | // 2 | // XCFSearchViewFooter.h 3 | // XCFApp 4 | // 5 | // Created by callmejoejoe on 16/4/26. 6 | // Copyright © 2016年 Joey. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | @interface XCFSearchViewFooter : UIView 12 | @property (nonatomic, strong) NSArray *keywords; // 流行搜索 13 | @property (nonatomic, copy) void (^searchCallBack)(NSUInteger); // 点击按钮的搜索回调 14 | @end 15 | -------------------------------------------------------------------------------- /XCFApp/Classes/Kitchen - 下厨房/Search - 搜索/View/XCFSearchViewHeader.h: -------------------------------------------------------------------------------- 1 | // 2 | // XCFSearchViewHeader.h 3 | // XCFApp 4 | // 5 | // Created by callmejoejoe on 16/4/26. 6 | // Copyright © 2016年 Joey. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | @interface XCFSearchViewHeader : UIView 12 | @property (nonatomic, copy) void (^clearBlock)(); 13 | @end 14 | -------------------------------------------------------------------------------- /XCFApp/Classes/Kitchen - 下厨房/UploadDish - 上传作品/Controller/XCFAddTagViewController.h: -------------------------------------------------------------------------------- 1 | // 2 | // XCFAddTagViewController.h 3 | // XCFApp 4 | // 5 | // Created by callmejoejoe on 16/4/27. 6 | // Copyright © 2016年 Joey. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | @interface XCFAddTagViewController : UIViewController 12 | @property (nonatomic, copy) void (^callBack)(NSString *); // 返回编辑好的标签文字 13 | @end 14 | -------------------------------------------------------------------------------- /XCFApp/Classes/Kitchen - 下厨房/UploadDish - 上传作品/Controller/XCFUploadDishViewController.h: -------------------------------------------------------------------------------- 1 | // 2 | // XCFUploadDishViewController.h 3 | // XCFApp 4 | // 5 | // Created by callmejoejoe on 16/4/26. 6 | // Copyright © 2016年 Joey. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | @interface XCFUploadDishViewController : UITableViewController 12 | 13 | @end 14 | -------------------------------------------------------------------------------- /XCFApp/Classes/Kitchen - 下厨房/UploadDish - 上传作品/Model/XCFUploadDataTool.h: -------------------------------------------------------------------------------- 1 | // 2 | // XCFUploadDataTool.h 3 | // XCFApp 4 | // 5 | // Created by callmejoejoe on 16/4/27. 6 | // Copyright © 2016年 Joey. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | @interface XCFUploadDataTool : NSObject 12 | @property (nonatomic, strong) NSArray *tagsArray; // 标签数组 13 | @property (nonatomic, assign) CGFloat tagsViewHeight; // 标签视图高度 14 | @end 15 | -------------------------------------------------------------------------------- /XCFApp/Classes/Kitchen - 下厨房/UploadDish - 上传作品/View/XCFTagView.h: -------------------------------------------------------------------------------- 1 | // 2 | // XCFTagView.h 3 | // XCFApp 4 | // 5 | // Created by callmejoejoe on 16/4/26. 6 | // Copyright © 2016年 Joey. All rights reserved. 7 | // 8 | 9 | typedef void (^deleteTagBlock)(); 10 | 11 | #import 12 | 13 | @interface XCFTagView : UIView 14 | 15 | @property (nonatomic, copy) deleteTagBlock callBack; 16 | 17 | + (instancetype)tagViewWithString:(NSString *)string deleteTagBlock:(deleteTagBlock)callBack; 18 | 19 | @end 20 | -------------------------------------------------------------------------------- /XCFApp/Classes/Me - 我/Controller/XCFMeController.h: -------------------------------------------------------------------------------- 1 | // 2 | // XCFMeController.h 3 | // XCFApp 4 | // 5 | // Created by callmejoejoe on 16/4/20. 6 | // Copyright © 2016年 Joey. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | @interface XCFMeController : UIViewController 12 | 13 | @end 14 | -------------------------------------------------------------------------------- /XCFApp/Classes/Me - 我/View/XCFMeInfoView.h: -------------------------------------------------------------------------------- 1 | // 2 | // XCFMeInfoView.h 3 | // XCFApp 4 | // 5 | // Created by callmejoejoe on 16/4/20. 6 | // Copyright © 2016年 Joey. All rights reserved. 7 | // 8 | 9 | #import 10 | @class XCFAuthorDetail; 11 | 12 | @interface XCFMeInfoView : UIView 13 | 14 | @property (nonatomic, strong) XCFAuthorDetail *authorDetail; 15 | 16 | @end 17 | -------------------------------------------------------------------------------- /XCFApp/Classes/Me - 我/View/XCFMyLocateNDescView.h: -------------------------------------------------------------------------------- 1 | // 2 | // XCFMyLocateNDescView.h 3 | // XCFApp 4 | // 5 | // Created by callmejoejoe on 16/4/20. 6 | // Copyright © 2016年 Joey. All rights reserved. 7 | // 8 | 9 | #import 10 | @class XCFAuthorDetail; 11 | 12 | @interface XCFMyLocateNDescView : UIView 13 | 14 | @property (nonatomic, strong) XCFAuthorDetail *authorDetail; 15 | 16 | @end 17 | -------------------------------------------------------------------------------- /XCFApp/Classes/Me - 我/View/XCFMyViewHeader.h: -------------------------------------------------------------------------------- 1 | // 2 | // XCFMyViewHeader.h 3 | // XCFApp 4 | // 5 | // Created by callmejoejoe on 16/4/20. 6 | // Copyright © 2016年 Joey. All rights reserved. 7 | // 8 | 9 | #import 10 | @class XCFAuthorDetail; 11 | 12 | @interface XCFMyViewHeader : UICollectionReusableView 13 | 14 | @property (nonatomic, strong) XCFAuthorDetail *authorDetail; 15 | 16 | @end 17 | -------------------------------------------------------------------------------- /XCFApp/Classes/Other/AppDelegate.h: -------------------------------------------------------------------------------- 1 | // 2 | // AppDelegate.h 3 | // XCFApp 4 | // 5 | // Created by callmejoejoe on 16/4/2. 6 | // Copyright © 2016年 Joey. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | @interface AppDelegate : UIResponder 12 | 13 | @property (strong, nonatomic) UIWindow *window; 14 | 15 | 16 | @end 17 | 18 | -------------------------------------------------------------------------------- /XCFApp/Classes/Other/Category/NSDate+Extension.h: -------------------------------------------------------------------------------- 1 | // 2 | // NSDate+Extension.h 3 | // XCFApp 4 | // 5 | // Created by callmejoejoe on 16/4/28. 6 | // Copyright © 2016年 Joey. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | @interface NSDate (Extension) 12 | 13 | /** 14 | * 比较from和self的时间差值 15 | */ 16 | - (NSDateComponents *)deltaFrom:(NSDate *)from; 17 | 18 | - (BOOL)isThisYear; 19 | - (BOOL)isToday; 20 | - (BOOL)isYesterday; 21 | 22 | @end 23 | -------------------------------------------------------------------------------- /XCFApp/Classes/Other/Category/NSString+Extension.h: -------------------------------------------------------------------------------- 1 | // 2 | // NSString+Extension.h 3 | // XCFApp 4 | // 5 | // Created by callmejoejoe on 16/4/15. 6 | // Copyright © 2016年 Joey. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | @interface NSString (Extension) 12 | 13 | /** 14 | * 获取字体最大尺寸 15 | */ 16 | - (CGSize)getSizeWithTextSize:(CGSize)size fontSize:(CGFloat)fontSize; 17 | 18 | @end 19 | -------------------------------------------------------------------------------- /XCFApp/Classes/Other/Category/UIImage+Extension.h: -------------------------------------------------------------------------------- 1 | // 2 | // UIImage+Extension.h 3 | // XCFApp 4 | // 5 | // Created by callmejoejoe on 16/4/3. 6 | // Copyright © 2016年 Joey. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | @interface UIImage (Extension) 12 | 13 | - (UIImage *)circleImage; 14 | 15 | @end 16 | -------------------------------------------------------------------------------- /XCFApp/Classes/Other/Category/UIImageView+Extension.h: -------------------------------------------------------------------------------- 1 | // 2 | // UIImageView+Extension.h 3 | // XCFApp 4 | // 5 | // Created by callmejoejoe on 16/4/3. 6 | // Copyright © 2016年 Joey. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | @interface UIImageView (Extension) 12 | 13 | - (void)setHeaderWithURL:(NSURL *)url; 14 | 15 | @end 16 | -------------------------------------------------------------------------------- /XCFApp/Classes/Other/Category/UIViewController+Extension.h: -------------------------------------------------------------------------------- 1 | // 2 | // UIViewController+Extension.h 3 | // XCFApp 4 | // 5 | // Created by callmejoejoe on 16/4/17. 6 | // Copyright © 2016年 Joey. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | @interface UIViewController (Extension) 12 | 13 | - (void)pushWebViewWithURL:(NSString *)URL; 14 | 15 | @end 16 | -------------------------------------------------------------------------------- /XCFApp/Classes/Other/Controller/XCFNavigationController.h: -------------------------------------------------------------------------------- 1 | // 2 | // XCFNavigationController.h 3 | // XCFApp 4 | // 5 | // Created by callmejoejoe on 16/4/2. 6 | // Copyright © 2016年 Joey. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | @interface XCFNavigationController : UINavigationController 12 | 13 | @end 14 | -------------------------------------------------------------------------------- /XCFApp/Classes/Other/Controller/XCFTabBarController.h: -------------------------------------------------------------------------------- 1 | // 2 | // XCFTabBarController.h 3 | // XCFApp 4 | // 5 | // Created by callmejoejoe on 16/4/2. 6 | // Copyright © 2016年 Joey. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | @interface XCFTabBarController : UITabBarController 12 | 13 | @end 14 | -------------------------------------------------------------------------------- /XCFApp/Classes/Other/Tools/XCFCity.h: -------------------------------------------------------------------------------- 1 | // 2 | // XCFCity.h 3 | // XCFApp 4 | // 5 | // Created by callmejoejoe on 16/4/21. 6 | // Copyright © 2016年 Joey. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | @interface XCFCity : NSObject 12 | @property (nonatomic, copy) NSString *city_name; 13 | @property (nonatomic, copy) NSString *city_id; 14 | 15 | - (instancetype)initWithDict:(NSDictionary *)dict; 16 | + (instancetype)cityWithDict:(NSDictionary *)dict; 17 | 18 | @end 19 | -------------------------------------------------------------------------------- /XCFApp/Classes/Other/Tools/XCFDetailArea.h: -------------------------------------------------------------------------------- 1 | // 2 | // XCFDetailArea.h 3 | // XCFApp 4 | // 5 | // Created by callmejoejoe on 16/4/22. 6 | // Copyright © 2016年 Joey. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | @interface XCFDetailArea : NSObject 12 | 13 | @property (nonatomic, copy) NSString *ID; 14 | @property (nonatomic, copy) NSString *areaName; 15 | 16 | - (instancetype)initWithDict:(NSDictionary *)dict; 17 | + (instancetype)detailAreaWithDict:(NSDictionary *)dict; 18 | 19 | @end 20 | -------------------------------------------------------------------------------- /XCFApp/Classes/Other/View/XCFBottomView.h: -------------------------------------------------------------------------------- 1 | // 2 | // XCFBottomView.h 3 | // XCFApp 4 | // 5 | // Created by callmejoejoe on 16/4/10. 6 | // Copyright © 2016年 Joey. All rights reserved. 7 | // 8 | 9 | 10 | #import 11 | 12 | @interface XCFBottomView : UIView 13 | /** 回调block */ 14 | @property (nonatomic, strong) void (^actionBlock)(NSInteger); 15 | 16 | @end 17 | -------------------------------------------------------------------------------- /XCFApp/Classes/Other/View/XCFCartIcon.h: -------------------------------------------------------------------------------- 1 | // 2 | // XCFCartIcon.h 3 | // XCFApp 4 | // 5 | // Created by callmejoejoe on 16/4/24. 6 | // Copyright © 2016年 Joey. All rights reserved. 7 | // 8 | 9 | 10 | /** 11 | * 购物车图标 12 | */ 13 | #import 14 | 15 | @interface XCFCartIcon : UIView 16 | 17 | @end 18 | -------------------------------------------------------------------------------- /XCFApp/Classes/Other/View/XCFStarView.h: -------------------------------------------------------------------------------- 1 | // 2 | // XCFStarView.h 3 | // XCFApp 4 | // 5 | // Created by callmejoejoe on 16/4/14. 6 | // Copyright © 2016年 Joey. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | @interface XCFStarView : UIView 12 | 13 | /** 评分 */ 14 | @property (nonatomic, assign) CGFloat rate; 15 | 16 | + (instancetype)starViewWithRate:(CGFloat)rate; 17 | 18 | @end 19 | -------------------------------------------------------------------------------- /XCFApp/Classes/Other/main.m: -------------------------------------------------------------------------------- 1 | // 2 | // main.m 3 | // XCFApp 4 | // 5 | // Created by callmejoejoe on 16/4/2. 6 | // Copyright © 2016年 Joey. All rights reserved. 7 | // 8 | 9 | #import 10 | #import "AppDelegate.h" 11 | 12 | int main(int argc, char * argv[]) { 13 | @autoreleasepool { 14 | return UIApplicationMain(argc, argv, nil, NSStringFromClass([AppDelegate class])); 15 | } 16 | } 17 | -------------------------------------------------------------------------------- /XCFApp/Classes/Setting - 设置/Controller/XCFAddressEditingController.h: -------------------------------------------------------------------------------- 1 | // 2 | // XCFAddressEditingController.h 3 | // XCFApp 4 | // 5 | // Created by callmejoejoe on 16/4/21. 6 | // Copyright © 2016年 Joey. All rights reserved. 7 | // 8 | 9 | #import 10 | @class XCFAddressInfo; 11 | 12 | @interface XCFAddressEditingController : UITableViewController 13 | @property (nonatomic, assign) NSInteger infoIndex; // 收货地址数据的下标 14 | @property (nonatomic, strong) XCFAddressInfo *addressInfo; 15 | @end 16 | -------------------------------------------------------------------------------- /XCFApp/Classes/Setting - 设置/Controller/XCFProfileEditingController.h: -------------------------------------------------------------------------------- 1 | // 2 | // XCFProfileEditingController.h 3 | // XCFApp 4 | // 5 | // Created by callmejoejoe on 16/4/20. 6 | // Copyright © 2016年 Joey. All rights reserved. 7 | // 8 | 9 | #import 10 | @class XCFAuthorDetail; 11 | @interface XCFProfileEditingController : UITableViewController 12 | @end 13 | -------------------------------------------------------------------------------- /XCFApp/Classes/Setting - 设置/Controller/XCFSettingViewController.h: -------------------------------------------------------------------------------- 1 | // 2 | // XCFSettingViewController.h 3 | // XCFApp 4 | // 5 | // Created by callmejoejoe on 16/4/20. 6 | // Copyright © 2016年 Joey. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | @interface XCFSettingViewController : UITableViewController 12 | 13 | @end 14 | -------------------------------------------------------------------------------- /XCFApp/Classes/Setting - 设置/Controller/XCFShippingAddressController.h: -------------------------------------------------------------------------------- 1 | // 2 | // XCFShippingAddressController.h 3 | // XCFApp 4 | // 5 | // Created by callmejoejoe on 16/4/21. 6 | // Copyright © 2016年 Joey. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | @interface XCFShippingAddressController : UITableViewController 12 | 13 | @end 14 | -------------------------------------------------------------------------------- /XCFApp/Classes/Setting - 设置/Model/XCFMyInfo.h: -------------------------------------------------------------------------------- 1 | // 2 | // XCFMyInfo.h 3 | // XCFApp 4 | // 5 | // Created by callmejoejoe on 16/4/21. 6 | // Copyright © 2016年 Joey. All rights reserved. 7 | // 8 | 9 | #import 10 | @class XCFAuthorDetail; 11 | 12 | @interface XCFMyInfo : NSObject 13 | 14 | + (XCFAuthorDetail *)info; 15 | + (void)updateInfoWithNewInfo:(XCFAuthorDetail *)info; 16 | 17 | @end 18 | -------------------------------------------------------------------------------- /XCFApp/Classes/Setting - 设置/View/ProfileEditing/XCFEditingDescCell.h: -------------------------------------------------------------------------------- 1 | // 2 | // XCFEditingDescCell.h 3 | // XCFApp 4 | // 5 | // Created by callmejoejoe on 16/4/21. 6 | // Copyright © 2016年 Joey. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | @interface XCFEditingDescCell : UITableViewCell 12 | @property (nonatomic, copy) NSString *displayDesc; 13 | @property (nonatomic, copy) void (^editingDescBlock)(NSString *); 14 | @end 15 | -------------------------------------------------------------------------------- /XCFApp/Classes/Setting - 设置/View/ProfileEditing/XCFEditingTextCell.h: -------------------------------------------------------------------------------- 1 | // 2 | // XCFEditingTextCell.h 3 | // XCFApp 4 | // 5 | // Created by callmejoejoe on 16/4/20. 6 | // Copyright © 2016年 Joey. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | @interface XCFEditingTextCell : UITableViewCell 12 | @property (nonatomic, copy) NSString *placeholder; 13 | @property (nonatomic, copy) NSString *displayName; 14 | @property (nonatomic, copy) void (^editingTextBlock)(NSString *); 15 | @end 16 | -------------------------------------------------------------------------------- /XCFApp/Classes/Setting - 设置/View/ProfileEditing/XCFProfileEditingHeader.h: -------------------------------------------------------------------------------- 1 | // 2 | // XCFProfileEditingHeader.h 3 | // XCFApp 4 | // 5 | // Created by callmejoejoe on 16/4/20. 6 | // Copyright © 2016年 Joey. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | @interface XCFProfileEditingHeader : UIView 12 | @property (nonatomic, strong) UIImage *displayImage; 13 | @property (nonatomic, copy) void (^uploadIconBlock)(); 14 | @end 15 | -------------------------------------------------------------------------------- /XCFApp/Classes/Setting - 设置/View/ShippingAddress/XCFAddAddressView.h: -------------------------------------------------------------------------------- 1 | // 2 | // XCFAddAddressView.h 3 | // XCFApp 4 | // 5 | // Created by callmejoejoe on 16/4/21. 6 | // Copyright © 2016年 Joey. All rights reserved. 7 | // 8 | 9 | #import 10 | @class XCFAddressInfo; 11 | 12 | @interface XCFAddAddressView : UIView 13 | @property (nonatomic, copy) void (^addAddressBlock)(); 14 | @end 15 | -------------------------------------------------------------------------------- /XCFApp/Classes/Setting - 设置/View/ShippingAddress/XCFShippingAddressCell.h: -------------------------------------------------------------------------------- 1 | // 2 | // XCFShippingAddressCell.h 3 | // XCFApp 4 | // 5 | // Created by callmejoejoe on 16/4/21. 6 | // Copyright © 2016年 Joey. All rights reserved. 7 | // 8 | 9 | #import 10 | @class XCFAddressInfo; 11 | 12 | @interface XCFShippingAddressCell : UITableViewCell 13 | @property (nonatomic, strong) XCFAddressInfo *addressInfo; 14 | @end 15 | -------------------------------------------------------------------------------- /XCFApp/Classes/Setting - 设置/View/XCFMyInfoCell.h: -------------------------------------------------------------------------------- 1 | // 2 | // XCFMyInfoCell.h 3 | // XCFApp 4 | // 5 | // Created by callmejoejoe on 16/4/20. 6 | // Copyright © 2016年 Joey. All rights reserved. 7 | // 8 | 9 | #import 10 | @class XCFAuthorDetail; 11 | 12 | @interface XCFMyInfoCell : UITableViewCell 13 | @property (nonatomic, strong) XCFAuthorDetail *authorDetail; 14 | @end 15 | -------------------------------------------------------------------------------- /XCFApp/Classes/Setting - 设置/View/XCFSettingFooter.h: -------------------------------------------------------------------------------- 1 | // 2 | // XCFSettingFooter.h 3 | // XCFApp 4 | // 5 | // Created by callmejoejoe on 16/4/20. 6 | // Copyright © 2016年 Joey. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | @interface XCFSettingFooter : UIView 12 | 13 | @end 14 | -------------------------------------------------------------------------------- /XCFApp/Supporting Files/Assets.xcassets/AppIcon.appiconset/AppIcon29x29.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psven/XCFApp/b070c0999b22e5093b8b640f046934aee44ed268/XCFApp/Supporting Files/Assets.xcassets/AppIcon.appiconset/AppIcon29x29.png -------------------------------------------------------------------------------- /XCFApp/Supporting Files/Assets.xcassets/AppIcon.appiconset/AppIcon29x29@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psven/XCFApp/b070c0999b22e5093b8b640f046934aee44ed268/XCFApp/Supporting Files/Assets.xcassets/AppIcon.appiconset/AppIcon29x29@2x.png -------------------------------------------------------------------------------- /XCFApp/Supporting Files/Assets.xcassets/AppIcon.appiconset/AppIcon40x40@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psven/XCFApp/b070c0999b22e5093b8b640f046934aee44ed268/XCFApp/Supporting Files/Assets.xcassets/AppIcon.appiconset/AppIcon40x40@2x.png -------------------------------------------------------------------------------- /XCFApp/Supporting Files/Assets.xcassets/AppIcon.appiconset/AppIcon57x57.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psven/XCFApp/b070c0999b22e5093b8b640f046934aee44ed268/XCFApp/Supporting Files/Assets.xcassets/AppIcon.appiconset/AppIcon57x57.png -------------------------------------------------------------------------------- /XCFApp/Supporting Files/Assets.xcassets/AppIcon.appiconset/AppIcon57x57@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psven/XCFApp/b070c0999b22e5093b8b640f046934aee44ed268/XCFApp/Supporting Files/Assets.xcassets/AppIcon.appiconset/AppIcon57x57@2x.png -------------------------------------------------------------------------------- /XCFApp/Supporting Files/Assets.xcassets/AppIcon.appiconset/AppIcon60x60@2x-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psven/XCFApp/b070c0999b22e5093b8b640f046934aee44ed268/XCFApp/Supporting Files/Assets.xcassets/AppIcon.appiconset/AppIcon60x60@2x-1.png -------------------------------------------------------------------------------- /XCFApp/Supporting Files/Assets.xcassets/AppIcon.appiconset/AppIcon60x60@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psven/XCFApp/b070c0999b22e5093b8b640f046934aee44ed268/XCFApp/Supporting Files/Assets.xcassets/AppIcon.appiconset/AppIcon60x60@2x.png -------------------------------------------------------------------------------- /XCFApp/Supporting Files/Assets.xcassets/AppIcon.appiconset/AppIcon60x60@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psven/XCFApp/b070c0999b22e5093b8b640f046934aee44ed268/XCFApp/Supporting Files/Assets.xcassets/AppIcon.appiconset/AppIcon60x60@3x.png -------------------------------------------------------------------------------- /XCFApp/Supporting Files/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "version" : 1, 4 | "author" : "xcode" 5 | } 6 | } -------------------------------------------------------------------------------- /XCFApp/Supporting Files/Assets.xcassets/LaunchImage.launchimage/LaunchImage-568h@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psven/XCFApp/b070c0999b22e5093b8b640f046934aee44ed268/XCFApp/Supporting Files/Assets.xcassets/LaunchImage.launchimage/LaunchImage-568h@2x.png -------------------------------------------------------------------------------- /XCFApp/Supporting Files/Assets.xcassets/LaunchImage.launchimage/LaunchImage-700-568h@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psven/XCFApp/b070c0999b22e5093b8b640f046934aee44ed268/XCFApp/Supporting Files/Assets.xcassets/LaunchImage.launchimage/LaunchImage-700-568h@2x.png -------------------------------------------------------------------------------- /XCFApp/Supporting Files/Assets.xcassets/LaunchImage.launchimage/LaunchImage-700@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psven/XCFApp/b070c0999b22e5093b8b640f046934aee44ed268/XCFApp/Supporting Files/Assets.xcassets/LaunchImage.launchimage/LaunchImage-700@2x.png -------------------------------------------------------------------------------- /XCFApp/Supporting Files/Assets.xcassets/LaunchImage.launchimage/LaunchImage-800-667h@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psven/XCFApp/b070c0999b22e5093b8b640f046934aee44ed268/XCFApp/Supporting Files/Assets.xcassets/LaunchImage.launchimage/LaunchImage-800-667h@2x.png -------------------------------------------------------------------------------- /XCFApp/Supporting Files/Assets.xcassets/LaunchImage.launchimage/LaunchImage-800-Portrait-736h@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psven/XCFApp/b070c0999b22e5093b8b640f046934aee44ed268/XCFApp/Supporting Files/Assets.xcassets/LaunchImage.launchimage/LaunchImage-800-Portrait-736h@3x.png -------------------------------------------------------------------------------- /XCFApp/Supporting Files/Assets.xcassets/LaunchImage.launchimage/LaunchImage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psven/XCFApp/b070c0999b22e5093b8b640f046934aee44ed268/XCFApp/Supporting Files/Assets.xcassets/LaunchImage.launchimage/LaunchImage.png -------------------------------------------------------------------------------- /XCFApp/Supporting Files/Assets.xcassets/LaunchImage.launchimage/LaunchImage@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psven/XCFApp/b070c0999b22e5093b8b640f046934aee44ed268/XCFApp/Supporting Files/Assets.xcassets/LaunchImage.launchimage/LaunchImage@2x.png -------------------------------------------------------------------------------- /XCFApp/Supporting Files/Assets.xcassets/Menu/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "version" : 1, 4 | "author" : "xcode" 5 | } 6 | } -------------------------------------------------------------------------------- /XCFApp/Supporting Files/Assets.xcassets/My-我/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "version" : 1, 4 | "author" : "xcode" 5 | } 6 | } -------------------------------------------------------------------------------- /XCFApp/Supporting Files/Assets.xcassets/My-我/myFavourite.imageset/myFavourite.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psven/XCFApp/b070c0999b22e5093b8b640f046934aee44ed268/XCFApp/Supporting Files/Assets.xcassets/My-我/myFavourite.imageset/myFavourite.png -------------------------------------------------------------------------------- /XCFApp/Supporting Files/Assets.xcassets/My-我/myVoucher.imageset/myVoucher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psven/XCFApp/b070c0999b22e5093b8b640f046934aee44ed268/XCFApp/Supporting Files/Assets.xcassets/My-我/myVoucher.imageset/myVoucher.png -------------------------------------------------------------------------------- /XCFApp/Supporting Files/Assets.xcassets/My-我/mycredit.imageset/mycredit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psven/XCFApp/b070c0999b22e5093b8b640f046934aee44ed268/XCFApp/Supporting Files/Assets.xcassets/My-我/mycredit.imageset/mycredit.png -------------------------------------------------------------------------------- /XCFApp/Supporting Files/Assets.xcassets/My-我/myfav.imageset/myfav.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psven/XCFApp/b070c0999b22e5093b8b640f046934aee44ed268/XCFApp/Supporting Files/Assets.xcassets/My-我/myfav.imageset/myfav.png -------------------------------------------------------------------------------- /XCFApp/Supporting Files/Assets.xcassets/My-我/myorder.imageset/myorder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psven/XCFApp/b070c0999b22e5093b8b640f046934aee44ed268/XCFApp/Supporting Files/Assets.xcassets/My-我/myorder.imageset/myorder.png -------------------------------------------------------------------------------- /XCFApp/Supporting Files/Assets.xcassets/NavigationBar/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "version" : 1, 4 | "author" : "xcode" 5 | } 6 | } -------------------------------------------------------------------------------- /XCFApp/Supporting Files/Assets.xcassets/NavigationBar/backStretchBackgroundNormal.imageset/backStretchBackgroundNormal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psven/XCFApp/b070c0999b22e5093b8b640f046934aee44ed268/XCFApp/Supporting Files/Assets.xcassets/NavigationBar/backStretchBackgroundNormal.imageset/backStretchBackgroundNormal.png -------------------------------------------------------------------------------- /XCFApp/Supporting Files/Assets.xcassets/NavigationBar/buylistButtonImage.imageset/buylistButtonImage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psven/XCFApp/b070c0999b22e5093b8b640f046934aee44ed268/XCFApp/Supporting Files/Assets.xcassets/NavigationBar/buylistButtonImage.imageset/buylistButtonImage.png -------------------------------------------------------------------------------- /XCFApp/Supporting Files/Assets.xcassets/NavigationBar/homepageCreateRecipeButton.imageset/homepageCreateRecipeButton.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psven/XCFApp/b070c0999b22e5093b8b640f046934aee44ed268/XCFApp/Supporting Files/Assets.xcassets/NavigationBar/homepageCreateRecipeButton.imageset/homepageCreateRecipeButton.png -------------------------------------------------------------------------------- /XCFApp/Supporting Files/Assets.xcassets/NavigationBar/leftPageButtonBackgroundNormal.imageset/leftPageButtonBackgroundNormal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psven/XCFApp/b070c0999b22e5093b8b640f046934aee44ed268/XCFApp/Supporting Files/Assets.xcassets/NavigationBar/leftPageButtonBackgroundNormal.imageset/leftPageButtonBackgroundNormal.png -------------------------------------------------------------------------------- /XCFApp/Supporting Files/Assets.xcassets/NavigationBar/navFindFriendsImage.imageset/navFindFriendsImage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psven/XCFApp/b070c0999b22e5093b8b640f046934aee44ed268/XCFApp/Supporting Files/Assets.xcassets/NavigationBar/navFindFriendsImage.imageset/navFindFriendsImage.png -------------------------------------------------------------------------------- /XCFApp/Supporting Files/Assets.xcassets/NavigationBar/notification.imageset/notification.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psven/XCFApp/b070c0999b22e5093b8b640f046934aee44ed268/XCFApp/Supporting Files/Assets.xcassets/NavigationBar/notification.imageset/notification.png -------------------------------------------------------------------------------- /XCFApp/Supporting Files/Assets.xcassets/NavigationBar/rightPageSetting.imageset/rightPageSetting.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psven/XCFApp/b070c0999b22e5093b8b640f046934aee44ed268/XCFApp/Supporting Files/Assets.xcassets/NavigationBar/rightPageSetting.imageset/rightPageSetting.png -------------------------------------------------------------------------------- /XCFApp/Supporting Files/Assets.xcassets/NavigationBar/shoppingCart.imageset/shoppingCart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psven/XCFApp/b070c0999b22e5093b8b640f046934aee44ed268/XCFApp/Supporting Files/Assets.xcassets/NavigationBar/shoppingCart.imageset/shoppingCart.png -------------------------------------------------------------------------------- /XCFApp/Supporting Files/Assets.xcassets/Share/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "version" : 1, 4 | "author" : "xcode" 5 | } 6 | } -------------------------------------------------------------------------------- /XCFApp/Supporting Files/Assets.xcassets/Share/share_douban.imageset/share_douban.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psven/XCFApp/b070c0999b22e5093b8b640f046934aee44ed268/XCFApp/Supporting Files/Assets.xcassets/Share/share_douban.imageset/share_douban.png -------------------------------------------------------------------------------- /XCFApp/Supporting Files/Assets.xcassets/Share/share_qq.imageset/share_qq.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psven/XCFApp/b070c0999b22e5093b8b640f046934aee44ed268/XCFApp/Supporting Files/Assets.xcassets/Share/share_qq.imageset/share_qq.png -------------------------------------------------------------------------------- /XCFApp/Supporting Files/Assets.xcassets/Share/share_qzone.imageset/share_qzone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psven/XCFApp/b070c0999b22e5093b8b640f046934aee44ed268/XCFApp/Supporting Files/Assets.xcassets/Share/share_qzone.imageset/share_qzone.png -------------------------------------------------------------------------------- /XCFApp/Supporting Files/Assets.xcassets/Share/share_weibo.imageset/share_weibo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psven/XCFApp/b070c0999b22e5093b8b640f046934aee44ed268/XCFApp/Supporting Files/Assets.xcassets/Share/share_weibo.imageset/share_weibo.png -------------------------------------------------------------------------------- /XCFApp/Supporting Files/Assets.xcassets/Share/share_weixin.imageset/share_weixin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psven/XCFApp/b070c0999b22e5093b8b640f046934aee44ed268/XCFApp/Supporting Files/Assets.xcassets/Share/share_weixin.imageset/share_weixin.png -------------------------------------------------------------------------------- /XCFApp/Supporting Files/Assets.xcassets/Share/share_weixin_friends.imageset/share_weixin_friends.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psven/XCFApp/b070c0999b22e5093b8b640f046934aee44ed268/XCFApp/Supporting Files/Assets.xcassets/Share/share_weixin_friends.imageset/share_weixin_friends.png -------------------------------------------------------------------------------- /XCFApp/Supporting Files/Assets.xcassets/Sync/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "version" : 1, 4 | "author" : "xcode" 5 | } 6 | } -------------------------------------------------------------------------------- /XCFApp/Supporting Files/Assets.xcassets/Tabbar/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "version" : 1, 4 | "author" : "xcode" 5 | } 6 | } -------------------------------------------------------------------------------- /XCFApp/Supporting Files/Assets.xcassets/Tabbar/tabADeselected.imageset/tabADeselected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psven/XCFApp/b070c0999b22e5093b8b640f046934aee44ed268/XCFApp/Supporting Files/Assets.xcassets/Tabbar/tabADeselected.imageset/tabADeselected.png -------------------------------------------------------------------------------- /XCFApp/Supporting Files/Assets.xcassets/Tabbar/tabASelected.imageset/tabASelected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psven/XCFApp/b070c0999b22e5093b8b640f046934aee44ed268/XCFApp/Supporting Files/Assets.xcassets/Tabbar/tabASelected.imageset/tabASelected.png -------------------------------------------------------------------------------- /XCFApp/Supporting Files/Assets.xcassets/Tabbar/tabBDeselected.imageset/tabBDeselected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psven/XCFApp/b070c0999b22e5093b8b640f046934aee44ed268/XCFApp/Supporting Files/Assets.xcassets/Tabbar/tabBDeselected.imageset/tabBDeselected.png -------------------------------------------------------------------------------- /XCFApp/Supporting Files/Assets.xcassets/Tabbar/tabBSelected.imageset/tabBSelected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psven/XCFApp/b070c0999b22e5093b8b640f046934aee44ed268/XCFApp/Supporting Files/Assets.xcassets/Tabbar/tabBSelected.imageset/tabBSelected.png -------------------------------------------------------------------------------- /XCFApp/Supporting Files/Assets.xcassets/Tabbar/tabCDeselected.imageset/tabCDeselected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psven/XCFApp/b070c0999b22e5093b8b640f046934aee44ed268/XCFApp/Supporting Files/Assets.xcassets/Tabbar/tabCDeselected.imageset/tabCDeselected.png -------------------------------------------------------------------------------- /XCFApp/Supporting Files/Assets.xcassets/Tabbar/tabCSelected.imageset/tabCSelected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psven/XCFApp/b070c0999b22e5093b8b640f046934aee44ed268/XCFApp/Supporting Files/Assets.xcassets/Tabbar/tabCSelected.imageset/tabCSelected.png -------------------------------------------------------------------------------- /XCFApp/Supporting Files/Assets.xcassets/Tabbar/tabDDeselected.imageset/tabDDeselected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psven/XCFApp/b070c0999b22e5093b8b640f046934aee44ed268/XCFApp/Supporting Files/Assets.xcassets/Tabbar/tabDDeselected.imageset/tabDDeselected.png -------------------------------------------------------------------------------- /XCFApp/Supporting Files/Assets.xcassets/Tabbar/tabDSelected.imageset/tabDSelected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psven/XCFApp/b070c0999b22e5093b8b640f046934aee44ed268/XCFApp/Supporting Files/Assets.xcassets/Tabbar/tabDSelected.imageset/tabDSelected.png -------------------------------------------------------------------------------- /XCFApp/Supporting Files/Assets.xcassets/addMark.imageset/addMark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psven/XCFApp/b070c0999b22e5093b8b640f046934aee44ed268/XCFApp/Supporting Files/Assets.xcassets/addMark.imageset/addMark.png -------------------------------------------------------------------------------- /XCFApp/Supporting Files/Assets.xcassets/addPhotoStyle1.imageset/addPhotoStyle1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psven/XCFApp/b070c0999b22e5093b8b640f046934aee44ed268/XCFApp/Supporting Files/Assets.xcassets/addPhotoStyle1.imageset/addPhotoStyle1.png -------------------------------------------------------------------------------- /XCFApp/Supporting Files/Assets.xcassets/addPhotoStyle2.imageset/addPhotoStyle2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psven/XCFApp/b070c0999b22e5093b8b640f046934aee44ed268/XCFApp/Supporting Files/Assets.xcassets/addPhotoStyle2.imageset/addPhotoStyle2.png -------------------------------------------------------------------------------- /XCFApp/Supporting Files/Assets.xcassets/arrow.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x" 6 | }, 7 | { 8 | "idiom" : "universal", 9 | "filename" : "arrow.png", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | }, 21 | "properties" : { 22 | "template-rendering-intent" : "original" 23 | } 24 | } -------------------------------------------------------------------------------- /XCFApp/Supporting Files/Assets.xcassets/arrow.imageset/arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psven/XCFApp/b070c0999b22e5093b8b640f046934aee44ed268/XCFApp/Supporting Files/Assets.xcassets/arrow.imageset/arrow.png -------------------------------------------------------------------------------- /XCFApp/Supporting Files/Assets.xcassets/backLogin.imageset/backLogin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psven/XCFApp/b070c0999b22e5093b8b640f046934aee44ed268/XCFApp/Supporting Files/Assets.xcassets/backLogin.imageset/backLogin.png -------------------------------------------------------------------------------- /XCFApp/Supporting Files/Assets.xcassets/bar.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x" 6 | }, 7 | { 8 | "idiom" : "universal", 9 | "filename" : "bar@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 | "properties" : { 22 | "template-rendering-intent" : "original" 23 | } 24 | } -------------------------------------------------------------------------------- /XCFApp/Supporting Files/Assets.xcassets/bar.imageset/bar@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psven/XCFApp/b070c0999b22e5093b8b640f046934aee44ed268/XCFApp/Supporting Files/Assets.xcassets/bar.imageset/bar@2x.png -------------------------------------------------------------------------------- /XCFApp/Supporting Files/Assets.xcassets/buyListRecipeButtonNormal.imageset/buyListRecipeButtonNormal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psven/XCFApp/b070c0999b22e5093b8b640f046934aee44ed268/XCFApp/Supporting Files/Assets.xcassets/buyListRecipeButtonNormal.imageset/buyListRecipeButtonNormal.png -------------------------------------------------------------------------------- /XCFApp/Supporting Files/Assets.xcassets/buyListStatButtonNormal.imageset/buyListStatButtonNormal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psven/XCFApp/b070c0999b22e5093b8b640f046934aee44ed268/XCFApp/Supporting Files/Assets.xcassets/buyListStatButtonNormal.imageset/buyListStatButtonNormal.png -------------------------------------------------------------------------------- /XCFApp/Supporting Files/Assets.xcassets/buylistIngredientStrokeThroughLine.imageset/buylistIngredientStrokeThroughLine.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psven/XCFApp/b070c0999b22e5093b8b640f046934aee44ed268/XCFApp/Supporting Files/Assets.xcassets/buylistIngredientStrokeThroughLine.imageset/buylistIngredientStrokeThroughLine.png -------------------------------------------------------------------------------- /XCFApp/Supporting Files/Assets.xcassets/camera_Magnet.imageset/camera_Magnet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psven/XCFApp/b070c0999b22e5093b8b640f046934aee44ed268/XCFApp/Supporting Files/Assets.xcassets/camera_Magnet.imageset/camera_Magnet.png -------------------------------------------------------------------------------- /XCFApp/Supporting Files/Assets.xcassets/camera_NoMagnet.imageset/camera_NoMagnet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psven/XCFApp/b070c0999b22e5093b8b640f046934aee44ed268/XCFApp/Supporting Files/Assets.xcassets/camera_NoMagnet.imageset/camera_NoMagnet.png -------------------------------------------------------------------------------- /XCFApp/Supporting Files/Assets.xcassets/camera_line.imageset/camera_line.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psven/XCFApp/b070c0999b22e5093b8b640f046934aee44ed268/XCFApp/Supporting Files/Assets.xcassets/camera_line.imageset/camera_line.png -------------------------------------------------------------------------------- /XCFApp/Supporting Files/Assets.xcassets/camera_line.imageset/camera_line@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psven/XCFApp/b070c0999b22e5093b8b640f046934aee44ed268/XCFApp/Supporting Files/Assets.xcassets/camera_line.imageset/camera_line@2x.png -------------------------------------------------------------------------------- /XCFApp/Supporting Files/Assets.xcassets/camera_line_h.imageset/camera_line_h.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psven/XCFApp/b070c0999b22e5093b8b640f046934aee44ed268/XCFApp/Supporting Files/Assets.xcassets/camera_line_h.imageset/camera_line_h.png -------------------------------------------------------------------------------- /XCFApp/Supporting Files/Assets.xcassets/camera_line_h.imageset/camera_line_h@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psven/XCFApp/b070c0999b22e5093b8b640f046934aee44ed268/XCFApp/Supporting Files/Assets.xcassets/camera_line_h.imageset/camera_line_h@2x.png -------------------------------------------------------------------------------- /XCFApp/Supporting Files/Assets.xcassets/close-1.imageset/close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psven/XCFApp/b070c0999b22e5093b8b640f046934aee44ed268/XCFApp/Supporting Files/Assets.xcassets/close-1.imageset/close.png -------------------------------------------------------------------------------- /XCFApp/Supporting Files/Assets.xcassets/close-1.imageset/close@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psven/XCFApp/b070c0999b22e5093b8b640f046934aee44ed268/XCFApp/Supporting Files/Assets.xcassets/close-1.imageset/close@2x.png -------------------------------------------------------------------------------- /XCFApp/Supporting Files/Assets.xcassets/close.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "close.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 | "properties" : { 22 | "template-rendering-intent" : "original" 23 | } 24 | } -------------------------------------------------------------------------------- /XCFApp/Supporting Files/Assets.xcassets/close.imageset/close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psven/XCFApp/b070c0999b22e5093b8b640f046934aee44ed268/XCFApp/Supporting Files/Assets.xcassets/close.imageset/close.png -------------------------------------------------------------------------------- /XCFApp/Supporting Files/Assets.xcassets/closeBlack.imageset/closeBlack.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psven/XCFApp/b070c0999b22e5093b8b640f046934aee44ed268/XCFApp/Supporting Files/Assets.xcassets/closeBlack.imageset/closeBlack.png -------------------------------------------------------------------------------- /XCFApp/Supporting Files/Assets.xcassets/closeLandscape.imageset/closeLandscape.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psven/XCFApp/b070c0999b22e5093b8b640f046934aee44ed268/XCFApp/Supporting Files/Assets.xcassets/closeLandscape.imageset/closeLandscape.png -------------------------------------------------------------------------------- /XCFApp/Supporting Files/Assets.xcassets/close_cha.imageset/close_cha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psven/XCFApp/b070c0999b22e5093b8b640f046934aee44ed268/XCFApp/Supporting Files/Assets.xcassets/close_cha.imageset/close_cha.png -------------------------------------------------------------------------------- /XCFApp/Supporting Files/Assets.xcassets/close_cha.imageset/close_cha@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psven/XCFApp/b070c0999b22e5093b8b640f046934aee44ed268/XCFApp/Supporting Files/Assets.xcassets/close_cha.imageset/close_cha@2x.png -------------------------------------------------------------------------------- /XCFApp/Supporting Files/Assets.xcassets/close_cha_h.imageset/close_cha_h.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psven/XCFApp/b070c0999b22e5093b8b640f046934aee44ed268/XCFApp/Supporting Files/Assets.xcassets/close_cha_h.imageset/close_cha_h.png -------------------------------------------------------------------------------- /XCFApp/Supporting Files/Assets.xcassets/close_cha_h.imageset/close_cha_h@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psven/XCFApp/b070c0999b22e5093b8b640f046934aee44ed268/XCFApp/Supporting Files/Assets.xcassets/close_cha_h.imageset/close_cha_h@2x.png -------------------------------------------------------------------------------- /XCFApp/Supporting Files/Assets.xcassets/comment.imageset/comment.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psven/XCFApp/b070c0999b22e5093b8b640f046934aee44ed268/XCFApp/Supporting Files/Assets.xcassets/comment.imageset/comment.png -------------------------------------------------------------------------------- /XCFApp/Supporting Files/Assets.xcassets/convenient_share_other.imageset/convenient_share_other.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psven/XCFApp/b070c0999b22e5093b8b640f046934aee44ed268/XCFApp/Supporting Files/Assets.xcassets/convenient_share_other.imageset/convenient_share_other.png -------------------------------------------------------------------------------- /XCFApp/Supporting Files/Assets.xcassets/convenient_share_pyq.imageset/convenient_share_pyq.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psven/XCFApp/b070c0999b22e5093b8b640f046934aee44ed268/XCFApp/Supporting Files/Assets.xcassets/convenient_share_pyq.imageset/convenient_share_pyq.png -------------------------------------------------------------------------------- /XCFApp/Supporting Files/Assets.xcassets/convenient_share_wx.imageset/convenient_share_wx.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psven/XCFApp/b070c0999b22e5093b8b640f046934aee44ed268/XCFApp/Supporting Files/Assets.xcassets/convenient_share_wx.imageset/convenient_share_wx.png -------------------------------------------------------------------------------- /XCFApp/Supporting Files/Assets.xcassets/creatdishicon.imageset/creatdishicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psven/XCFApp/b070c0999b22e5093b8b640f046934aee44ed268/XCFApp/Supporting Files/Assets.xcassets/creatdishicon.imageset/creatdishicon.png -------------------------------------------------------------------------------- /XCFApp/Supporting Files/Assets.xcassets/createRecipeCamera.imageset/createRecipeCamera.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psven/XCFApp/b070c0999b22e5093b8b640f046934aee44ed268/XCFApp/Supporting Files/Assets.xcassets/createRecipeCamera.imageset/createRecipeCamera.png -------------------------------------------------------------------------------- /XCFApp/Supporting Files/Assets.xcassets/createRecipeEdit.imageset/createRecipeEdit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psven/XCFApp/b070c0999b22e5093b8b640f046934aee44ed268/XCFApp/Supporting Files/Assets.xcassets/createRecipeEdit.imageset/createRecipeEdit.png -------------------------------------------------------------------------------- /XCFApp/Supporting Files/Assets.xcassets/create_dish_event_delete.imageset/create_dish_event_delete.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psven/XCFApp/b070c0999b22e5093b8b640f046934aee44ed268/XCFApp/Supporting Files/Assets.xcassets/create_dish_event_delete.imageset/create_dish_event_delete.png -------------------------------------------------------------------------------- /XCFApp/Supporting Files/Assets.xcassets/create_dish_photo_delete.imageset/create_dish_photo_delete.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psven/XCFApp/b070c0999b22e5093b8b640f046934aee44ed268/XCFApp/Supporting Files/Assets.xcassets/create_dish_photo_delete.imageset/create_dish_photo_delete.png -------------------------------------------------------------------------------- /XCFApp/Supporting Files/Assets.xcassets/createctag.imageset/createctag.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psven/XCFApp/b070c0999b22e5093b8b640f046934aee44ed268/XCFApp/Supporting Files/Assets.xcassets/createctag.imageset/createctag.png -------------------------------------------------------------------------------- /XCFApp/Supporting Files/Assets.xcassets/crossMark.imageset/crossMark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psven/XCFApp/b070c0999b22e5093b8b640f046934aee44ed268/XCFApp/Supporting Files/Assets.xcassets/crossMark.imageset/crossMark.png -------------------------------------------------------------------------------- /XCFApp/Supporting Files/Assets.xcassets/customerServiceMail.imageset/customerServiceMail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psven/XCFApp/b070c0999b22e5093b8b640f046934aee44ed268/XCFApp/Supporting Files/Assets.xcassets/customerServiceMail.imageset/customerServiceMail.png -------------------------------------------------------------------------------- /XCFApp/Supporting Files/Assets.xcassets/customerServicePhone.imageset/customerServicePhone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psven/XCFApp/b070c0999b22e5093b8b640f046934aee44ed268/XCFApp/Supporting Files/Assets.xcassets/customerServicePhone.imageset/customerServicePhone.png -------------------------------------------------------------------------------- /XCFApp/Supporting Files/Assets.xcassets/defaultUserHeader.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "defaultUserHeader.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 | } -------------------------------------------------------------------------------- /XCFApp/Supporting Files/Assets.xcassets/defaultUserHeader.imageset/defaultUserHeader.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psven/XCFApp/b070c0999b22e5093b8b640f046934aee44ed268/XCFApp/Supporting Files/Assets.xcassets/defaultUserHeader.imageset/defaultUserHeader.png -------------------------------------------------------------------------------- /XCFApp/Supporting Files/Assets.xcassets/dishPagerLike.imageset/dishPagerLike.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psven/XCFApp/b070c0999b22e5093b8b640f046934aee44ed268/XCFApp/Supporting Files/Assets.xcassets/dishPagerLike.imageset/dishPagerLike.png -------------------------------------------------------------------------------- /XCFApp/Supporting Files/Assets.xcassets/dishPagerLiked.imageset/dishPagerLiked.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psven/XCFApp/b070c0999b22e5093b8b640f046934aee44ed268/XCFApp/Supporting Files/Assets.xcassets/dishPagerLiked.imageset/dishPagerLiked.png -------------------------------------------------------------------------------- /XCFApp/Supporting Files/Assets.xcassets/ectag.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "ectag.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 | "properties" : { 22 | "template-rendering-intent" : "original" 23 | } 24 | } -------------------------------------------------------------------------------- /XCFApp/Supporting Files/Assets.xcassets/ectag.imageset/ectag.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psven/XCFApp/b070c0999b22e5093b8b640f046934aee44ed268/XCFApp/Supporting Files/Assets.xcassets/ectag.imageset/ectag.png -------------------------------------------------------------------------------- /XCFApp/Supporting Files/Assets.xcassets/error.imageset/error.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psven/XCFApp/b070c0999b22e5093b8b640f046934aee44ed268/XCFApp/Supporting Files/Assets.xcassets/error.imageset/error.png -------------------------------------------------------------------------------- /XCFApp/Supporting Files/Assets.xcassets/feedsNoFriends.imageset/feedsNoFriends.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psven/XCFApp/b070c0999b22e5093b8b640f046934aee44ed268/XCFApp/Supporting Files/Assets.xcassets/feedsNoFriends.imageset/feedsNoFriends.png -------------------------------------------------------------------------------- /XCFApp/Supporting Files/Assets.xcassets/feedsNoFriendsIcon.imageset/feedsNoFriendsIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psven/XCFApp/b070c0999b22e5093b8b640f046934aee44ed268/XCFApp/Supporting Files/Assets.xcassets/feedsNoFriendsIcon.imageset/feedsNoFriendsIcon.png -------------------------------------------------------------------------------- /XCFApp/Supporting Files/Assets.xcassets/feedsNotLogin.imageset/feedsNotLogin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psven/XCFApp/b070c0999b22e5093b8b640f046934aee44ed268/XCFApp/Supporting Files/Assets.xcassets/feedsNotLogin.imageset/feedsNotLogin.png -------------------------------------------------------------------------------- /XCFApp/Supporting Files/Assets.xcassets/feedsNotLoginIcon.imageset/feedsNotLoginIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psven/XCFApp/b070c0999b22e5093b8b640f046934aee44ed268/XCFApp/Supporting Files/Assets.xcassets/feedsNotLoginIcon.imageset/feedsNotLoginIcon.png -------------------------------------------------------------------------------- /XCFApp/Supporting Files/Assets.xcassets/flashing_auto.imageset/flashing_auto.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psven/XCFApp/b070c0999b22e5093b8b640f046934aee44ed268/XCFApp/Supporting Files/Assets.xcassets/flashing_auto.imageset/flashing_auto.png -------------------------------------------------------------------------------- /XCFApp/Supporting Files/Assets.xcassets/flashing_auto.imageset/flashing_auto@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psven/XCFApp/b070c0999b22e5093b8b640f046934aee44ed268/XCFApp/Supporting Files/Assets.xcassets/flashing_auto.imageset/flashing_auto@2x.png -------------------------------------------------------------------------------- /XCFApp/Supporting Files/Assets.xcassets/flashing_off.imageset/flashing_off.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psven/XCFApp/b070c0999b22e5093b8b640f046934aee44ed268/XCFApp/Supporting Files/Assets.xcassets/flashing_off.imageset/flashing_off.png -------------------------------------------------------------------------------- /XCFApp/Supporting Files/Assets.xcassets/flashing_off.imageset/flashing_off@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psven/XCFApp/b070c0999b22e5093b8b640f046934aee44ed268/XCFApp/Supporting Files/Assets.xcassets/flashing_off.imageset/flashing_off@2x.png -------------------------------------------------------------------------------- /XCFApp/Supporting Files/Assets.xcassets/flashing_on.imageset/flashing_on.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psven/XCFApp/b070c0999b22e5093b8b640f046934aee44ed268/XCFApp/Supporting Files/Assets.xcassets/flashing_on.imageset/flashing_on.png -------------------------------------------------------------------------------- /XCFApp/Supporting Files/Assets.xcassets/flashing_on.imageset/flashing_on@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psven/XCFApp/b070c0999b22e5093b8b640f046934aee44ed268/XCFApp/Supporting Files/Assets.xcassets/flashing_on.imageset/flashing_on@2x.png -------------------------------------------------------------------------------- /XCFApp/Supporting Files/Assets.xcassets/goodsReviewBackground.imageset/goodsReviewBackground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psven/XCFApp/b070c0999b22e5093b8b640f046934aee44ed268/XCFApp/Supporting Files/Assets.xcassets/goodsReviewBackground.imageset/goodsReviewBackground.png -------------------------------------------------------------------------------- /XCFApp/Supporting Files/Assets.xcassets/goodsReviewQrHelp.imageset/goodsReviewQrHelp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psven/XCFApp/b070c0999b22e5093b8b640f046934aee44ed268/XCFApp/Supporting Files/Assets.xcassets/goodsReviewQrHelp.imageset/goodsReviewQrHelp.png -------------------------------------------------------------------------------- /XCFApp/Supporting Files/Assets.xcassets/goodsReviewShareHat.imageset/goodsReviewShareHat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psven/XCFApp/b070c0999b22e5093b8b640f046934aee44ed268/XCFApp/Supporting Files/Assets.xcassets/goodsReviewShareHat.imageset/goodsReviewShareHat.png -------------------------------------------------------------------------------- /XCFApp/Supporting Files/Assets.xcassets/goodsReviewStarDisabled.imageset/goodsReviewStarDisabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psven/XCFApp/b070c0999b22e5093b8b640f046934aee44ed268/XCFApp/Supporting Files/Assets.xcassets/goodsReviewStarDisabled.imageset/goodsReviewStarDisabled.png -------------------------------------------------------------------------------- /XCFApp/Supporting Files/Assets.xcassets/goodsReviewStarEnabled.imageset/goodsReviewStarEnabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psven/XCFApp/b070c0999b22e5093b8b640f046934aee44ed268/XCFApp/Supporting Files/Assets.xcassets/goodsReviewStarEnabled.imageset/goodsReviewStarEnabled.png -------------------------------------------------------------------------------- /XCFApp/Supporting Files/Assets.xcassets/goodsReviewTextRoundedBg.imageset/goodsReviewTextRoundedBg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psven/XCFApp/b070c0999b22e5093b8b640f046934aee44ed268/XCFApp/Supporting Files/Assets.xcassets/goodsReviewTextRoundedBg.imageset/goodsReviewTextRoundedBg.png -------------------------------------------------------------------------------- /XCFApp/Supporting Files/Assets.xcassets/goodsReviewTextRoundedBg.imageset/goodsReviewTextRoundedBg@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psven/XCFApp/b070c0999b22e5093b8b640f046934aee44ed268/XCFApp/Supporting Files/Assets.xcassets/goodsReviewTextRoundedBg.imageset/goodsReviewTextRoundedBg@2x.png -------------------------------------------------------------------------------- /XCFApp/Supporting Files/Assets.xcassets/grayBg.imageset/grayBg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psven/XCFApp/b070c0999b22e5093b8b640f046934aee44ed268/XCFApp/Supporting Files/Assets.xcassets/grayBg.imageset/grayBg.png -------------------------------------------------------------------------------- /XCFApp/Supporting Files/Assets.xcassets/handleButtonBackgroundSelected.imageset/handleButtonBackgroundSelected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psven/XCFApp/b070c0999b22e5093b8b640f046934aee44ed268/XCFApp/Supporting Files/Assets.xcassets/handleButtonBackgroundSelected.imageset/handleButtonBackgroundSelected.png -------------------------------------------------------------------------------- /XCFApp/Supporting Files/Assets.xcassets/homeECBannerFresh.imageset/homeECBannerFresh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psven/XCFApp/b070c0999b22e5093b8b640f046934aee44ed268/XCFApp/Supporting Files/Assets.xcassets/homeECBannerFresh.imageset/homeECBannerFresh.png -------------------------------------------------------------------------------- /XCFApp/Supporting Files/Assets.xcassets/imagePreviewClose.imageset/imagePreviewClose.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psven/XCFApp/b070c0999b22e5093b8b640f046934aee44ed268/XCFApp/Supporting Files/Assets.xcassets/imagePreviewClose.imageset/imagePreviewClose.png -------------------------------------------------------------------------------- /XCFApp/Supporting Files/Assets.xcassets/isEssentialIcon.imageset/isEssentialIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psven/XCFApp/b070c0999b22e5093b8b640f046934aee44ed268/XCFApp/Supporting Files/Assets.xcassets/isEssentialIcon.imageset/isEssentialIcon.png -------------------------------------------------------------------------------- /XCFApp/Supporting Files/Assets.xcassets/isStickedIcon.imageset/isStickedIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psven/XCFApp/b070c0999b22e5093b8b640f046934aee44ed268/XCFApp/Supporting Files/Assets.xcassets/isStickedIcon.imageset/isStickedIcon.png -------------------------------------------------------------------------------- /XCFApp/Supporting Files/Assets.xcassets/jam.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "jam.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 | "properties" : { 22 | "template-rendering-intent" : "original" 23 | } 24 | } -------------------------------------------------------------------------------- /XCFApp/Supporting Files/Assets.xcassets/jam.imageset/jam.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psven/XCFApp/b070c0999b22e5093b8b640f046934aee44ed268/XCFApp/Supporting Files/Assets.xcassets/jam.imageset/jam.png -------------------------------------------------------------------------------- /XCFApp/Supporting Files/Assets.xcassets/jamFilter1.imageset/jamFilter1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psven/XCFApp/b070c0999b22e5093b8b640f046934aee44ed268/XCFApp/Supporting Files/Assets.xcassets/jamFilter1.imageset/jamFilter1.png -------------------------------------------------------------------------------- /XCFApp/Supporting Files/Assets.xcassets/jamFilter2.imageset/jamFilter2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psven/XCFApp/b070c0999b22e5093b8b640f046934aee44ed268/XCFApp/Supporting Files/Assets.xcassets/jamFilter2.imageset/jamFilter2.png -------------------------------------------------------------------------------- /XCFApp/Supporting Files/Assets.xcassets/lemon.imageset/lemon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psven/XCFApp/b070c0999b22e5093b8b640f046934aee44ed268/XCFApp/Supporting Files/Assets.xcassets/lemon.imageset/lemon.png -------------------------------------------------------------------------------- /XCFApp/Supporting Files/Assets.xcassets/lemonFilter1.imageset/lemonFilter1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psven/XCFApp/b070c0999b22e5093b8b640f046934aee44ed268/XCFApp/Supporting Files/Assets.xcassets/lemonFilter1.imageset/lemonFilter1.png -------------------------------------------------------------------------------- /XCFApp/Supporting Files/Assets.xcassets/like.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "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 | "properties" : { 22 | "template-rendering-intent" : "original" 23 | } 24 | } -------------------------------------------------------------------------------- /XCFApp/Supporting Files/Assets.xcassets/like.imageset/like.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psven/XCFApp/b070c0999b22e5093b8b640f046934aee44ed268/XCFApp/Supporting Files/Assets.xcassets/like.imageset/like.png -------------------------------------------------------------------------------- /XCFApp/Supporting Files/Assets.xcassets/likeSmall.imageset/likeSmall.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psven/XCFApp/b070c0999b22e5093b8b640f046934aee44ed268/XCFApp/Supporting Files/Assets.xcassets/likeSmall.imageset/likeSmall.png -------------------------------------------------------------------------------- /XCFApp/Supporting Files/Assets.xcassets/liked.imageset/liked.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psven/XCFApp/b070c0999b22e5093b8b640f046934aee44ed268/XCFApp/Supporting Files/Assets.xcassets/liked.imageset/liked.png -------------------------------------------------------------------------------- /XCFApp/Supporting Files/Assets.xcassets/likedSmall.imageset/likedSmall.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psven/XCFApp/b070c0999b22e5093b8b640f046934aee44ed268/XCFApp/Supporting Files/Assets.xcassets/likedSmall.imageset/likedSmall.png -------------------------------------------------------------------------------- /XCFApp/Supporting Files/Assets.xcassets/login_bg.imageset/login_bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psven/XCFApp/b070c0999b22e5093b8b640f046934aee44ed268/XCFApp/Supporting Files/Assets.xcassets/login_bg.imageset/login_bg.png -------------------------------------------------------------------------------- /XCFApp/Supporting Files/Assets.xcassets/logo.imageset/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psven/XCFApp/b070c0999b22e5093b8b640f046934aee44ed268/XCFApp/Supporting Files/Assets.xcassets/logo.imageset/logo.png -------------------------------------------------------------------------------- /XCFApp/Supporting Files/Assets.xcassets/logo.imageset/logo@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psven/XCFApp/b070c0999b22e5093b8b640f046934aee44ed268/XCFApp/Supporting Files/Assets.xcassets/logo.imageset/logo@2x.png -------------------------------------------------------------------------------- /XCFApp/Supporting Files/Assets.xcassets/lookup.imageset/lookup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psven/XCFApp/b070c0999b22e5093b8b640f046934aee44ed268/XCFApp/Supporting Files/Assets.xcassets/lookup.imageset/lookup.png -------------------------------------------------------------------------------- /XCFApp/Supporting Files/Assets.xcassets/lookup_amatorka.imageset/lookup_amatorka.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psven/XCFApp/b070c0999b22e5093b8b640f046934aee44ed268/XCFApp/Supporting Files/Assets.xcassets/lookup_amatorka.imageset/lookup_amatorka.png -------------------------------------------------------------------------------- /XCFApp/Supporting Files/Assets.xcassets/lookup_miss_etikate.imageset/lookup_miss_etikate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psven/XCFApp/b070c0999b22e5093b8b640f046934aee44ed268/XCFApp/Supporting Files/Assets.xcassets/lookup_miss_etikate.imageset/lookup_miss_etikate.png -------------------------------------------------------------------------------- /XCFApp/Supporting Files/Assets.xcassets/lookup_soft_elegance_1.imageset/lookup_soft_elegance_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psven/XCFApp/b070c0999b22e5093b8b640f046934aee44ed268/XCFApp/Supporting Files/Assets.xcassets/lookup_soft_elegance_1.imageset/lookup_soft_elegance_1.png -------------------------------------------------------------------------------- /XCFApp/Supporting Files/Assets.xcassets/lookup_soft_elegance_2.imageset/lookup_soft_elegance_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psven/XCFApp/b070c0999b22e5093b8b640f046934aee44ed268/XCFApp/Supporting Files/Assets.xcassets/lookup_soft_elegance_2.imageset/lookup_soft_elegance_2.png -------------------------------------------------------------------------------- /XCFApp/Supporting Files/Assets.xcassets/nearby.imageset/nearby.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psven/XCFApp/b070c0999b22e5093b8b640f046934aee44ed268/XCFApp/Supporting Files/Assets.xcassets/nearby.imageset/nearby.png -------------------------------------------------------------------------------- /XCFApp/Supporting Files/Assets.xcassets/newRecipeListPicFrame.imageset/newRecipeListPicFrame.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psven/XCFApp/b070c0999b22e5093b8b640f046934aee44ed268/XCFApp/Supporting Files/Assets.xcassets/newRecipeListPicFrame.imageset/newRecipeListPicFrame.png -------------------------------------------------------------------------------- /XCFApp/Supporting Files/Assets.xcassets/noneFeedBackground.imageset/noneFeedBackground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psven/XCFApp/b070c0999b22e5093b8b640f046934aee44ed268/XCFApp/Supporting Files/Assets.xcassets/noneFeedBackground.imageset/noneFeedBackground.png -------------------------------------------------------------------------------- /XCFApp/Supporting Files/Assets.xcassets/origin.imageset/origin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psven/XCFApp/b070c0999b22e5093b8b640f046934aee44ed268/XCFApp/Supporting Files/Assets.xcassets/origin.imageset/origin.png -------------------------------------------------------------------------------- /XCFApp/Supporting Files/Assets.xcassets/paymentAlipay.imageset/paymentAlipay.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psven/XCFApp/b070c0999b22e5093b8b640f046934aee44ed268/XCFApp/Supporting Files/Assets.xcassets/paymentAlipay.imageset/paymentAlipay.png -------------------------------------------------------------------------------- /XCFApp/Supporting Files/Assets.xcassets/paymentWechat.imageset/paymentWechat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psven/XCFApp/b070c0999b22e5093b8b640f046934aee44ed268/XCFApp/Supporting Files/Assets.xcassets/paymentWechat.imageset/paymentWechat.png -------------------------------------------------------------------------------- /XCFApp/Supporting Files/Assets.xcassets/phoneBindIcon.imageset/phoneBindIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psven/XCFApp/b070c0999b22e5093b8b640f046934aee44ed268/XCFApp/Supporting Files/Assets.xcassets/phoneBindIcon.imageset/phoneBindIcon.png -------------------------------------------------------------------------------- /XCFApp/Supporting Files/Assets.xcassets/playButton.imageset/playButton.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psven/XCFApp/b070c0999b22e5093b8b640f046934aee44ed268/XCFApp/Supporting Files/Assets.xcassets/playButton.imageset/playButton.png -------------------------------------------------------------------------------- /XCFApp/Supporting Files/Assets.xcassets/plusIcon.imageset/plusIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psven/XCFApp/b070c0999b22e5093b8b640f046934aee44ed268/XCFApp/Supporting Files/Assets.xcassets/plusIcon.imageset/plusIcon.png -------------------------------------------------------------------------------- /XCFApp/Supporting Files/Assets.xcassets/pudding.imageset/pudding.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psven/XCFApp/b070c0999b22e5093b8b640f046934aee44ed268/XCFApp/Supporting Files/Assets.xcassets/pudding.imageset/pudding.png -------------------------------------------------------------------------------- /XCFApp/Supporting Files/Assets.xcassets/puddingFilter1.imageset/puddingFilter1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psven/XCFApp/b070c0999b22e5093b8b640f046934aee44ed268/XCFApp/Supporting Files/Assets.xcassets/puddingFilter1.imageset/puddingFilter1.png -------------------------------------------------------------------------------- /XCFApp/Supporting Files/Assets.xcassets/purchaseIngOneClick.imageset/purchaseIngOneClick.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psven/XCFApp/b070c0999b22e5093b8b640f046934aee44ed268/XCFApp/Supporting Files/Assets.xcassets/purchaseIngOneClick.imageset/purchaseIngOneClick.png -------------------------------------------------------------------------------- /XCFApp/Supporting Files/Assets.xcassets/qqicon.imageset/qqicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psven/XCFApp/b070c0999b22e5093b8b640f046934aee44ed268/XCFApp/Supporting Files/Assets.xcassets/qqicon.imageset/qqicon.png -------------------------------------------------------------------------------- /XCFApp/Supporting Files/Assets.xcassets/recipeDelete.imageset/recipeDelete.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psven/XCFApp/b070c0999b22e5093b8b640f046934aee44ed268/XCFApp/Supporting Files/Assets.xcassets/recipeDelete.imageset/recipeDelete.png -------------------------------------------------------------------------------- /XCFApp/Supporting Files/Assets.xcassets/recipeDetailPortraitCameraIcon.imageset/recipeDetailPortraitCameraIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psven/XCFApp/b070c0999b22e5093b8b640f046934aee44ed268/XCFApp/Supporting Files/Assets.xcassets/recipeDetailPortraitCameraIcon.imageset/recipeDetailPortraitCameraIcon.png -------------------------------------------------------------------------------- /XCFApp/Supporting Files/Assets.xcassets/recipeDraftEdit.imageset/recipeDraftEdit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psven/XCFApp/b070c0999b22e5093b8b640f046934aee44ed268/XCFApp/Supporting Files/Assets.xcassets/recipeDraftEdit.imageset/recipeDraftEdit.png -------------------------------------------------------------------------------- /XCFApp/Supporting Files/Assets.xcassets/recipeListBorder.imageset/recipeListBorder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psven/XCFApp/b070c0999b22e5093b8b640f046934aee44ed268/XCFApp/Supporting Files/Assets.xcassets/recipeListBorder.imageset/recipeListBorder.png -------------------------------------------------------------------------------- /XCFApp/Supporting Files/Assets.xcassets/refresh.imageset/refresh@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psven/XCFApp/b070c0999b22e5093b8b640f046934aee44ed268/XCFApp/Supporting Files/Assets.xcassets/refresh.imageset/refresh@2x.png -------------------------------------------------------------------------------- /XCFApp/Supporting Files/Assets.xcassets/refresh_click.imageset/refresh_click@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psven/XCFApp/b070c0999b22e5093b8b640f046934aee44ed268/XCFApp/Supporting Files/Assets.xcassets/refresh_click.imageset/refresh_click@2x.png -------------------------------------------------------------------------------- /XCFApp/Supporting Files/Assets.xcassets/reportIcon.imageset/reportIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psven/XCFApp/b070c0999b22e5093b8b640f046934aee44ed268/XCFApp/Supporting Files/Assets.xcassets/reportIcon.imageset/reportIcon.png -------------------------------------------------------------------------------- /XCFApp/Supporting Files/Assets.xcassets/reportIcongray.imageset/reportIcongray.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psven/XCFApp/b070c0999b22e5093b8b640f046934aee44ed268/XCFApp/Supporting Files/Assets.xcassets/reportIcongray.imageset/reportIcongray.png -------------------------------------------------------------------------------- /XCFApp/Supporting Files/Assets.xcassets/rotateGuide.imageset/rotateGuide.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psven/XCFApp/b070c0999b22e5093b8b640f046934aee44ed268/XCFApp/Supporting Files/Assets.xcassets/rotateGuide.imageset/rotateGuide.png -------------------------------------------------------------------------------- /XCFApp/Supporting Files/Assets.xcassets/save_icon.imageset/save_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psven/XCFApp/b070c0999b22e5093b8b640f046934aee44ed268/XCFApp/Supporting Files/Assets.xcassets/save_icon.imageset/save_icon.png -------------------------------------------------------------------------------- /XCFApp/Supporting Files/Assets.xcassets/save_icon.imageset/save_icon@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psven/XCFApp/b070c0999b22e5093b8b640f046934aee44ed268/XCFApp/Supporting Files/Assets.xcassets/save_icon.imageset/save_icon@2x.png -------------------------------------------------------------------------------- /XCFApp/Supporting Files/Assets.xcassets/save_icon_highlighted.imageset/save_icon_highlighted.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psven/XCFApp/b070c0999b22e5093b8b640f046934aee44ed268/XCFApp/Supporting Files/Assets.xcassets/save_icon_highlighted.imageset/save_icon_highlighted.png -------------------------------------------------------------------------------- /XCFApp/Supporting Files/Assets.xcassets/save_icon_highlighted.imageset/save_icon_highlighted@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psven/XCFApp/b070c0999b22e5093b8b640f046934aee44ed268/XCFApp/Supporting Files/Assets.xcassets/save_icon_highlighted.imageset/save_icon_highlighted@2x.png -------------------------------------------------------------------------------- /XCFApp/Supporting Files/Assets.xcassets/searchIcon.imageset/searchIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psven/XCFApp/b070c0999b22e5093b8b640f046934aee44ed268/XCFApp/Supporting Files/Assets.xcassets/searchIcon.imageset/searchIcon.png -------------------------------------------------------------------------------- /XCFApp/Supporting Files/Assets.xcassets/seperator.imageset/seperator.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psven/XCFApp/b070c0999b22e5093b8b640f046934aee44ed268/XCFApp/Supporting Files/Assets.xcassets/seperator.imageset/seperator.png -------------------------------------------------------------------------------- /XCFApp/Supporting Files/Assets.xcassets/sexualitySegmentButtonSelected.imageset/sexualitySegmentButtonSelected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psven/XCFApp/b070c0999b22e5093b8b640f046934aee44ed268/XCFApp/Supporting Files/Assets.xcassets/sexualitySegmentButtonSelected.imageset/sexualitySegmentButtonSelected.png -------------------------------------------------------------------------------- /XCFApp/Supporting Files/Assets.xcassets/shareAppIcon.imageset/shareAppIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psven/XCFApp/b070c0999b22e5093b8b640f046934aee44ed268/XCFApp/Supporting Files/Assets.xcassets/shareAppIcon.imageset/shareAppIcon.png -------------------------------------------------------------------------------- /XCFApp/Supporting Files/Assets.xcassets/shareIcon.imageset/shareIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psven/XCFApp/b070c0999b22e5093b8b640f046934aee44ed268/XCFApp/Supporting Files/Assets.xcassets/shareIcon.imageset/shareIcon.png -------------------------------------------------------------------------------- /XCFApp/Supporting Files/Assets.xcassets/shopIcon.imageset/shopIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psven/XCFApp/b070c0999b22e5093b8b640f046934aee44ed268/XCFApp/Supporting Files/Assets.xcassets/shopIcon.imageset/shopIcon.png -------------------------------------------------------------------------------- /XCFApp/Supporting Files/Assets.xcassets/shop_icon.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "ff824140838911e5907ee0db5512b208.png@2o_50sh_1pr_1l_1wh.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 | } -------------------------------------------------------------------------------- /XCFApp/Supporting Files/Assets.xcassets/shop_icon.imageset/ff824140838911e5907ee0db5512b208.png@2o_50sh_1pr_1l_1wh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psven/XCFApp/b070c0999b22e5093b8b640f046934aee44ed268/XCFApp/Supporting Files/Assets.xcassets/shop_icon.imageset/ff824140838911e5907ee0db5512b208.png@2o_50sh_1pr_1l_1wh.png -------------------------------------------------------------------------------- /XCFApp/Supporting Files/Assets.xcassets/shortcutItemSearch.imageset/shortcutItemSearch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psven/XCFApp/b070c0999b22e5093b8b640f046934aee44ed268/XCFApp/Supporting Files/Assets.xcassets/shortcutItemSearch.imageset/shortcutItemSearch.png -------------------------------------------------------------------------------- /XCFApp/Supporting Files/Assets.xcassets/shortcutItemSearch.imageset/shortcutItemSearch@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psven/XCFApp/b070c0999b22e5093b8b640f046934aee44ed268/XCFApp/Supporting Files/Assets.xcassets/shortcutItemSearch.imageset/shortcutItemSearch@2x.png -------------------------------------------------------------------------------- /XCFApp/Supporting Files/Assets.xcassets/shortcutitemfavourite.imageset/shortcutitemfavourite.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psven/XCFApp/b070c0999b22e5093b8b640f046934aee44ed268/XCFApp/Supporting Files/Assets.xcassets/shortcutitemfavourite.imageset/shortcutitemfavourite.png -------------------------------------------------------------------------------- /XCFApp/Supporting Files/Assets.xcassets/shortcutitemfavourite.imageset/shortcutitemfavourite@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psven/XCFApp/b070c0999b22e5093b8b640f046934aee44ed268/XCFApp/Supporting Files/Assets.xcassets/shortcutitemfavourite.imageset/shortcutitemfavourite@2x.png -------------------------------------------------------------------------------- /XCFApp/Supporting Files/Assets.xcassets/shortcutitemupload.imageset/shortcutitemupload.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psven/XCFApp/b070c0999b22e5093b8b640f046934aee44ed268/XCFApp/Supporting Files/Assets.xcassets/shortcutitemupload.imageset/shortcutitemupload.png -------------------------------------------------------------------------------- /XCFApp/Supporting Files/Assets.xcassets/shortcutitemupload.imageset/shortcutitemupload@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psven/XCFApp/b070c0999b22e5093b8b640f046934aee44ed268/XCFApp/Supporting Files/Assets.xcassets/shortcutitemupload.imageset/shortcutitemupload@2x.png -------------------------------------------------------------------------------- /XCFApp/Supporting Files/Assets.xcassets/shot.imageset/shot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psven/XCFApp/b070c0999b22e5093b8b640f046934aee44ed268/XCFApp/Supporting Files/Assets.xcassets/shot.imageset/shot.png -------------------------------------------------------------------------------- /XCFApp/Supporting Files/Assets.xcassets/shot.imageset/shot@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psven/XCFApp/b070c0999b22e5093b8b640f046934aee44ed268/XCFApp/Supporting Files/Assets.xcassets/shot.imageset/shot@2x.png -------------------------------------------------------------------------------- /XCFApp/Supporting Files/Assets.xcassets/shot_h.imageset/shot_h.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psven/XCFApp/b070c0999b22e5093b8b640f046934aee44ed268/XCFApp/Supporting Files/Assets.xcassets/shot_h.imageset/shot_h.png -------------------------------------------------------------------------------- /XCFApp/Supporting Files/Assets.xcassets/shot_h.imageset/shot_h@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psven/XCFApp/b070c0999b22e5093b8b640f046934aee44ed268/XCFApp/Supporting Files/Assets.xcassets/shot_h.imageset/shot_h@2x.png -------------------------------------------------------------------------------- /XCFApp/Supporting Files/Assets.xcassets/shutdown.imageset/shutdown@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psven/XCFApp/b070c0999b22e5093b8b640f046934aee44ed268/XCFApp/Supporting Files/Assets.xcassets/shutdown.imageset/shutdown@2x.png -------------------------------------------------------------------------------- /XCFApp/Supporting Files/Assets.xcassets/shutdown_click.imageset/shutdown_click@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psven/XCFApp/b070c0999b22e5093b8b640f046934aee44ed268/XCFApp/Supporting Files/Assets.xcassets/shutdown_click.imageset/shutdown_click@2x.png -------------------------------------------------------------------------------- /XCFApp/Supporting Files/Assets.xcassets/singleSelectDefaultMark.imageset/singleSelectDefaultMark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psven/XCFApp/b070c0999b22e5093b8b640f046934aee44ed268/XCFApp/Supporting Files/Assets.xcassets/singleSelectDefaultMark.imageset/singleSelectDefaultMark.png -------------------------------------------------------------------------------- /XCFApp/Supporting Files/Assets.xcassets/singleSelectedCheckedIcon.imageset/singleSelectedCheckedIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psven/XCFApp/b070c0999b22e5093b8b640f046934aee44ed268/XCFApp/Supporting Files/Assets.xcassets/singleSelectedCheckedIcon.imageset/singleSelectedCheckedIcon.png -------------------------------------------------------------------------------- /XCFApp/Supporting Files/Assets.xcassets/stepperAddDisabled.imageset/stepperAddDisabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psven/XCFApp/b070c0999b22e5093b8b640f046934aee44ed268/XCFApp/Supporting Files/Assets.xcassets/stepperAddDisabled.imageset/stepperAddDisabled.png -------------------------------------------------------------------------------- /XCFApp/Supporting Files/Assets.xcassets/stepperAddEnabled.imageset/stepperAddEnabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psven/XCFApp/b070c0999b22e5093b8b640f046934aee44ed268/XCFApp/Supporting Files/Assets.xcassets/stepperAddEnabled.imageset/stepperAddEnabled.png -------------------------------------------------------------------------------- /XCFApp/Supporting Files/Assets.xcassets/stepperMinusDisabled.imageset/stepperMinusDisabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psven/XCFApp/b070c0999b22e5093b8b640f046934aee44ed268/XCFApp/Supporting Files/Assets.xcassets/stepperMinusDisabled.imageset/stepperMinusDisabled.png -------------------------------------------------------------------------------- /XCFApp/Supporting Files/Assets.xcassets/stepperMinusEnabled.imageset/stepperMinusEnabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psven/XCFApp/b070c0999b22e5093b8b640f046934aee44ed268/XCFApp/Supporting Files/Assets.xcassets/stepperMinusEnabled.imageset/stepperMinusEnabled.png -------------------------------------------------------------------------------- /XCFApp/Supporting Files/Assets.xcassets/strawberry.imageset/strawberry.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psven/XCFApp/b070c0999b22e5093b8b640f046934aee44ed268/XCFApp/Supporting Files/Assets.xcassets/strawberry.imageset/strawberry.png -------------------------------------------------------------------------------- /XCFApp/Supporting Files/Assets.xcassets/strawberryFilter1.imageset/strawberryFilter1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psven/XCFApp/b070c0999b22e5093b8b640f046934aee44ed268/XCFApp/Supporting Files/Assets.xcassets/strawberryFilter1.imageset/strawberryFilter1.png -------------------------------------------------------------------------------- /XCFApp/Supporting Files/Assets.xcassets/strawberryFilter2.imageset/strawberryFilter2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psven/XCFApp/b070c0999b22e5093b8b640f046934aee44ed268/XCFApp/Supporting Files/Assets.xcassets/strawberryFilter2.imageset/strawberryFilter2.png -------------------------------------------------------------------------------- /XCFApp/Supporting Files/Assets.xcassets/success.imageset/success.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psven/XCFApp/b070c0999b22e5093b8b640f046934aee44ed268/XCFApp/Supporting Files/Assets.xcassets/success.imageset/success.png -------------------------------------------------------------------------------- /XCFApp/Supporting Files/Assets.xcassets/switch_camera.imageset/switch_camera.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psven/XCFApp/b070c0999b22e5093b8b640f046934aee44ed268/XCFApp/Supporting Files/Assets.xcassets/switch_camera.imageset/switch_camera.png -------------------------------------------------------------------------------- /XCFApp/Supporting Files/Assets.xcassets/switch_camera.imageset/switch_camera@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psven/XCFApp/b070c0999b22e5093b8b640f046934aee44ed268/XCFApp/Supporting Files/Assets.xcassets/switch_camera.imageset/switch_camera@2x.png -------------------------------------------------------------------------------- /XCFApp/Supporting Files/Assets.xcassets/switch_camera_h.imageset/switch_camera_h.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psven/XCFApp/b070c0999b22e5093b8b640f046934aee44ed268/XCFApp/Supporting Files/Assets.xcassets/switch_camera_h.imageset/switch_camera_h.png -------------------------------------------------------------------------------- /XCFApp/Supporting Files/Assets.xcassets/switch_camera_h.imageset/switch_camera_h@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psven/XCFApp/b070c0999b22e5093b8b640f046934aee44ed268/XCFApp/Supporting Files/Assets.xcassets/switch_camera_h.imageset/switch_camera_h@2x.png -------------------------------------------------------------------------------- /XCFApp/Supporting Files/Assets.xcassets/themeBigPicForBreakfast.imageset/themeBigPicForBreakfast.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psven/XCFApp/b070c0999b22e5093b8b640f046934aee44ed268/XCFApp/Supporting Files/Assets.xcassets/themeBigPicForBreakfast.imageset/themeBigPicForBreakfast.png -------------------------------------------------------------------------------- /XCFApp/Supporting Files/Assets.xcassets/themeBigPicForLaunch.imageset/themeBigPicForLaunch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psven/XCFApp/b070c0999b22e5093b8b640f046934aee44ed268/XCFApp/Supporting Files/Assets.xcassets/themeBigPicForLaunch.imageset/themeBigPicForLaunch.png -------------------------------------------------------------------------------- /XCFApp/Supporting Files/Assets.xcassets/themeBigPicForSupper.imageset/themeBigPicForSupper.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psven/XCFApp/b070c0999b22e5093b8b640f046934aee44ed268/XCFApp/Supporting Files/Assets.xcassets/themeBigPicForSupper.imageset/themeBigPicForSupper.png -------------------------------------------------------------------------------- /XCFApp/Supporting Files/Assets.xcassets/themeSmallPicForBreakfast.imageset/themeSmallPicForBreakfast.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psven/XCFApp/b070c0999b22e5093b8b640f046934aee44ed268/XCFApp/Supporting Files/Assets.xcassets/themeSmallPicForBreakfast.imageset/themeSmallPicForBreakfast.png -------------------------------------------------------------------------------- /XCFApp/Supporting Files/Assets.xcassets/themeSmallPicForLaunch.imageset/themeSmallPicForLaunch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psven/XCFApp/b070c0999b22e5093b8b640f046934aee44ed268/XCFApp/Supporting Files/Assets.xcassets/themeSmallPicForLaunch.imageset/themeSmallPicForLaunch.png -------------------------------------------------------------------------------- /XCFApp/Supporting Files/Assets.xcassets/themeSmallPicForOthers.imageset/themeSmallPicForOthers.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psven/XCFApp/b070c0999b22e5093b8b640f046934aee44ed268/XCFApp/Supporting Files/Assets.xcassets/themeSmallPicForOthers.imageset/themeSmallPicForOthers.png -------------------------------------------------------------------------------- /XCFApp/Supporting Files/Assets.xcassets/themeSmallPicForSupper.imageset/themeSmallPicForSupper.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psven/XCFApp/b070c0999b22e5093b8b640f046934aee44ed268/XCFApp/Supporting Files/Assets.xcassets/themeSmallPicForSupper.imageset/themeSmallPicForSupper.png -------------------------------------------------------------------------------- /XCFApp/Supporting Files/Assets.xcassets/topicTrangle.imageset/topicTrangle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psven/XCFApp/b070c0999b22e5093b8b640f046934aee44ed268/XCFApp/Supporting Files/Assets.xcassets/topicTrangle.imageset/topicTrangle.png -------------------------------------------------------------------------------- /XCFApp/Supporting Files/Assets.xcassets/touch_focus.imageset/touch_focus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psven/XCFApp/b070c0999b22e5093b8b640f046934aee44ed268/XCFApp/Supporting Files/Assets.xcassets/touch_focus.imageset/touch_focus.png -------------------------------------------------------------------------------- /XCFApp/Supporting Files/Assets.xcassets/touch_focus.imageset/touch_focus@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psven/XCFApp/b070c0999b22e5093b8b640f046934aee44ed268/XCFApp/Supporting Files/Assets.xcassets/touch_focus.imageset/touch_focus@2x.png -------------------------------------------------------------------------------- /XCFApp/Supporting Files/Assets.xcassets/touch_focus_x.imageset/touch_focus_x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psven/XCFApp/b070c0999b22e5093b8b640f046934aee44ed268/XCFApp/Supporting Files/Assets.xcassets/touch_focus_x.imageset/touch_focus_x.png -------------------------------------------------------------------------------- /XCFApp/Supporting Files/Assets.xcassets/touch_focus_x.imageset/touch_focus_x@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psven/XCFApp/b070c0999b22e5093b8b640f046934aee44ed268/XCFApp/Supporting Files/Assets.xcassets/touch_focus_x.imageset/touch_focus_x@2x.png -------------------------------------------------------------------------------- /XCFApp/Supporting Files/Assets.xcassets/userIsExpertIcon28x28.imageset/userIsExpertIcon28x28.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psven/XCFApp/b070c0999b22e5093b8b640f046934aee44ed268/XCFApp/Supporting Files/Assets.xcassets/userIsExpertIcon28x28.imageset/userIsExpertIcon28x28.png -------------------------------------------------------------------------------- /XCFApp/Supporting Files/Assets.xcassets/userIsExpertIcon36x36.imageset/userIsExpertIcon36x36.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psven/XCFApp/b070c0999b22e5093b8b640f046934aee44ed268/XCFApp/Supporting Files/Assets.xcassets/userIsExpertIcon36x36.imageset/userIsExpertIcon36x36.png -------------------------------------------------------------------------------- /XCFApp/Supporting Files/Assets.xcassets/webViewIconBack.imageset/webViewIconBack.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psven/XCFApp/b070c0999b22e5093b8b640f046934aee44ed268/XCFApp/Supporting Files/Assets.xcassets/webViewIconBack.imageset/webViewIconBack.png -------------------------------------------------------------------------------- /XCFApp/Supporting Files/Assets.xcassets/webViewIconBackDisable.imageset/webViewIconBackDisable.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psven/XCFApp/b070c0999b22e5093b8b640f046934aee44ed268/XCFApp/Supporting Files/Assets.xcassets/webViewIconBackDisable.imageset/webViewIconBackDisable.png -------------------------------------------------------------------------------- /XCFApp/Supporting Files/Assets.xcassets/webViewIconForward.imageset/webViewIconForward.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psven/XCFApp/b070c0999b22e5093b8b640f046934aee44ed268/XCFApp/Supporting Files/Assets.xcassets/webViewIconForward.imageset/webViewIconForward.png -------------------------------------------------------------------------------- /XCFApp/Supporting Files/Assets.xcassets/webViewIconForwardDisable.imageset/webViewIconForwardDisable.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psven/XCFApp/b070c0999b22e5093b8b640f046934aee44ed268/XCFApp/Supporting Files/Assets.xcassets/webViewIconForwardDisable.imageset/webViewIconForwardDisable.png -------------------------------------------------------------------------------- /XCFApp/Supporting Files/Assets.xcassets/webViewIconRefresh.imageset/webViewIconRefresh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psven/XCFApp/b070c0999b22e5093b8b640f046934aee44ed268/XCFApp/Supporting Files/Assets.xcassets/webViewIconRefresh.imageset/webViewIconRefresh.png -------------------------------------------------------------------------------- /XCFApp/Supporting Files/Assets.xcassets/yellowStar13Disabled.imageset/yellowStar13Disabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psven/XCFApp/b070c0999b22e5093b8b640f046934aee44ed268/XCFApp/Supporting Files/Assets.xcassets/yellowStar13Disabled.imageset/yellowStar13Disabled.png -------------------------------------------------------------------------------- /XCFApp/Supporting Files/Assets.xcassets/yellowStar13Enabled.imageset/yellowStar13Enabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psven/XCFApp/b070c0999b22e5093b8b640f046934aee44ed268/XCFApp/Supporting Files/Assets.xcassets/yellowStar13Enabled.imageset/yellowStar13Enabled.png -------------------------------------------------------------------------------- /XCFApp/Supporting Files/Assets.xcassets/yellowStar13Half.imageset/yellowStar13Half.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psven/XCFApp/b070c0999b22e5093b8b640f046934aee44ed268/XCFApp/Supporting Files/Assets.xcassets/yellowStar13Half.imageset/yellowStar13Half.png -------------------------------------------------------------------------------- /XCFApp/Supporting Files/Assets.xcassets/yellowStar40Disabled.imageset/yellowStar40Disabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psven/XCFApp/b070c0999b22e5093b8b640f046934aee44ed268/XCFApp/Supporting Files/Assets.xcassets/yellowStar40Disabled.imageset/yellowStar40Disabled.png -------------------------------------------------------------------------------- /XCFApp/Supporting Files/Assets.xcassets/yellowStar40Enabled.imageset/yellowStar40Enabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psven/XCFApp/b070c0999b22e5093b8b640f046934aee44ed268/XCFApp/Supporting Files/Assets.xcassets/yellowStar40Enabled.imageset/yellowStar40Enabled.png -------------------------------------------------------------------------------- /XCFApp/Supporting Files/Assets.xcassets/yesMark.imageset/yesMark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psven/XCFApp/b070c0999b22e5093b8b640f046934aee44ed268/XCFApp/Supporting Files/Assets.xcassets/yesMark.imageset/yesMark.png -------------------------------------------------------------------------------- /XCFApp/Supporting Files/Assets.xcassets/yesMarkSmall.imageset/yesMarkSmall.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psven/XCFApp/b070c0999b22e5093b8b640f046934aee44ed268/XCFApp/Supporting Files/Assets.xcassets/yesMarkSmall.imageset/yesMarkSmall.png -------------------------------------------------------------------------------- /XCFApp/Supporting Files/Plist/detaillocation.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psven/XCFApp/b070c0999b22e5093b8b640f046934aee44ed268/XCFApp/Supporting Files/Plist/detaillocation.plist -------------------------------------------------------------------------------- /下厨房API.md.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psven/XCFApp/b070c0999b22e5093b8b640f046934aee44ed268/下厨房API.md.htm --------------------------------------------------------------------------------