├── .gitignore ├── Gif └── demo.gif ├── 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 │ │ ├── MBProgressHUD │ │ │ └── MBProgressHUD.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 │ │ │ ├── NSBundle+MJRefresh.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 │ │ ├── YTKNetwork │ │ │ ├── YTKBaseRequest.h │ │ │ ├── YTKBatchRequest.h │ │ │ ├── YTKBatchRequestAgent.h │ │ │ ├── YTKChainRequest.h │ │ │ ├── YTKChainRequestAgent.h │ │ │ ├── YTKNetwork.h │ │ │ ├── YTKNetworkAgent.h │ │ │ ├── YTKNetworkConfig.h │ │ │ ├── YTKNetworkPrivate.h │ │ │ └── YTKRequest.h │ │ └── YYKit │ │ │ ├── CALayer+YYAdd.h │ │ │ ├── CALayer+YYWebImage.h │ │ │ ├── MKAnnotationView+YYWebImage.h │ │ │ ├── NSArray+YYAdd.h │ │ │ ├── NSAttributedString+YYText.h │ │ │ ├── NSBundle+YYAdd.h │ │ │ ├── NSData+YYAdd.h │ │ │ ├── NSDate+YYAdd.h │ │ │ ├── NSDictionary+YYAdd.h │ │ │ ├── NSKeyedUnarchiver+YYAdd.h │ │ │ ├── NSNotificationCenter+YYAdd.h │ │ │ ├── NSNumber+YYAdd.h │ │ │ ├── NSObject+YYAdd.h │ │ │ ├── NSObject+YYAddForARC.h │ │ │ ├── NSObject+YYAddForKVO.h │ │ │ ├── NSObject+YYModel.h │ │ │ ├── NSParagraphStyle+YYText.h │ │ │ ├── NSString+YYAdd.h │ │ │ ├── NSThread+YYAdd.h │ │ │ ├── NSTimer+YYAdd.h │ │ │ ├── UIApplication+YYAdd.h │ │ │ ├── UIBarButtonItem+YYAdd.h │ │ │ ├── UIBezierPath+YYAdd.h │ │ │ ├── UIButton+YYWebImage.h │ │ │ ├── UIColor+YYAdd.h │ │ │ ├── UIControl+YYAdd.h │ │ │ ├── UIDevice+YYAdd.h │ │ │ ├── UIFont+YYAdd.h │ │ │ ├── UIGestureRecognizer+YYAdd.h │ │ │ ├── UIImage+YYAdd.h │ │ │ ├── UIImageView+YYWebImage.h │ │ │ ├── UIPasteboard+YYText.h │ │ │ ├── UIScreen+YYAdd.h │ │ │ ├── UIScrollView+YYAdd.h │ │ │ ├── UITableView+YYAdd.h │ │ │ ├── UITextField+YYAdd.h │ │ │ ├── UIView+YYAdd.h │ │ │ ├── YYAnimatedImageView.h │ │ │ ├── YYAsyncLayer.h │ │ │ ├── YYCGUtilities.h │ │ │ ├── YYCache.h │ │ │ ├── YYClassInfo.h │ │ │ ├── YYDiskCache.h │ │ │ ├── YYDispatchQueuePool.h │ │ │ ├── YYFileHash.h │ │ │ ├── YYFrameImage.h │ │ │ ├── YYGestureRecognizer.h │ │ │ ├── YYImage.h │ │ │ ├── YYImageCache.h │ │ │ ├── YYImageCoder.h │ │ │ ├── YYKVStorage.h │ │ │ ├── YYKeychain.h │ │ │ ├── YYKit.h │ │ │ ├── YYKitMacro.h │ │ │ ├── YYLabel.h │ │ │ ├── YYMemoryCache.h │ │ │ ├── YYReachability.h │ │ │ ├── YYSentinel.h │ │ │ ├── YYSpriteSheetImage.h │ │ │ ├── YYTextArchiver.h │ │ │ ├── YYTextAttribute.h │ │ │ ├── YYTextContainerView.h │ │ │ ├── YYTextDebugOption.h │ │ │ ├── YYTextEffectWindow.h │ │ │ ├── YYTextInput.h │ │ │ ├── YYTextKeyboardManager.h │ │ │ ├── YYTextLayout.h │ │ │ ├── YYTextLine.h │ │ │ ├── YYTextMagnifier.h │ │ │ ├── YYTextParser.h │ │ │ ├── YYTextRubyAnnotation.h │ │ │ ├── YYTextRunDelegate.h │ │ │ ├── YYTextSelectionView.h │ │ │ ├── YYTextUtilities.h │ │ │ ├── YYTextView.h │ │ │ ├── YYThreadSafeArray.h │ │ │ ├── YYThreadSafeDictionary.h │ │ │ ├── YYTimer.h │ │ │ ├── YYTransaction.h │ │ │ ├── YYWeakProxy.h │ │ │ ├── YYWebImageManager.h │ │ │ ├── YYWebImageOperation.h │ │ │ └── _YYWebImageSetter.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 │ │ ├── MBProgressHUD │ │ └── MBProgressHUD.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 │ │ ├── NSBundle+MJRefresh.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 │ │ ├── YTKNetwork │ │ ├── YTKBaseRequest.h │ │ ├── YTKBatchRequest.h │ │ ├── YTKBatchRequestAgent.h │ │ ├── YTKChainRequest.h │ │ ├── YTKChainRequestAgent.h │ │ ├── YTKNetwork.h │ │ ├── YTKNetworkAgent.h │ │ ├── YTKNetworkConfig.h │ │ └── YTKRequest.h │ │ └── YYKit │ │ ├── CALayer+YYAdd.h │ │ ├── CALayer+YYWebImage.h │ │ ├── MKAnnotationView+YYWebImage.h │ │ ├── NSArray+YYAdd.h │ │ ├── NSAttributedString+YYText.h │ │ ├── NSBundle+YYAdd.h │ │ ├── NSData+YYAdd.h │ │ ├── NSDate+YYAdd.h │ │ ├── NSDictionary+YYAdd.h │ │ ├── NSKeyedUnarchiver+YYAdd.h │ │ ├── NSNotificationCenter+YYAdd.h │ │ ├── NSNumber+YYAdd.h │ │ ├── NSObject+YYAdd.h │ │ ├── NSObject+YYAddForARC.h │ │ ├── NSObject+YYAddForKVO.h │ │ ├── NSObject+YYModel.h │ │ ├── NSParagraphStyle+YYText.h │ │ ├── NSString+YYAdd.h │ │ ├── NSThread+YYAdd.h │ │ ├── NSTimer+YYAdd.h │ │ ├── UIApplication+YYAdd.h │ │ ├── UIBarButtonItem+YYAdd.h │ │ ├── UIBezierPath+YYAdd.h │ │ ├── UIButton+YYWebImage.h │ │ ├── UIColor+YYAdd.h │ │ ├── UIControl+YYAdd.h │ │ ├── UIDevice+YYAdd.h │ │ ├── UIFont+YYAdd.h │ │ ├── UIGestureRecognizer+YYAdd.h │ │ ├── UIImage+YYAdd.h │ │ ├── UIImageView+YYWebImage.h │ │ ├── UIPasteboard+YYText.h │ │ ├── UIScreen+YYAdd.h │ │ ├── UIScrollView+YYAdd.h │ │ ├── UITableView+YYAdd.h │ │ ├── UITextField+YYAdd.h │ │ ├── UIView+YYAdd.h │ │ ├── WebP │ │ ├── config.h │ │ ├── decode.h │ │ ├── demux.h │ │ ├── encode.h │ │ ├── extras.h │ │ ├── format_constants.h │ │ ├── mux.h │ │ ├── mux_types.h │ │ └── types.h │ │ ├── YYAnimatedImageView.h │ │ ├── YYAsyncLayer.h │ │ ├── YYCGUtilities.h │ │ ├── YYCache.h │ │ ├── YYClassInfo.h │ │ ├── YYDiskCache.h │ │ ├── YYDispatchQueuePool.h │ │ ├── YYFileHash.h │ │ ├── YYFrameImage.h │ │ ├── YYGestureRecognizer.h │ │ ├── YYImage.h │ │ ├── YYImageCache.h │ │ ├── YYImageCoder.h │ │ ├── YYKVStorage.h │ │ ├── YYKeychain.h │ │ ├── YYKit.h │ │ ├── YYKitMacro.h │ │ ├── YYLabel.h │ │ ├── YYMemoryCache.h │ │ ├── YYReachability.h │ │ ├── YYSentinel.h │ │ ├── YYSpriteSheetImage.h │ │ ├── YYTextArchiver.h │ │ ├── YYTextAttribute.h │ │ ├── YYTextContainerView.h │ │ ├── YYTextDebugOption.h │ │ ├── YYTextEffectWindow.h │ │ ├── YYTextInput.h │ │ ├── YYTextKeyboardManager.h │ │ ├── YYTextLayout.h │ │ ├── YYTextLine.h │ │ ├── YYTextMagnifier.h │ │ ├── YYTextParser.h │ │ ├── YYTextRubyAnnotation.h │ │ ├── YYTextRunDelegate.h │ │ ├── YYTextSelectionView.h │ │ ├── YYTextUtilities.h │ │ ├── YYTextView.h │ │ ├── YYThreadSafeArray.h │ │ ├── YYThreadSafeDictionary.h │ │ ├── YYTimer.h │ │ ├── YYTransaction.h │ │ ├── YYWeakProxy.h │ │ ├── YYWebImageManager.h │ │ ├── YYWebImageOperation.h │ │ └── _YYWebImageSetter.h ├── MBProgressHUD │ ├── LICENSE │ ├── MBProgressHUD.h │ ├── MBProgressHUD.m │ └── README.mdown ├── 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 │ │ │ ├── en.lproj │ │ │ │ └── Localizable.strings │ │ │ ├── zh-Hans.lproj │ │ │ │ └── Localizable.strings │ │ │ └── zh-Hant.lproj │ │ │ │ └── Localizable.strings │ │ ├── MJRefresh.h │ │ ├── MJRefreshConst.h │ │ ├── MJRefreshConst.m │ │ ├── NSBundle+MJRefresh.h │ │ ├── NSBundle+MJRefresh.m │ │ ├── UIScrollView+MJExtension.h │ │ ├── UIScrollView+MJExtension.m │ │ ├── UIScrollView+MJRefresh.h │ │ ├── UIScrollView+MJRefresh.m │ │ ├── UIView+MJExtension.h │ │ └── UIView+MJExtension.m │ └── 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 ├── Target Support Files │ ├── AFNetworking │ │ ├── AFNetworking-dummy.m │ │ ├── AFNetworking-prefix.pch │ │ └── AFNetworking.xcconfig │ ├── MBProgressHUD │ │ ├── MBProgressHUD-dummy.m │ │ ├── MBProgressHUD-prefix.pch │ │ └── MBProgressHUD.xcconfig │ ├── MJRefresh │ │ ├── MJRefresh-dummy.m │ │ ├── MJRefresh-prefix.pch │ │ └── MJRefresh.xcconfig │ ├── Masonry │ │ ├── Masonry-dummy.m │ │ ├── Masonry-prefix.pch │ │ └── Masonry.xcconfig │ ├── Pods-UniversalApp │ │ ├── Pods-UniversalApp-acknowledgements.markdown │ │ ├── Pods-UniversalApp-acknowledgements.plist │ │ ├── Pods-UniversalApp-dummy.m │ │ ├── Pods-UniversalApp-frameworks.sh │ │ ├── Pods-UniversalApp-resources.sh │ │ ├── Pods-UniversalApp.debug.xcconfig │ │ └── Pods-UniversalApp.release.xcconfig │ ├── SDWebImage │ │ ├── SDWebImage-dummy.m │ │ ├── SDWebImage-prefix.pch │ │ └── SDWebImage.xcconfig │ ├── YTKNetwork │ │ ├── YTKNetwork-dummy.m │ │ ├── YTKNetwork-prefix.pch │ │ └── YTKNetwork.xcconfig │ └── YYKit │ │ ├── YYKit-dummy.m │ │ ├── YYKit-prefix.pch │ │ └── YYKit.xcconfig ├── YTKNetwork │ ├── LICENSE │ ├── README.md │ └── YTKNetwork │ │ ├── YTKBaseRequest.h │ │ ├── YTKBaseRequest.m │ │ ├── YTKBatchRequest.h │ │ ├── YTKBatchRequest.m │ │ ├── YTKBatchRequestAgent.h │ │ ├── YTKBatchRequestAgent.m │ │ ├── YTKChainRequest.h │ │ ├── YTKChainRequest.m │ │ ├── YTKChainRequestAgent.h │ │ ├── YTKChainRequestAgent.m │ │ ├── YTKNetwork.h │ │ ├── YTKNetworkAgent.h │ │ ├── YTKNetworkAgent.m │ │ ├── YTKNetworkConfig.h │ │ ├── YTKNetworkConfig.m │ │ ├── YTKNetworkPrivate.h │ │ ├── YTKNetworkPrivate.m │ │ ├── YTKRequest.h │ │ └── YTKRequest.m └── YYKit │ ├── LICENSE │ ├── README.md │ ├── Vendor │ └── WebP.framework │ │ ├── Headers │ │ ├── config.h │ │ ├── decode.h │ │ ├── demux.h │ │ ├── encode.h │ │ ├── extras.h │ │ ├── format_constants.h │ │ ├── mux.h │ │ ├── mux_types.h │ │ └── types.h │ │ └── WebP │ └── YYKit │ ├── Base │ ├── Foundation │ │ ├── NSArray+YYAdd.h │ │ ├── NSArray+YYAdd.m │ │ ├── NSBundle+YYAdd.h │ │ ├── NSBundle+YYAdd.m │ │ ├── NSData+YYAdd.h │ │ ├── NSData+YYAdd.m │ │ ├── NSDate+YYAdd.h │ │ ├── NSDate+YYAdd.m │ │ ├── NSDictionary+YYAdd.h │ │ ├── NSDictionary+YYAdd.m │ │ ├── NSKeyedUnarchiver+YYAdd.h │ │ ├── NSKeyedUnarchiver+YYAdd.m │ │ ├── NSNotificationCenter+YYAdd.h │ │ ├── NSNotificationCenter+YYAdd.m │ │ ├── NSNumber+YYAdd.h │ │ ├── NSNumber+YYAdd.m │ │ ├── NSObject+YYAdd.h │ │ ├── NSObject+YYAdd.m │ │ ├── NSObject+YYAddForARC.h │ │ ├── NSObject+YYAddForARC.m │ │ ├── NSObject+YYAddForKVO.h │ │ ├── NSObject+YYAddForKVO.m │ │ ├── NSString+YYAdd.h │ │ ├── NSString+YYAdd.m │ │ ├── NSThread+YYAdd.h │ │ ├── NSThread+YYAdd.m │ │ ├── NSTimer+YYAdd.h │ │ └── NSTimer+YYAdd.m │ ├── Quartz │ │ ├── CALayer+YYAdd.h │ │ ├── CALayer+YYAdd.m │ │ ├── YYCGUtilities.h │ │ └── YYCGUtilities.m │ ├── UIKit │ │ ├── UIApplication+YYAdd.h │ │ ├── UIApplication+YYAdd.m │ │ ├── UIBarButtonItem+YYAdd.h │ │ ├── UIBarButtonItem+YYAdd.m │ │ ├── UIBezierPath+YYAdd.h │ │ ├── UIBezierPath+YYAdd.m │ │ ├── UIColor+YYAdd.h │ │ ├── UIColor+YYAdd.m │ │ ├── UIControl+YYAdd.h │ │ ├── UIControl+YYAdd.m │ │ ├── UIDevice+YYAdd.h │ │ ├── UIDevice+YYAdd.m │ │ ├── UIFont+YYAdd.h │ │ ├── UIFont+YYAdd.m │ │ ├── UIGestureRecognizer+YYAdd.h │ │ ├── UIGestureRecognizer+YYAdd.m │ │ ├── UIImage+YYAdd.h │ │ ├── UIImage+YYAdd.m │ │ ├── UIScreen+YYAdd.h │ │ ├── UIScreen+YYAdd.m │ │ ├── UIScrollView+YYAdd.h │ │ ├── UIScrollView+YYAdd.m │ │ ├── UITableView+YYAdd.h │ │ ├── UITableView+YYAdd.m │ │ ├── UITextField+YYAdd.h │ │ ├── UITextField+YYAdd.m │ │ ├── UIView+YYAdd.h │ │ └── UIView+YYAdd.m │ └── YYKitMacro.h │ ├── Cache │ ├── YYCache.h │ ├── YYCache.m │ ├── YYDiskCache.h │ ├── YYDiskCache.m │ ├── YYKVStorage.h │ ├── YYKVStorage.m │ ├── YYMemoryCache.h │ └── YYMemoryCache.m │ ├── Image │ ├── Categories │ │ ├── CALayer+YYWebImage.h │ │ ├── CALayer+YYWebImage.m │ │ ├── MKAnnotationView+YYWebImage.h │ │ ├── MKAnnotationView+YYWebImage.m │ │ ├── UIButton+YYWebImage.h │ │ ├── UIButton+YYWebImage.m │ │ ├── UIImageView+YYWebImage.h │ │ ├── UIImageView+YYWebImage.m │ │ ├── _YYWebImageSetter.h │ │ └── _YYWebImageSetter.m │ ├── YYAnimatedImageView.h │ ├── YYAnimatedImageView.m │ ├── YYFrameImage.h │ ├── YYFrameImage.m │ ├── YYImage.h │ ├── YYImage.m │ ├── YYImageCache.h │ ├── YYImageCache.m │ ├── YYImageCoder.h │ ├── YYImageCoder.m │ ├── YYSpriteSheetImage.h │ ├── YYSpriteSheetImage.m │ ├── YYWebImageManager.h │ ├── YYWebImageManager.m │ ├── YYWebImageOperation.h │ └── YYWebImageOperation.m │ ├── Model │ ├── NSObject+YYModel.h │ ├── NSObject+YYModel.m │ ├── YYClassInfo.h │ └── YYClassInfo.m │ ├── Text │ ├── Component │ │ ├── YYTextContainerView.h │ │ ├── YYTextContainerView.m │ │ ├── YYTextDebugOption.h │ │ ├── YYTextDebugOption.m │ │ ├── YYTextEffectWindow.h │ │ ├── YYTextEffectWindow.m │ │ ├── YYTextInput.h │ │ ├── YYTextInput.m │ │ ├── YYTextKeyboardManager.h │ │ ├── YYTextKeyboardManager.m │ │ ├── YYTextLayout.h │ │ ├── YYTextLayout.m │ │ ├── YYTextLine.h │ │ ├── YYTextLine.m │ │ ├── YYTextMagnifier.h │ │ ├── YYTextMagnifier.m │ │ ├── YYTextSelectionView.h │ │ └── YYTextSelectionView.m │ ├── String │ │ ├── NSAttributedString+YYText.h │ │ ├── NSAttributedString+YYText.m │ │ ├── NSParagraphStyle+YYText.h │ │ ├── NSParagraphStyle+YYText.m │ │ ├── UIPasteboard+YYText.h │ │ ├── UIPasteboard+YYText.m │ │ ├── YYTextArchiver.h │ │ ├── YYTextArchiver.m │ │ ├── YYTextAttribute.h │ │ ├── YYTextAttribute.m │ │ ├── YYTextParser.h │ │ ├── YYTextParser.m │ │ ├── YYTextRubyAnnotation.h │ │ ├── YYTextRubyAnnotation.m │ │ ├── YYTextRunDelegate.h │ │ ├── YYTextRunDelegate.m │ │ ├── YYTextUtilities.h │ │ └── YYTextUtilities.m │ ├── YYLabel.h │ ├── YYLabel.m │ ├── YYTextView.h │ └── YYTextView.m │ ├── Utility │ ├── YYAsyncLayer.h │ ├── YYAsyncLayer.m │ ├── YYDispatchQueuePool.h │ ├── YYDispatchQueuePool.m │ ├── YYFileHash.h │ ├── YYFileHash.m │ ├── YYGestureRecognizer.h │ ├── YYGestureRecognizer.m │ ├── YYKeychain.h │ ├── YYKeychain.m │ ├── YYReachability.h │ ├── YYReachability.m │ ├── YYSentinel.h │ ├── YYSentinel.m │ ├── YYThreadSafeArray.h │ ├── YYThreadSafeArray.m │ ├── YYThreadSafeDictionary.h │ ├── YYThreadSafeDictionary.m │ ├── YYTimer.h │ ├── YYTimer.m │ ├── YYTransaction.h │ ├── YYTransaction.m │ ├── YYWeakProxy.h │ └── YYWeakProxy.m │ └── YYKit.h ├── README.md ├── UniversalApp.xcodeproj ├── project.pbxproj └── project.xcworkspace │ └── contents.xcworkspacedata ├── UniversalApp.xcworkspace └── contents.xcworkspacedata ├── UniversalApp ├── AppDelegate │ ├── AppDelegate+AppService.h │ ├── AppDelegate+AppService.m │ ├── AppDelegate+PushService.h │ ├── AppDelegate+PushService.m │ ├── AppDelegate.h │ └── AppDelegate.m ├── Base │ ├── BaseCell │ │ ├── BaseTableViewCell.h │ │ ├── BaseTableViewCell.m │ │ ├── HSBaseCellModel.h │ │ └── HSBaseCellModel.m │ ├── BaseRequestApi │ │ ├── BaseRequestAPI.h │ │ └── BaseRequestAPI.m │ ├── NavigationController │ │ ├── RootNavigationController.h │ │ └── RootNavigationController.m │ ├── RootViewController │ │ ├── RootViewController.h │ │ └── RootViewController.m │ ├── TabbarController │ │ ├── MainTabBarController.h │ │ ├── MainTabBarController.m │ │ ├── UITabBar+CustomBadge.h │ │ ├── UITabBar+CustomBadge.m │ │ ├── XYTabBar.h │ │ └── XYTabBar.m │ └── WebViewController │ │ ├── JSToOC.html │ │ ├── RootWebViewController.h │ │ ├── RootWebViewController.m │ │ ├── XLJSHandler.h │ │ ├── XLJSHandler.m │ │ ├── XLWebViewController.h │ │ └── XLWebViewController.m ├── Define │ ├── CommonMacros.h │ ├── FontAndColorMacros.h │ ├── ThirdMacros.h │ ├── URLMacros.h │ └── UtilsMacros.h ├── Manager │ ├── AppManager.h │ ├── AppManager.m │ ├── IAPManager.h │ ├── IAPManager.m │ ├── IMManager.h │ ├── IMManager.m │ ├── ShareManager.h │ ├── ShareManager.m │ ├── UserManager.h │ ├── UserManager.m │ └── UserManager │ │ ├── GameInfo.h │ │ ├── GameInfo.m │ │ ├── UserInfo.h │ │ ├── UserInfo.m │ │ ├── UserManager.h │ │ └── UserManager.m ├── Modules │ ├── Home │ │ ├── Controller │ │ │ ├── HomeViewController.h │ │ │ ├── HomeViewController.m │ │ │ ├── PersonListViewController.h │ │ │ ├── PersonListViewController.m │ │ │ ├── SecondViewController.h │ │ │ ├── SecondViewController.m │ │ │ ├── WaterFallListViewController.h │ │ │ └── WaterFallListViewController.m │ │ ├── Logic │ │ │ ├── PersonListLogic.h │ │ │ ├── PersonListLogic.m │ │ │ ├── WaterFallListLogic.h │ │ │ └── WaterFallListLogic.m │ │ ├── Model │ │ │ ├── PersonModel.h │ │ │ └── PersonModel.m │ │ ├── Resource │ │ │ ├── 0.jpg │ │ │ ├── 1.jpg │ │ │ ├── 10.jpg │ │ │ ├── 11.jpg │ │ │ ├── 12.jpg │ │ │ ├── 13.jpg │ │ │ ├── 2.jpg │ │ │ ├── 3.jpg │ │ │ ├── 4.jpg │ │ │ ├── 5.jpg │ │ │ ├── 6.jpg │ │ │ ├── 7.jpg │ │ │ ├── 8.jpg │ │ │ └── 9.jpg │ │ ├── Service │ │ │ ├── GetWaterFallListAPI.h │ │ │ └── GetWaterFallListAPI.m │ │ └── View │ │ │ ├── PersonListCollectionViewCell.h │ │ │ ├── PersonListCollectionViewCell.m │ │ │ ├── WaterFallCollectionViewCell.h │ │ │ ├── WaterFallCollectionViewCell.m │ │ │ ├── WaterFlowLayout.h │ │ │ └── WaterFlowLayout.m │ ├── Login │ │ ├── Controller │ │ │ ├── LoginViewController.h │ │ │ └── LoginViewController.m │ │ └── Logic │ │ │ ├── LoginLogic.h │ │ │ └── LoginLogic.m │ ├── MakeFriends │ │ ├── Controller │ │ │ ├── DraggingCardViewController.h │ │ │ ├── DraggingCardViewController.m │ │ │ ├── MakeFriendsViewController.h │ │ │ └── MakeFriendsViewController.m │ │ ├── Logic │ │ │ ├── MakeFriendsLogic.h │ │ │ └── MakeFriendsLogic.m │ │ ├── Model │ │ │ ├── CellModel.h │ │ │ └── CellModel.m │ │ └── View │ │ │ ├── DragCardView │ │ │ ├── CardView.h │ │ │ ├── CardView.m │ │ │ ├── YSLCardView.h │ │ │ ├── YSLCardView.m │ │ │ ├── YSLDraggableCardContainer.h │ │ │ └── YSLDraggableCardContainer.m │ │ │ ├── TableViewCell.h │ │ │ └── TableViewCell.m │ ├── Message │ │ ├── Controller │ │ │ ├── MsgViewController.h │ │ │ └── MsgViewController.m │ │ ├── Logic │ │ │ ├── MsgLogic.h │ │ │ └── MsgLogic.m │ │ └── Resource │ │ │ ├── photo_sample_01.png │ │ │ ├── photo_sample_02.png │ │ │ ├── photo_sample_03.png │ │ │ ├── photo_sample_04.png │ │ │ ├── photo_sample_05.png │ │ │ ├── photo_sample_06.png │ │ │ └── photo_sample_07.png │ ├── Mine │ │ ├── Controller │ │ │ ├── MineViewController.h │ │ │ ├── MineViewController.m │ │ │ ├── ProfileViewController.h │ │ │ ├── ProfileViewController.m │ │ │ ├── SettingViewController.h │ │ │ └── SettingViewController.m │ │ ├── Logic │ │ │ ├── MineLogic.h │ │ │ └── MineLogic.m │ │ ├── Resource │ │ │ ├── arrow_icon@2x.png │ │ │ ├── dengji@2x.png │ │ │ ├── haoy@2x.png │ │ │ ├── man@2x.png │ │ │ ├── my_back_img@2x.png │ │ │ ├── qianb@2x.png │ │ │ ├── renw@2x.png │ │ │ └── woman@2x.png │ │ └── View │ │ │ ├── MineHeaderView.h │ │ │ ├── MineHeaderView.m │ │ │ ├── MineTableViewCell.h │ │ │ ├── MineTableViewCell.m │ │ │ ├── NickNameLbel.h │ │ │ └── NickNameLbel.m │ └── TestModule │ │ ├── Controller │ │ ├── EmitterViewController.h │ │ ├── EmitterViewController.m │ │ ├── NativeCallJSVC.h │ │ ├── NativeCallJSVC.m │ │ ├── ScrollBannerVC.h │ │ ├── ScrollBannerVC.m │ │ ├── TagsViewController.h │ │ ├── TagsViewController.m │ │ ├── ToolDemoViewController.h │ │ └── ToolDemoViewController.m │ │ └── Resource │ │ ├── pageControlCurrentDot@2x.png │ │ ├── pageControlCurrentDot@3x.png │ │ ├── pageControlDot@2x.png │ │ ├── pageControlDot@3x.png │ │ ├── placeholder@2x.png │ │ ├── stepPk_win_colour1@2x.png │ │ ├── stepPk_win_colour2@2x.png │ │ ├── stepPk_win_colour3@2x.png │ │ ├── stepPk_win_colour4@2x.png │ │ ├── stepPk_win_colour5@2x.png │ │ ├── stepPk_win_colour6@2x.png │ │ ├── stepPk_win_colour7@2x.png │ │ └── stepPk_win_colour8@2x.png ├── NetWork │ ├── PPNetworkCache.h │ ├── PPNetworkCache.m │ ├── PPNetworkHelper.h │ └── PPNetworkHelper.m ├── Resource │ ├── DazFire.png │ ├── MBProgressHUD │ │ ├── MBHUD_Error@2x.png │ │ ├── MBHUD_Error@3x.png │ │ ├── MBHUD_Info@2x.png │ │ ├── MBHUD_Info@3x.png │ │ ├── MBHUD_Success@2x.png │ │ ├── MBHUD_Success@3x.png │ │ ├── MBHUD_Warn@2x.png │ │ └── MBHUD_Warn@3x.png │ ├── back_icon@2x.png │ ├── back_icon@3x.png │ ├── close_icon@2x.png │ ├── close_icon@3x.png │ ├── rain.png │ ├── snow.png │ └── tabBar │ │ ├── LCTabBarBadge@2x.png │ │ ├── icon_tabbar_discovery.png │ │ ├── icon_tabbar_discovery_selected.png │ │ ├── icon_tabbar_homepage.png │ │ ├── icon_tabbar_homepage@2x.png │ │ ├── icon_tabbar_homepage_selected.png │ │ ├── icon_tabbar_homepage_selected@2x.png │ │ ├── icon_tabbar_merchant_normal.png │ │ ├── icon_tabbar_merchant_normal@2x.png │ │ ├── icon_tabbar_merchant_selected.png │ │ ├── icon_tabbar_merchant_selected@2x.png │ │ ├── icon_tabbar_mine.png │ │ ├── icon_tabbar_mine@2x.png │ │ ├── icon_tabbar_mine_selected.png │ │ ├── icon_tabbar_mine_selected@2x.png │ │ ├── icon_tabbar_misc.png │ │ ├── icon_tabbar_misc@2x.png │ │ ├── icon_tabbar_misc_selected.png │ │ ├── icon_tabbar_misc_selected@2x.png │ │ ├── icon_tabbar_nearby.png │ │ ├── icon_tabbar_nearby_selected.png │ │ ├── icon_tabbar_onsite@2x.png │ │ ├── icon_tabbar_onsite_new@2x.png │ │ └── icon_tabbar_onsite_selected@2x.png ├── Supporting Flies │ ├── Assets.xcassets │ │ └── AppIcon.appiconset │ │ │ └── Contents.json │ ├── Base.lproj │ │ └── LaunchScreen.storyboard │ ├── Info.plist │ ├── PrefixHeader.pch │ └── main.m ├── ThridParty │ └── UMSocial │ │ ├── SocialLibraries │ │ ├── QQ │ │ │ ├── UMSocialQQHandler.h │ │ │ └── libSocialQQ.a │ │ └── WeChat │ │ │ ├── UMSocialWechatHandler.h │ │ │ └── libSocialWeChat.a │ │ ├── UMSocialSDK │ │ ├── UMSocialCore.framework │ │ │ ├── Headers │ │ │ │ ├── UMSocialCore.h │ │ │ │ ├── UMSocialCoreImageUtils.h │ │ │ │ ├── UMSocialDataManager.h │ │ │ │ ├── UMSocialGlobal.h │ │ │ │ ├── UMSocialHandler.h │ │ │ │ ├── UMSocialImageUtil.h │ │ │ │ ├── UMSocialManager.h │ │ │ │ ├── UMSocialMessageObject.h │ │ │ │ ├── UMSocialPlatformConfig.h │ │ │ │ ├── UMSocialPlatformProvider.h │ │ │ │ ├── UMSocialResponse.h │ │ │ │ ├── UMSocialWarterMarkConfig.h │ │ │ │ └── UMSociallogMacros.h │ │ │ ├── Info.plist │ │ │ └── UMSocialCore │ │ ├── UMSocialNetwork.framework │ │ │ ├── Headers │ │ │ │ ├── UMSocialHttpFactory.h │ │ │ │ ├── UMSocialNetwork.h │ │ │ │ ├── UMSocialTask.h │ │ │ │ ├── UMSocialTaskConfig.h │ │ │ │ └── UMSocialTaskManager.h │ │ │ ├── Info.plist │ │ │ └── UMSocialNetwork │ │ └── UMSocialSDKPromptResources.bundle │ │ │ ├── en.lproj │ │ │ └── UMSocialPromptLocalizable.strings │ │ │ └── zh-Hans.lproj │ │ │ └── UMSocialPromptLocalizable.strings │ │ ├── UMSocialSDKPlugin │ │ └── libUMSocialLog.a │ │ └── UMSocialUI │ │ ├── UMSocialSDKResources.bundle │ │ ├── Buttons │ │ │ ├── UMS_add_friend_off@2x.png │ │ │ ├── UMS_delete_image_button_normal@2x.png │ │ │ ├── UMS_nav_button_close@2x.png │ │ │ ├── UMS_nav_button_send@2x.png │ │ │ ├── UMS_url_image@2x.png │ │ │ ├── UMS_url_music@2x.png │ │ │ └── UMS_url_video@2x.png │ │ ├── UMSocialPlatformTheme │ │ │ └── default │ │ │ │ ├── umsocial_alipay.png │ │ │ │ ├── umsocial_default.png │ │ │ │ ├── umsocial_dingding.png │ │ │ │ ├── umsocial_douban.png │ │ │ │ ├── umsocial_dropbox.png │ │ │ │ ├── umsocial_email.png │ │ │ │ ├── umsocial_evernote.png │ │ │ │ ├── umsocial_facebook.png │ │ │ │ ├── umsocial_facebookmessenger.png │ │ │ │ ├── umsocial_flickr.png │ │ │ │ ├── umsocial_googleplus.png │ │ │ │ ├── umsocial_instagram.png │ │ │ │ ├── umsocial_kakaoTalk.png │ │ │ │ ├── umsocial_line.png │ │ │ │ ├── umsocial_linkedin.png │ │ │ │ ├── umsocial_lw_session.png │ │ │ │ ├── umsocial_lw_timeline.png │ │ │ │ ├── umsocial_pinterest.png │ │ │ │ ├── umsocial_pocket.png │ │ │ │ ├── umsocial_qq.png │ │ │ │ ├── umsocial_qzone.png │ │ │ │ ├── umsocial_renren.png │ │ │ │ ├── umsocial_sina.png │ │ │ │ ├── umsocial_sms.png │ │ │ │ ├── umsocial_tencentWB.png │ │ │ │ ├── umsocial_tumblr.png │ │ │ │ ├── umsocial_twitter.png │ │ │ │ ├── umsocial_vkontakte.png │ │ │ │ ├── umsocial_wechat.png │ │ │ │ ├── umsocial_wechat_favorite.png │ │ │ │ ├── umsocial_wechat_timeline.png │ │ │ │ ├── umsocial_whatsapp.png │ │ │ │ ├── umsocial_yixin_favorite.png │ │ │ │ ├── umsocial_yixin_session.png │ │ │ │ ├── umsocial_yixin_timeline.png │ │ │ │ └── umsocial_youdaonote.png │ │ ├── UMSocialWaterMark │ │ │ └── umsocial_defaultwatermark.png │ │ ├── en.lproj │ │ │ └── UMSocialLocalizable.strings │ │ └── zh-Hans.lproj │ │ │ └── UMSocialLocalizable.strings │ │ └── UShareUI.framework │ │ ├── Headers │ │ ├── UMSocialShareUIConfig.h │ │ ├── UMSocialUIManager.h │ │ ├── UMSocialUIUtility.h │ │ └── UShareUI.h │ │ ├── Info.plist │ │ └── UShareUI └── Utils │ ├── AES │ ├── AESCipher.h │ └── AESCipher.m │ ├── AdPage │ ├── AdPageView.h │ └── AdPageView.m │ ├── Category │ ├── UIButton+XYButton.h │ ├── UIButton+XYButton.m │ ├── UICollectionView+IndexPath.h │ ├── UICollectionView+IndexPath.m │ ├── UIViewController+AlertViewAndActionSheet.h │ └── UIViewController+AlertViewAndActionSheet.m │ ├── MBProgressHUD │ ├── MBProgressHUD+XY.h │ └── MBProgressHUD+XY.m │ ├── NetWork │ ├── HeaderModel.h │ ├── HeaderModel.m │ ├── PPNetworkCache.h │ ├── PPNetworkCache.m │ ├── PPNetworkHelper.h │ └── PPNetworkHelper.m │ ├── OpenUDID │ ├── OpenUDID.h │ └── OpenUDID.m │ ├── Other │ ├── YYFPSLabel.h │ └── YYFPSLabel.m │ ├── PickerView │ ├── XZPickView.h │ └── XZPickView.m │ ├── SDCycleScrollView │ ├── PageControl │ │ ├── TAAbstractDotView.h │ │ ├── TAAbstractDotView.m │ │ ├── TAAnimatedDotView.h │ │ ├── TAAnimatedDotView.m │ │ ├── TADotView.h │ │ ├── TADotView.m │ │ ├── TAPageControl.h │ │ └── TAPageControl.m │ ├── SDCollectionViewCell.h │ ├── SDCollectionViewCell.m │ ├── SDCycleScrollView.h │ ├── SDCycleScrollView.m │ ├── UIView+SDExtension.h │ └── UIView+SDExtension.m │ ├── SandBoxHelper │ ├── SandBoxHelper.h │ └── SandBoxHelper.m │ ├── TagsView │ ├── FFTagsView.h │ ├── FFTagsView.m │ ├── TagsButton.h │ └── TagsButton.m │ └── XYTransition │ ├── XYTransition.h │ ├── XYTransition.m │ └── XYTransitionProtocol.h ├── UniversalAppTests ├── Info.plist └── MiAiAppTests.m └── UniversalAppUITests ├── Info.plist └── MiAiAppUITests.m /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuYang8026/UniversalProject/HEAD/.gitignore -------------------------------------------------------------------------------- /Gif/demo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuYang8026/UniversalProject/HEAD/Gif/demo.gif -------------------------------------------------------------------------------- /Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuYang8026/UniversalProject/HEAD/Podfile -------------------------------------------------------------------------------- /Podfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuYang8026/UniversalProject/HEAD/Podfile.lock -------------------------------------------------------------------------------- /Pods/AFNetworking/AFNetworking/AFHTTPSessionManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuYang8026/UniversalProject/HEAD/Pods/AFNetworking/AFNetworking/AFHTTPSessionManager.h -------------------------------------------------------------------------------- /Pods/AFNetworking/AFNetworking/AFHTTPSessionManager.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuYang8026/UniversalProject/HEAD/Pods/AFNetworking/AFNetworking/AFHTTPSessionManager.m -------------------------------------------------------------------------------- /Pods/AFNetworking/AFNetworking/AFNetworking.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuYang8026/UniversalProject/HEAD/Pods/AFNetworking/AFNetworking/AFNetworking.h -------------------------------------------------------------------------------- /Pods/AFNetworking/AFNetworking/AFSecurityPolicy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuYang8026/UniversalProject/HEAD/Pods/AFNetworking/AFNetworking/AFSecurityPolicy.h -------------------------------------------------------------------------------- /Pods/AFNetworking/AFNetworking/AFSecurityPolicy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuYang8026/UniversalProject/HEAD/Pods/AFNetworking/AFNetworking/AFSecurityPolicy.m -------------------------------------------------------------------------------- /Pods/AFNetworking/AFNetworking/AFURLRequestSerialization.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuYang8026/UniversalProject/HEAD/Pods/AFNetworking/AFNetworking/AFURLRequestSerialization.h -------------------------------------------------------------------------------- /Pods/AFNetworking/AFNetworking/AFURLRequestSerialization.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuYang8026/UniversalProject/HEAD/Pods/AFNetworking/AFNetworking/AFURLRequestSerialization.m -------------------------------------------------------------------------------- /Pods/AFNetworking/AFNetworking/AFURLResponseSerialization.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuYang8026/UniversalProject/HEAD/Pods/AFNetworking/AFNetworking/AFURLResponseSerialization.h -------------------------------------------------------------------------------- /Pods/AFNetworking/AFNetworking/AFURLResponseSerialization.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuYang8026/UniversalProject/HEAD/Pods/AFNetworking/AFNetworking/AFURLResponseSerialization.m -------------------------------------------------------------------------------- /Pods/AFNetworking/AFNetworking/AFURLSessionManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuYang8026/UniversalProject/HEAD/Pods/AFNetworking/AFNetworking/AFURLSessionManager.h -------------------------------------------------------------------------------- /Pods/AFNetworking/AFNetworking/AFURLSessionManager.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuYang8026/UniversalProject/HEAD/Pods/AFNetworking/AFNetworking/AFURLSessionManager.m -------------------------------------------------------------------------------- /Pods/AFNetworking/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuYang8026/UniversalProject/HEAD/Pods/AFNetworking/LICENSE -------------------------------------------------------------------------------- /Pods/AFNetworking/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuYang8026/UniversalProject/HEAD/Pods/AFNetworking/README.md -------------------------------------------------------------------------------- /Pods/AFNetworking/UIKit+AFNetworking/AFImageDownloader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuYang8026/UniversalProject/HEAD/Pods/AFNetworking/UIKit+AFNetworking/AFImageDownloader.h -------------------------------------------------------------------------------- /Pods/AFNetworking/UIKit+AFNetworking/AFImageDownloader.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuYang8026/UniversalProject/HEAD/Pods/AFNetworking/UIKit+AFNetworking/AFImageDownloader.m -------------------------------------------------------------------------------- /Pods/AFNetworking/UIKit+AFNetworking/UIButton+AFNetworking.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuYang8026/UniversalProject/HEAD/Pods/AFNetworking/UIKit+AFNetworking/UIButton+AFNetworking.h -------------------------------------------------------------------------------- /Pods/AFNetworking/UIKit+AFNetworking/UIButton+AFNetworking.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuYang8026/UniversalProject/HEAD/Pods/AFNetworking/UIKit+AFNetworking/UIButton+AFNetworking.m -------------------------------------------------------------------------------- /Pods/AFNetworking/UIKit+AFNetworking/UIKit+AFNetworking.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuYang8026/UniversalProject/HEAD/Pods/AFNetworking/UIKit+AFNetworking/UIKit+AFNetworking.h -------------------------------------------------------------------------------- /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/MBProgressHUD/MBProgressHUD.h: -------------------------------------------------------------------------------- 1 | ../../../MBProgressHUD/MBProgressHUD.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/NSBundle+MJRefresh.h: -------------------------------------------------------------------------------- 1 | ../../../MJRefresh/MJRefresh/NSBundle+MJRefresh.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/YTKNetwork/YTKBaseRequest.h: -------------------------------------------------------------------------------- 1 | ../../../YTKNetwork/YTKNetwork/YTKBaseRequest.h -------------------------------------------------------------------------------- /Pods/Headers/Private/YTKNetwork/YTKBatchRequest.h: -------------------------------------------------------------------------------- 1 | ../../../YTKNetwork/YTKNetwork/YTKBatchRequest.h -------------------------------------------------------------------------------- /Pods/Headers/Private/YTKNetwork/YTKBatchRequestAgent.h: -------------------------------------------------------------------------------- 1 | ../../../YTKNetwork/YTKNetwork/YTKBatchRequestAgent.h -------------------------------------------------------------------------------- /Pods/Headers/Private/YTKNetwork/YTKChainRequest.h: -------------------------------------------------------------------------------- 1 | ../../../YTKNetwork/YTKNetwork/YTKChainRequest.h -------------------------------------------------------------------------------- /Pods/Headers/Private/YTKNetwork/YTKChainRequestAgent.h: -------------------------------------------------------------------------------- 1 | ../../../YTKNetwork/YTKNetwork/YTKChainRequestAgent.h -------------------------------------------------------------------------------- /Pods/Headers/Private/YTKNetwork/YTKNetwork.h: -------------------------------------------------------------------------------- 1 | ../../../YTKNetwork/YTKNetwork/YTKNetwork.h -------------------------------------------------------------------------------- /Pods/Headers/Private/YTKNetwork/YTKNetworkAgent.h: -------------------------------------------------------------------------------- 1 | ../../../YTKNetwork/YTKNetwork/YTKNetworkAgent.h -------------------------------------------------------------------------------- /Pods/Headers/Private/YTKNetwork/YTKNetworkConfig.h: -------------------------------------------------------------------------------- 1 | ../../../YTKNetwork/YTKNetwork/YTKNetworkConfig.h -------------------------------------------------------------------------------- /Pods/Headers/Private/YTKNetwork/YTKNetworkPrivate.h: -------------------------------------------------------------------------------- 1 | ../../../YTKNetwork/YTKNetwork/YTKNetworkPrivate.h -------------------------------------------------------------------------------- /Pods/Headers/Private/YTKNetwork/YTKRequest.h: -------------------------------------------------------------------------------- 1 | ../../../YTKNetwork/YTKNetwork/YTKRequest.h -------------------------------------------------------------------------------- /Pods/Headers/Private/YYKit/CALayer+YYAdd.h: -------------------------------------------------------------------------------- 1 | ../../../YYKit/YYKit/Base/Quartz/CALayer+YYAdd.h -------------------------------------------------------------------------------- /Pods/Headers/Private/YYKit/CALayer+YYWebImage.h: -------------------------------------------------------------------------------- 1 | ../../../YYKit/YYKit/Image/Categories/CALayer+YYWebImage.h -------------------------------------------------------------------------------- /Pods/Headers/Private/YYKit/MKAnnotationView+YYWebImage.h: -------------------------------------------------------------------------------- 1 | ../../../YYKit/YYKit/Image/Categories/MKAnnotationView+YYWebImage.h -------------------------------------------------------------------------------- /Pods/Headers/Private/YYKit/NSArray+YYAdd.h: -------------------------------------------------------------------------------- 1 | ../../../YYKit/YYKit/Base/Foundation/NSArray+YYAdd.h -------------------------------------------------------------------------------- /Pods/Headers/Private/YYKit/NSAttributedString+YYText.h: -------------------------------------------------------------------------------- 1 | ../../../YYKit/YYKit/Text/String/NSAttributedString+YYText.h -------------------------------------------------------------------------------- /Pods/Headers/Private/YYKit/NSBundle+YYAdd.h: -------------------------------------------------------------------------------- 1 | ../../../YYKit/YYKit/Base/Foundation/NSBundle+YYAdd.h -------------------------------------------------------------------------------- /Pods/Headers/Private/YYKit/NSData+YYAdd.h: -------------------------------------------------------------------------------- 1 | ../../../YYKit/YYKit/Base/Foundation/NSData+YYAdd.h -------------------------------------------------------------------------------- /Pods/Headers/Private/YYKit/NSDate+YYAdd.h: -------------------------------------------------------------------------------- 1 | ../../../YYKit/YYKit/Base/Foundation/NSDate+YYAdd.h -------------------------------------------------------------------------------- /Pods/Headers/Private/YYKit/NSDictionary+YYAdd.h: -------------------------------------------------------------------------------- 1 | ../../../YYKit/YYKit/Base/Foundation/NSDictionary+YYAdd.h -------------------------------------------------------------------------------- /Pods/Headers/Private/YYKit/NSKeyedUnarchiver+YYAdd.h: -------------------------------------------------------------------------------- 1 | ../../../YYKit/YYKit/Base/Foundation/NSKeyedUnarchiver+YYAdd.h -------------------------------------------------------------------------------- /Pods/Headers/Private/YYKit/NSNotificationCenter+YYAdd.h: -------------------------------------------------------------------------------- 1 | ../../../YYKit/YYKit/Base/Foundation/NSNotificationCenter+YYAdd.h -------------------------------------------------------------------------------- /Pods/Headers/Private/YYKit/NSNumber+YYAdd.h: -------------------------------------------------------------------------------- 1 | ../../../YYKit/YYKit/Base/Foundation/NSNumber+YYAdd.h -------------------------------------------------------------------------------- /Pods/Headers/Private/YYKit/NSObject+YYAdd.h: -------------------------------------------------------------------------------- 1 | ../../../YYKit/YYKit/Base/Foundation/NSObject+YYAdd.h -------------------------------------------------------------------------------- /Pods/Headers/Private/YYKit/NSObject+YYAddForARC.h: -------------------------------------------------------------------------------- 1 | ../../../YYKit/YYKit/Base/Foundation/NSObject+YYAddForARC.h -------------------------------------------------------------------------------- /Pods/Headers/Private/YYKit/NSObject+YYAddForKVO.h: -------------------------------------------------------------------------------- 1 | ../../../YYKit/YYKit/Base/Foundation/NSObject+YYAddForKVO.h -------------------------------------------------------------------------------- /Pods/Headers/Private/YYKit/NSObject+YYModel.h: -------------------------------------------------------------------------------- 1 | ../../../YYKit/YYKit/Model/NSObject+YYModel.h -------------------------------------------------------------------------------- /Pods/Headers/Private/YYKit/NSParagraphStyle+YYText.h: -------------------------------------------------------------------------------- 1 | ../../../YYKit/YYKit/Text/String/NSParagraphStyle+YYText.h -------------------------------------------------------------------------------- /Pods/Headers/Private/YYKit/NSString+YYAdd.h: -------------------------------------------------------------------------------- 1 | ../../../YYKit/YYKit/Base/Foundation/NSString+YYAdd.h -------------------------------------------------------------------------------- /Pods/Headers/Private/YYKit/NSThread+YYAdd.h: -------------------------------------------------------------------------------- 1 | ../../../YYKit/YYKit/Base/Foundation/NSThread+YYAdd.h -------------------------------------------------------------------------------- /Pods/Headers/Private/YYKit/NSTimer+YYAdd.h: -------------------------------------------------------------------------------- 1 | ../../../YYKit/YYKit/Base/Foundation/NSTimer+YYAdd.h -------------------------------------------------------------------------------- /Pods/Headers/Private/YYKit/UIApplication+YYAdd.h: -------------------------------------------------------------------------------- 1 | ../../../YYKit/YYKit/Base/UIKit/UIApplication+YYAdd.h -------------------------------------------------------------------------------- /Pods/Headers/Private/YYKit/UIBarButtonItem+YYAdd.h: -------------------------------------------------------------------------------- 1 | ../../../YYKit/YYKit/Base/UIKit/UIBarButtonItem+YYAdd.h -------------------------------------------------------------------------------- /Pods/Headers/Private/YYKit/UIBezierPath+YYAdd.h: -------------------------------------------------------------------------------- 1 | ../../../YYKit/YYKit/Base/UIKit/UIBezierPath+YYAdd.h -------------------------------------------------------------------------------- /Pods/Headers/Private/YYKit/UIButton+YYWebImage.h: -------------------------------------------------------------------------------- 1 | ../../../YYKit/YYKit/Image/Categories/UIButton+YYWebImage.h -------------------------------------------------------------------------------- /Pods/Headers/Private/YYKit/UIColor+YYAdd.h: -------------------------------------------------------------------------------- 1 | ../../../YYKit/YYKit/Base/UIKit/UIColor+YYAdd.h -------------------------------------------------------------------------------- /Pods/Headers/Private/YYKit/UIControl+YYAdd.h: -------------------------------------------------------------------------------- 1 | ../../../YYKit/YYKit/Base/UIKit/UIControl+YYAdd.h -------------------------------------------------------------------------------- /Pods/Headers/Private/YYKit/UIDevice+YYAdd.h: -------------------------------------------------------------------------------- 1 | ../../../YYKit/YYKit/Base/UIKit/UIDevice+YYAdd.h -------------------------------------------------------------------------------- /Pods/Headers/Private/YYKit/UIFont+YYAdd.h: -------------------------------------------------------------------------------- 1 | ../../../YYKit/YYKit/Base/UIKit/UIFont+YYAdd.h -------------------------------------------------------------------------------- /Pods/Headers/Private/YYKit/UIGestureRecognizer+YYAdd.h: -------------------------------------------------------------------------------- 1 | ../../../YYKit/YYKit/Base/UIKit/UIGestureRecognizer+YYAdd.h -------------------------------------------------------------------------------- /Pods/Headers/Private/YYKit/UIImage+YYAdd.h: -------------------------------------------------------------------------------- 1 | ../../../YYKit/YYKit/Base/UIKit/UIImage+YYAdd.h -------------------------------------------------------------------------------- /Pods/Headers/Private/YYKit/UIImageView+YYWebImage.h: -------------------------------------------------------------------------------- 1 | ../../../YYKit/YYKit/Image/Categories/UIImageView+YYWebImage.h -------------------------------------------------------------------------------- /Pods/Headers/Private/YYKit/UIPasteboard+YYText.h: -------------------------------------------------------------------------------- 1 | ../../../YYKit/YYKit/Text/String/UIPasteboard+YYText.h -------------------------------------------------------------------------------- /Pods/Headers/Private/YYKit/UIScreen+YYAdd.h: -------------------------------------------------------------------------------- 1 | ../../../YYKit/YYKit/Base/UIKit/UIScreen+YYAdd.h -------------------------------------------------------------------------------- /Pods/Headers/Private/YYKit/UIScrollView+YYAdd.h: -------------------------------------------------------------------------------- 1 | ../../../YYKit/YYKit/Base/UIKit/UIScrollView+YYAdd.h -------------------------------------------------------------------------------- /Pods/Headers/Private/YYKit/UITableView+YYAdd.h: -------------------------------------------------------------------------------- 1 | ../../../YYKit/YYKit/Base/UIKit/UITableView+YYAdd.h -------------------------------------------------------------------------------- /Pods/Headers/Private/YYKit/UITextField+YYAdd.h: -------------------------------------------------------------------------------- 1 | ../../../YYKit/YYKit/Base/UIKit/UITextField+YYAdd.h -------------------------------------------------------------------------------- /Pods/Headers/Private/YYKit/UIView+YYAdd.h: -------------------------------------------------------------------------------- 1 | ../../../YYKit/YYKit/Base/UIKit/UIView+YYAdd.h -------------------------------------------------------------------------------- /Pods/Headers/Private/YYKit/YYAnimatedImageView.h: -------------------------------------------------------------------------------- 1 | ../../../YYKit/YYKit/Image/YYAnimatedImageView.h -------------------------------------------------------------------------------- /Pods/Headers/Private/YYKit/YYAsyncLayer.h: -------------------------------------------------------------------------------- 1 | ../../../YYKit/YYKit/Utility/YYAsyncLayer.h -------------------------------------------------------------------------------- /Pods/Headers/Private/YYKit/YYCGUtilities.h: -------------------------------------------------------------------------------- 1 | ../../../YYKit/YYKit/Base/Quartz/YYCGUtilities.h -------------------------------------------------------------------------------- /Pods/Headers/Private/YYKit/YYCache.h: -------------------------------------------------------------------------------- 1 | ../../../YYKit/YYKit/Cache/YYCache.h -------------------------------------------------------------------------------- /Pods/Headers/Private/YYKit/YYClassInfo.h: -------------------------------------------------------------------------------- 1 | ../../../YYKit/YYKit/Model/YYClassInfo.h -------------------------------------------------------------------------------- /Pods/Headers/Private/YYKit/YYDiskCache.h: -------------------------------------------------------------------------------- 1 | ../../../YYKit/YYKit/Cache/YYDiskCache.h -------------------------------------------------------------------------------- /Pods/Headers/Private/YYKit/YYDispatchQueuePool.h: -------------------------------------------------------------------------------- 1 | ../../../YYKit/YYKit/Utility/YYDispatchQueuePool.h -------------------------------------------------------------------------------- /Pods/Headers/Private/YYKit/YYFileHash.h: -------------------------------------------------------------------------------- 1 | ../../../YYKit/YYKit/Utility/YYFileHash.h -------------------------------------------------------------------------------- /Pods/Headers/Private/YYKit/YYFrameImage.h: -------------------------------------------------------------------------------- 1 | ../../../YYKit/YYKit/Image/YYFrameImage.h -------------------------------------------------------------------------------- /Pods/Headers/Private/YYKit/YYGestureRecognizer.h: -------------------------------------------------------------------------------- 1 | ../../../YYKit/YYKit/Utility/YYGestureRecognizer.h -------------------------------------------------------------------------------- /Pods/Headers/Private/YYKit/YYImage.h: -------------------------------------------------------------------------------- 1 | ../../../YYKit/YYKit/Image/YYImage.h -------------------------------------------------------------------------------- /Pods/Headers/Private/YYKit/YYImageCache.h: -------------------------------------------------------------------------------- 1 | ../../../YYKit/YYKit/Image/YYImageCache.h -------------------------------------------------------------------------------- /Pods/Headers/Private/YYKit/YYImageCoder.h: -------------------------------------------------------------------------------- 1 | ../../../YYKit/YYKit/Image/YYImageCoder.h -------------------------------------------------------------------------------- /Pods/Headers/Private/YYKit/YYKVStorage.h: -------------------------------------------------------------------------------- 1 | ../../../YYKit/YYKit/Cache/YYKVStorage.h -------------------------------------------------------------------------------- /Pods/Headers/Private/YYKit/YYKeychain.h: -------------------------------------------------------------------------------- 1 | ../../../YYKit/YYKit/Utility/YYKeychain.h -------------------------------------------------------------------------------- /Pods/Headers/Private/YYKit/YYKit.h: -------------------------------------------------------------------------------- 1 | ../../../YYKit/YYKit/YYKit.h -------------------------------------------------------------------------------- /Pods/Headers/Private/YYKit/YYKitMacro.h: -------------------------------------------------------------------------------- 1 | ../../../YYKit/YYKit/Base/YYKitMacro.h -------------------------------------------------------------------------------- /Pods/Headers/Private/YYKit/YYLabel.h: -------------------------------------------------------------------------------- 1 | ../../../YYKit/YYKit/Text/YYLabel.h -------------------------------------------------------------------------------- /Pods/Headers/Private/YYKit/YYMemoryCache.h: -------------------------------------------------------------------------------- 1 | ../../../YYKit/YYKit/Cache/YYMemoryCache.h -------------------------------------------------------------------------------- /Pods/Headers/Private/YYKit/YYReachability.h: -------------------------------------------------------------------------------- 1 | ../../../YYKit/YYKit/Utility/YYReachability.h -------------------------------------------------------------------------------- /Pods/Headers/Private/YYKit/YYSentinel.h: -------------------------------------------------------------------------------- 1 | ../../../YYKit/YYKit/Utility/YYSentinel.h -------------------------------------------------------------------------------- /Pods/Headers/Private/YYKit/YYSpriteSheetImage.h: -------------------------------------------------------------------------------- 1 | ../../../YYKit/YYKit/Image/YYSpriteSheetImage.h -------------------------------------------------------------------------------- /Pods/Headers/Private/YYKit/YYTextArchiver.h: -------------------------------------------------------------------------------- 1 | ../../../YYKit/YYKit/Text/String/YYTextArchiver.h -------------------------------------------------------------------------------- /Pods/Headers/Private/YYKit/YYTextAttribute.h: -------------------------------------------------------------------------------- 1 | ../../../YYKit/YYKit/Text/String/YYTextAttribute.h -------------------------------------------------------------------------------- /Pods/Headers/Private/YYKit/YYTextContainerView.h: -------------------------------------------------------------------------------- 1 | ../../../YYKit/YYKit/Text/Component/YYTextContainerView.h -------------------------------------------------------------------------------- /Pods/Headers/Private/YYKit/YYTextDebugOption.h: -------------------------------------------------------------------------------- 1 | ../../../YYKit/YYKit/Text/Component/YYTextDebugOption.h -------------------------------------------------------------------------------- /Pods/Headers/Private/YYKit/YYTextEffectWindow.h: -------------------------------------------------------------------------------- 1 | ../../../YYKit/YYKit/Text/Component/YYTextEffectWindow.h -------------------------------------------------------------------------------- /Pods/Headers/Private/YYKit/YYTextInput.h: -------------------------------------------------------------------------------- 1 | ../../../YYKit/YYKit/Text/Component/YYTextInput.h -------------------------------------------------------------------------------- /Pods/Headers/Private/YYKit/YYTextKeyboardManager.h: -------------------------------------------------------------------------------- 1 | ../../../YYKit/YYKit/Text/Component/YYTextKeyboardManager.h -------------------------------------------------------------------------------- /Pods/Headers/Private/YYKit/YYTextLayout.h: -------------------------------------------------------------------------------- 1 | ../../../YYKit/YYKit/Text/Component/YYTextLayout.h -------------------------------------------------------------------------------- /Pods/Headers/Private/YYKit/YYTextLine.h: -------------------------------------------------------------------------------- 1 | ../../../YYKit/YYKit/Text/Component/YYTextLine.h -------------------------------------------------------------------------------- /Pods/Headers/Private/YYKit/YYTextMagnifier.h: -------------------------------------------------------------------------------- 1 | ../../../YYKit/YYKit/Text/Component/YYTextMagnifier.h -------------------------------------------------------------------------------- /Pods/Headers/Private/YYKit/YYTextParser.h: -------------------------------------------------------------------------------- 1 | ../../../YYKit/YYKit/Text/String/YYTextParser.h -------------------------------------------------------------------------------- /Pods/Headers/Private/YYKit/YYTextRubyAnnotation.h: -------------------------------------------------------------------------------- 1 | ../../../YYKit/YYKit/Text/String/YYTextRubyAnnotation.h -------------------------------------------------------------------------------- /Pods/Headers/Private/YYKit/YYTextRunDelegate.h: -------------------------------------------------------------------------------- 1 | ../../../YYKit/YYKit/Text/String/YYTextRunDelegate.h -------------------------------------------------------------------------------- /Pods/Headers/Private/YYKit/YYTextSelectionView.h: -------------------------------------------------------------------------------- 1 | ../../../YYKit/YYKit/Text/Component/YYTextSelectionView.h -------------------------------------------------------------------------------- /Pods/Headers/Private/YYKit/YYTextUtilities.h: -------------------------------------------------------------------------------- 1 | ../../../YYKit/YYKit/Text/String/YYTextUtilities.h -------------------------------------------------------------------------------- /Pods/Headers/Private/YYKit/YYTextView.h: -------------------------------------------------------------------------------- 1 | ../../../YYKit/YYKit/Text/YYTextView.h -------------------------------------------------------------------------------- /Pods/Headers/Private/YYKit/YYThreadSafeArray.h: -------------------------------------------------------------------------------- 1 | ../../../YYKit/YYKit/Utility/YYThreadSafeArray.h -------------------------------------------------------------------------------- /Pods/Headers/Private/YYKit/YYThreadSafeDictionary.h: -------------------------------------------------------------------------------- 1 | ../../../YYKit/YYKit/Utility/YYThreadSafeDictionary.h -------------------------------------------------------------------------------- /Pods/Headers/Private/YYKit/YYTimer.h: -------------------------------------------------------------------------------- 1 | ../../../YYKit/YYKit/Utility/YYTimer.h -------------------------------------------------------------------------------- /Pods/Headers/Private/YYKit/YYTransaction.h: -------------------------------------------------------------------------------- 1 | ../../../YYKit/YYKit/Utility/YYTransaction.h -------------------------------------------------------------------------------- /Pods/Headers/Private/YYKit/YYWeakProxy.h: -------------------------------------------------------------------------------- 1 | ../../../YYKit/YYKit/Utility/YYWeakProxy.h -------------------------------------------------------------------------------- /Pods/Headers/Private/YYKit/YYWebImageManager.h: -------------------------------------------------------------------------------- 1 | ../../../YYKit/YYKit/Image/YYWebImageManager.h -------------------------------------------------------------------------------- /Pods/Headers/Private/YYKit/YYWebImageOperation.h: -------------------------------------------------------------------------------- 1 | ../../../YYKit/YYKit/Image/YYWebImageOperation.h -------------------------------------------------------------------------------- /Pods/Headers/Private/YYKit/_YYWebImageSetter.h: -------------------------------------------------------------------------------- 1 | ../../../YYKit/YYKit/Image/Categories/_YYWebImageSetter.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/MBProgressHUD/MBProgressHUD.h: -------------------------------------------------------------------------------- 1 | ../../../MBProgressHUD/MBProgressHUD.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/NSBundle+MJRefresh.h: -------------------------------------------------------------------------------- 1 | ../../../MJRefresh/MJRefresh/NSBundle+MJRefresh.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/YTKNetwork/YTKBaseRequest.h: -------------------------------------------------------------------------------- 1 | ../../../YTKNetwork/YTKNetwork/YTKBaseRequest.h -------------------------------------------------------------------------------- /Pods/Headers/Public/YTKNetwork/YTKBatchRequest.h: -------------------------------------------------------------------------------- 1 | ../../../YTKNetwork/YTKNetwork/YTKBatchRequest.h -------------------------------------------------------------------------------- /Pods/Headers/Public/YTKNetwork/YTKBatchRequestAgent.h: -------------------------------------------------------------------------------- 1 | ../../../YTKNetwork/YTKNetwork/YTKBatchRequestAgent.h -------------------------------------------------------------------------------- /Pods/Headers/Public/YTKNetwork/YTKChainRequest.h: -------------------------------------------------------------------------------- 1 | ../../../YTKNetwork/YTKNetwork/YTKChainRequest.h -------------------------------------------------------------------------------- /Pods/Headers/Public/YTKNetwork/YTKChainRequestAgent.h: -------------------------------------------------------------------------------- 1 | ../../../YTKNetwork/YTKNetwork/YTKChainRequestAgent.h -------------------------------------------------------------------------------- /Pods/Headers/Public/YTKNetwork/YTKNetwork.h: -------------------------------------------------------------------------------- 1 | ../../../YTKNetwork/YTKNetwork/YTKNetwork.h -------------------------------------------------------------------------------- /Pods/Headers/Public/YTKNetwork/YTKNetworkAgent.h: -------------------------------------------------------------------------------- 1 | ../../../YTKNetwork/YTKNetwork/YTKNetworkAgent.h -------------------------------------------------------------------------------- /Pods/Headers/Public/YTKNetwork/YTKNetworkConfig.h: -------------------------------------------------------------------------------- 1 | ../../../YTKNetwork/YTKNetwork/YTKNetworkConfig.h -------------------------------------------------------------------------------- /Pods/Headers/Public/YTKNetwork/YTKRequest.h: -------------------------------------------------------------------------------- 1 | ../../../YTKNetwork/YTKNetwork/YTKRequest.h -------------------------------------------------------------------------------- /Pods/Headers/Public/YYKit/CALayer+YYAdd.h: -------------------------------------------------------------------------------- 1 | ../../../YYKit/YYKit/Base/Quartz/CALayer+YYAdd.h -------------------------------------------------------------------------------- /Pods/Headers/Public/YYKit/CALayer+YYWebImage.h: -------------------------------------------------------------------------------- 1 | ../../../YYKit/YYKit/Image/Categories/CALayer+YYWebImage.h -------------------------------------------------------------------------------- /Pods/Headers/Public/YYKit/MKAnnotationView+YYWebImage.h: -------------------------------------------------------------------------------- 1 | ../../../YYKit/YYKit/Image/Categories/MKAnnotationView+YYWebImage.h -------------------------------------------------------------------------------- /Pods/Headers/Public/YYKit/NSArray+YYAdd.h: -------------------------------------------------------------------------------- 1 | ../../../YYKit/YYKit/Base/Foundation/NSArray+YYAdd.h -------------------------------------------------------------------------------- /Pods/Headers/Public/YYKit/NSAttributedString+YYText.h: -------------------------------------------------------------------------------- 1 | ../../../YYKit/YYKit/Text/String/NSAttributedString+YYText.h -------------------------------------------------------------------------------- /Pods/Headers/Public/YYKit/NSBundle+YYAdd.h: -------------------------------------------------------------------------------- 1 | ../../../YYKit/YYKit/Base/Foundation/NSBundle+YYAdd.h -------------------------------------------------------------------------------- /Pods/Headers/Public/YYKit/NSData+YYAdd.h: -------------------------------------------------------------------------------- 1 | ../../../YYKit/YYKit/Base/Foundation/NSData+YYAdd.h -------------------------------------------------------------------------------- /Pods/Headers/Public/YYKit/NSDate+YYAdd.h: -------------------------------------------------------------------------------- 1 | ../../../YYKit/YYKit/Base/Foundation/NSDate+YYAdd.h -------------------------------------------------------------------------------- /Pods/Headers/Public/YYKit/NSDictionary+YYAdd.h: -------------------------------------------------------------------------------- 1 | ../../../YYKit/YYKit/Base/Foundation/NSDictionary+YYAdd.h -------------------------------------------------------------------------------- /Pods/Headers/Public/YYKit/NSKeyedUnarchiver+YYAdd.h: -------------------------------------------------------------------------------- 1 | ../../../YYKit/YYKit/Base/Foundation/NSKeyedUnarchiver+YYAdd.h -------------------------------------------------------------------------------- /Pods/Headers/Public/YYKit/NSNotificationCenter+YYAdd.h: -------------------------------------------------------------------------------- 1 | ../../../YYKit/YYKit/Base/Foundation/NSNotificationCenter+YYAdd.h -------------------------------------------------------------------------------- /Pods/Headers/Public/YYKit/NSNumber+YYAdd.h: -------------------------------------------------------------------------------- 1 | ../../../YYKit/YYKit/Base/Foundation/NSNumber+YYAdd.h -------------------------------------------------------------------------------- /Pods/Headers/Public/YYKit/NSObject+YYAdd.h: -------------------------------------------------------------------------------- 1 | ../../../YYKit/YYKit/Base/Foundation/NSObject+YYAdd.h -------------------------------------------------------------------------------- /Pods/Headers/Public/YYKit/NSObject+YYAddForARC.h: -------------------------------------------------------------------------------- 1 | ../../../YYKit/YYKit/Base/Foundation/NSObject+YYAddForARC.h -------------------------------------------------------------------------------- /Pods/Headers/Public/YYKit/NSObject+YYAddForKVO.h: -------------------------------------------------------------------------------- 1 | ../../../YYKit/YYKit/Base/Foundation/NSObject+YYAddForKVO.h -------------------------------------------------------------------------------- /Pods/Headers/Public/YYKit/NSObject+YYModel.h: -------------------------------------------------------------------------------- 1 | ../../../YYKit/YYKit/Model/NSObject+YYModel.h -------------------------------------------------------------------------------- /Pods/Headers/Public/YYKit/NSParagraphStyle+YYText.h: -------------------------------------------------------------------------------- 1 | ../../../YYKit/YYKit/Text/String/NSParagraphStyle+YYText.h -------------------------------------------------------------------------------- /Pods/Headers/Public/YYKit/NSString+YYAdd.h: -------------------------------------------------------------------------------- 1 | ../../../YYKit/YYKit/Base/Foundation/NSString+YYAdd.h -------------------------------------------------------------------------------- /Pods/Headers/Public/YYKit/NSThread+YYAdd.h: -------------------------------------------------------------------------------- 1 | ../../../YYKit/YYKit/Base/Foundation/NSThread+YYAdd.h -------------------------------------------------------------------------------- /Pods/Headers/Public/YYKit/NSTimer+YYAdd.h: -------------------------------------------------------------------------------- 1 | ../../../YYKit/YYKit/Base/Foundation/NSTimer+YYAdd.h -------------------------------------------------------------------------------- /Pods/Headers/Public/YYKit/UIApplication+YYAdd.h: -------------------------------------------------------------------------------- 1 | ../../../YYKit/YYKit/Base/UIKit/UIApplication+YYAdd.h -------------------------------------------------------------------------------- /Pods/Headers/Public/YYKit/UIBarButtonItem+YYAdd.h: -------------------------------------------------------------------------------- 1 | ../../../YYKit/YYKit/Base/UIKit/UIBarButtonItem+YYAdd.h -------------------------------------------------------------------------------- /Pods/Headers/Public/YYKit/UIBezierPath+YYAdd.h: -------------------------------------------------------------------------------- 1 | ../../../YYKit/YYKit/Base/UIKit/UIBezierPath+YYAdd.h -------------------------------------------------------------------------------- /Pods/Headers/Public/YYKit/UIButton+YYWebImage.h: -------------------------------------------------------------------------------- 1 | ../../../YYKit/YYKit/Image/Categories/UIButton+YYWebImage.h -------------------------------------------------------------------------------- /Pods/Headers/Public/YYKit/UIColor+YYAdd.h: -------------------------------------------------------------------------------- 1 | ../../../YYKit/YYKit/Base/UIKit/UIColor+YYAdd.h -------------------------------------------------------------------------------- /Pods/Headers/Public/YYKit/UIControl+YYAdd.h: -------------------------------------------------------------------------------- 1 | ../../../YYKit/YYKit/Base/UIKit/UIControl+YYAdd.h -------------------------------------------------------------------------------- /Pods/Headers/Public/YYKit/UIDevice+YYAdd.h: -------------------------------------------------------------------------------- 1 | ../../../YYKit/YYKit/Base/UIKit/UIDevice+YYAdd.h -------------------------------------------------------------------------------- /Pods/Headers/Public/YYKit/UIFont+YYAdd.h: -------------------------------------------------------------------------------- 1 | ../../../YYKit/YYKit/Base/UIKit/UIFont+YYAdd.h -------------------------------------------------------------------------------- /Pods/Headers/Public/YYKit/UIGestureRecognizer+YYAdd.h: -------------------------------------------------------------------------------- 1 | ../../../YYKit/YYKit/Base/UIKit/UIGestureRecognizer+YYAdd.h -------------------------------------------------------------------------------- /Pods/Headers/Public/YYKit/UIImage+YYAdd.h: -------------------------------------------------------------------------------- 1 | ../../../YYKit/YYKit/Base/UIKit/UIImage+YYAdd.h -------------------------------------------------------------------------------- /Pods/Headers/Public/YYKit/UIImageView+YYWebImage.h: -------------------------------------------------------------------------------- 1 | ../../../YYKit/YYKit/Image/Categories/UIImageView+YYWebImage.h -------------------------------------------------------------------------------- /Pods/Headers/Public/YYKit/UIPasteboard+YYText.h: -------------------------------------------------------------------------------- 1 | ../../../YYKit/YYKit/Text/String/UIPasteboard+YYText.h -------------------------------------------------------------------------------- /Pods/Headers/Public/YYKit/UIScreen+YYAdd.h: -------------------------------------------------------------------------------- 1 | ../../../YYKit/YYKit/Base/UIKit/UIScreen+YYAdd.h -------------------------------------------------------------------------------- /Pods/Headers/Public/YYKit/UIScrollView+YYAdd.h: -------------------------------------------------------------------------------- 1 | ../../../YYKit/YYKit/Base/UIKit/UIScrollView+YYAdd.h -------------------------------------------------------------------------------- /Pods/Headers/Public/YYKit/UITableView+YYAdd.h: -------------------------------------------------------------------------------- 1 | ../../../YYKit/YYKit/Base/UIKit/UITableView+YYAdd.h -------------------------------------------------------------------------------- /Pods/Headers/Public/YYKit/UITextField+YYAdd.h: -------------------------------------------------------------------------------- 1 | ../../../YYKit/YYKit/Base/UIKit/UITextField+YYAdd.h -------------------------------------------------------------------------------- /Pods/Headers/Public/YYKit/UIView+YYAdd.h: -------------------------------------------------------------------------------- 1 | ../../../YYKit/YYKit/Base/UIKit/UIView+YYAdd.h -------------------------------------------------------------------------------- /Pods/Headers/Public/YYKit/WebP/config.h: -------------------------------------------------------------------------------- 1 | ../../../../YYKit/Vendor/WebP.framework/Headers/config.h -------------------------------------------------------------------------------- /Pods/Headers/Public/YYKit/WebP/decode.h: -------------------------------------------------------------------------------- 1 | ../../../../YYKit/Vendor/WebP.framework/Headers/decode.h -------------------------------------------------------------------------------- /Pods/Headers/Public/YYKit/WebP/demux.h: -------------------------------------------------------------------------------- 1 | ../../../../YYKit/Vendor/WebP.framework/Headers/demux.h -------------------------------------------------------------------------------- /Pods/Headers/Public/YYKit/WebP/encode.h: -------------------------------------------------------------------------------- 1 | ../../../../YYKit/Vendor/WebP.framework/Headers/encode.h -------------------------------------------------------------------------------- /Pods/Headers/Public/YYKit/WebP/extras.h: -------------------------------------------------------------------------------- 1 | ../../../../YYKit/Vendor/WebP.framework/Headers/extras.h -------------------------------------------------------------------------------- /Pods/Headers/Public/YYKit/WebP/format_constants.h: -------------------------------------------------------------------------------- 1 | ../../../../YYKit/Vendor/WebP.framework/Headers/format_constants.h -------------------------------------------------------------------------------- /Pods/Headers/Public/YYKit/WebP/mux.h: -------------------------------------------------------------------------------- 1 | ../../../../YYKit/Vendor/WebP.framework/Headers/mux.h -------------------------------------------------------------------------------- /Pods/Headers/Public/YYKit/WebP/mux_types.h: -------------------------------------------------------------------------------- 1 | ../../../../YYKit/Vendor/WebP.framework/Headers/mux_types.h -------------------------------------------------------------------------------- /Pods/Headers/Public/YYKit/WebP/types.h: -------------------------------------------------------------------------------- 1 | ../../../../YYKit/Vendor/WebP.framework/Headers/types.h -------------------------------------------------------------------------------- /Pods/Headers/Public/YYKit/YYAnimatedImageView.h: -------------------------------------------------------------------------------- 1 | ../../../YYKit/YYKit/Image/YYAnimatedImageView.h -------------------------------------------------------------------------------- /Pods/Headers/Public/YYKit/YYAsyncLayer.h: -------------------------------------------------------------------------------- 1 | ../../../YYKit/YYKit/Utility/YYAsyncLayer.h -------------------------------------------------------------------------------- /Pods/Headers/Public/YYKit/YYCGUtilities.h: -------------------------------------------------------------------------------- 1 | ../../../YYKit/YYKit/Base/Quartz/YYCGUtilities.h -------------------------------------------------------------------------------- /Pods/Headers/Public/YYKit/YYCache.h: -------------------------------------------------------------------------------- 1 | ../../../YYKit/YYKit/Cache/YYCache.h -------------------------------------------------------------------------------- /Pods/Headers/Public/YYKit/YYClassInfo.h: -------------------------------------------------------------------------------- 1 | ../../../YYKit/YYKit/Model/YYClassInfo.h -------------------------------------------------------------------------------- /Pods/Headers/Public/YYKit/YYDiskCache.h: -------------------------------------------------------------------------------- 1 | ../../../YYKit/YYKit/Cache/YYDiskCache.h -------------------------------------------------------------------------------- /Pods/Headers/Public/YYKit/YYDispatchQueuePool.h: -------------------------------------------------------------------------------- 1 | ../../../YYKit/YYKit/Utility/YYDispatchQueuePool.h -------------------------------------------------------------------------------- /Pods/Headers/Public/YYKit/YYFileHash.h: -------------------------------------------------------------------------------- 1 | ../../../YYKit/YYKit/Utility/YYFileHash.h -------------------------------------------------------------------------------- /Pods/Headers/Public/YYKit/YYFrameImage.h: -------------------------------------------------------------------------------- 1 | ../../../YYKit/YYKit/Image/YYFrameImage.h -------------------------------------------------------------------------------- /Pods/Headers/Public/YYKit/YYGestureRecognizer.h: -------------------------------------------------------------------------------- 1 | ../../../YYKit/YYKit/Utility/YYGestureRecognizer.h -------------------------------------------------------------------------------- /Pods/Headers/Public/YYKit/YYImage.h: -------------------------------------------------------------------------------- 1 | ../../../YYKit/YYKit/Image/YYImage.h -------------------------------------------------------------------------------- /Pods/Headers/Public/YYKit/YYImageCache.h: -------------------------------------------------------------------------------- 1 | ../../../YYKit/YYKit/Image/YYImageCache.h -------------------------------------------------------------------------------- /Pods/Headers/Public/YYKit/YYImageCoder.h: -------------------------------------------------------------------------------- 1 | ../../../YYKit/YYKit/Image/YYImageCoder.h -------------------------------------------------------------------------------- /Pods/Headers/Public/YYKit/YYKVStorage.h: -------------------------------------------------------------------------------- 1 | ../../../YYKit/YYKit/Cache/YYKVStorage.h -------------------------------------------------------------------------------- /Pods/Headers/Public/YYKit/YYKeychain.h: -------------------------------------------------------------------------------- 1 | ../../../YYKit/YYKit/Utility/YYKeychain.h -------------------------------------------------------------------------------- /Pods/Headers/Public/YYKit/YYKit.h: -------------------------------------------------------------------------------- 1 | ../../../YYKit/YYKit/YYKit.h -------------------------------------------------------------------------------- /Pods/Headers/Public/YYKit/YYKitMacro.h: -------------------------------------------------------------------------------- 1 | ../../../YYKit/YYKit/Base/YYKitMacro.h -------------------------------------------------------------------------------- /Pods/Headers/Public/YYKit/YYLabel.h: -------------------------------------------------------------------------------- 1 | ../../../YYKit/YYKit/Text/YYLabel.h -------------------------------------------------------------------------------- /Pods/Headers/Public/YYKit/YYMemoryCache.h: -------------------------------------------------------------------------------- 1 | ../../../YYKit/YYKit/Cache/YYMemoryCache.h -------------------------------------------------------------------------------- /Pods/Headers/Public/YYKit/YYReachability.h: -------------------------------------------------------------------------------- 1 | ../../../YYKit/YYKit/Utility/YYReachability.h -------------------------------------------------------------------------------- /Pods/Headers/Public/YYKit/YYSentinel.h: -------------------------------------------------------------------------------- 1 | ../../../YYKit/YYKit/Utility/YYSentinel.h -------------------------------------------------------------------------------- /Pods/Headers/Public/YYKit/YYSpriteSheetImage.h: -------------------------------------------------------------------------------- 1 | ../../../YYKit/YYKit/Image/YYSpriteSheetImage.h -------------------------------------------------------------------------------- /Pods/Headers/Public/YYKit/YYTextArchiver.h: -------------------------------------------------------------------------------- 1 | ../../../YYKit/YYKit/Text/String/YYTextArchiver.h -------------------------------------------------------------------------------- /Pods/Headers/Public/YYKit/YYTextAttribute.h: -------------------------------------------------------------------------------- 1 | ../../../YYKit/YYKit/Text/String/YYTextAttribute.h -------------------------------------------------------------------------------- /Pods/Headers/Public/YYKit/YYTextContainerView.h: -------------------------------------------------------------------------------- 1 | ../../../YYKit/YYKit/Text/Component/YYTextContainerView.h -------------------------------------------------------------------------------- /Pods/Headers/Public/YYKit/YYTextDebugOption.h: -------------------------------------------------------------------------------- 1 | ../../../YYKit/YYKit/Text/Component/YYTextDebugOption.h -------------------------------------------------------------------------------- /Pods/Headers/Public/YYKit/YYTextEffectWindow.h: -------------------------------------------------------------------------------- 1 | ../../../YYKit/YYKit/Text/Component/YYTextEffectWindow.h -------------------------------------------------------------------------------- /Pods/Headers/Public/YYKit/YYTextInput.h: -------------------------------------------------------------------------------- 1 | ../../../YYKit/YYKit/Text/Component/YYTextInput.h -------------------------------------------------------------------------------- /Pods/Headers/Public/YYKit/YYTextKeyboardManager.h: -------------------------------------------------------------------------------- 1 | ../../../YYKit/YYKit/Text/Component/YYTextKeyboardManager.h -------------------------------------------------------------------------------- /Pods/Headers/Public/YYKit/YYTextLayout.h: -------------------------------------------------------------------------------- 1 | ../../../YYKit/YYKit/Text/Component/YYTextLayout.h -------------------------------------------------------------------------------- /Pods/Headers/Public/YYKit/YYTextLine.h: -------------------------------------------------------------------------------- 1 | ../../../YYKit/YYKit/Text/Component/YYTextLine.h -------------------------------------------------------------------------------- /Pods/Headers/Public/YYKit/YYTextMagnifier.h: -------------------------------------------------------------------------------- 1 | ../../../YYKit/YYKit/Text/Component/YYTextMagnifier.h -------------------------------------------------------------------------------- /Pods/Headers/Public/YYKit/YYTextParser.h: -------------------------------------------------------------------------------- 1 | ../../../YYKit/YYKit/Text/String/YYTextParser.h -------------------------------------------------------------------------------- /Pods/Headers/Public/YYKit/YYTextRubyAnnotation.h: -------------------------------------------------------------------------------- 1 | ../../../YYKit/YYKit/Text/String/YYTextRubyAnnotation.h -------------------------------------------------------------------------------- /Pods/Headers/Public/YYKit/YYTextRunDelegate.h: -------------------------------------------------------------------------------- 1 | ../../../YYKit/YYKit/Text/String/YYTextRunDelegate.h -------------------------------------------------------------------------------- /Pods/Headers/Public/YYKit/YYTextSelectionView.h: -------------------------------------------------------------------------------- 1 | ../../../YYKit/YYKit/Text/Component/YYTextSelectionView.h -------------------------------------------------------------------------------- /Pods/Headers/Public/YYKit/YYTextUtilities.h: -------------------------------------------------------------------------------- 1 | ../../../YYKit/YYKit/Text/String/YYTextUtilities.h -------------------------------------------------------------------------------- /Pods/Headers/Public/YYKit/YYTextView.h: -------------------------------------------------------------------------------- 1 | ../../../YYKit/YYKit/Text/YYTextView.h -------------------------------------------------------------------------------- /Pods/Headers/Public/YYKit/YYThreadSafeArray.h: -------------------------------------------------------------------------------- 1 | ../../../YYKit/YYKit/Utility/YYThreadSafeArray.h -------------------------------------------------------------------------------- /Pods/Headers/Public/YYKit/YYThreadSafeDictionary.h: -------------------------------------------------------------------------------- 1 | ../../../YYKit/YYKit/Utility/YYThreadSafeDictionary.h -------------------------------------------------------------------------------- /Pods/Headers/Public/YYKit/YYTimer.h: -------------------------------------------------------------------------------- 1 | ../../../YYKit/YYKit/Utility/YYTimer.h -------------------------------------------------------------------------------- /Pods/Headers/Public/YYKit/YYTransaction.h: -------------------------------------------------------------------------------- 1 | ../../../YYKit/YYKit/Utility/YYTransaction.h -------------------------------------------------------------------------------- /Pods/Headers/Public/YYKit/YYWeakProxy.h: -------------------------------------------------------------------------------- 1 | ../../../YYKit/YYKit/Utility/YYWeakProxy.h -------------------------------------------------------------------------------- /Pods/Headers/Public/YYKit/YYWebImageManager.h: -------------------------------------------------------------------------------- 1 | ../../../YYKit/YYKit/Image/YYWebImageManager.h -------------------------------------------------------------------------------- /Pods/Headers/Public/YYKit/YYWebImageOperation.h: -------------------------------------------------------------------------------- 1 | ../../../YYKit/YYKit/Image/YYWebImageOperation.h -------------------------------------------------------------------------------- /Pods/Headers/Public/YYKit/_YYWebImageSetter.h: -------------------------------------------------------------------------------- 1 | ../../../YYKit/YYKit/Image/Categories/_YYWebImageSetter.h -------------------------------------------------------------------------------- /Pods/MBProgressHUD/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuYang8026/UniversalProject/HEAD/Pods/MBProgressHUD/LICENSE -------------------------------------------------------------------------------- /Pods/MBProgressHUD/MBProgressHUD.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuYang8026/UniversalProject/HEAD/Pods/MBProgressHUD/MBProgressHUD.h -------------------------------------------------------------------------------- /Pods/MBProgressHUD/MBProgressHUD.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuYang8026/UniversalProject/HEAD/Pods/MBProgressHUD/MBProgressHUD.m -------------------------------------------------------------------------------- /Pods/MBProgressHUD/README.mdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuYang8026/UniversalProject/HEAD/Pods/MBProgressHUD/README.mdown -------------------------------------------------------------------------------- /Pods/MJRefresh/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuYang8026/UniversalProject/HEAD/Pods/MJRefresh/LICENSE -------------------------------------------------------------------------------- /Pods/MJRefresh/MJRefresh/Base/MJRefreshAutoFooter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuYang8026/UniversalProject/HEAD/Pods/MJRefresh/MJRefresh/Base/MJRefreshAutoFooter.h -------------------------------------------------------------------------------- /Pods/MJRefresh/MJRefresh/Base/MJRefreshAutoFooter.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuYang8026/UniversalProject/HEAD/Pods/MJRefresh/MJRefresh/Base/MJRefreshAutoFooter.m -------------------------------------------------------------------------------- /Pods/MJRefresh/MJRefresh/Base/MJRefreshBackFooter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuYang8026/UniversalProject/HEAD/Pods/MJRefresh/MJRefresh/Base/MJRefreshBackFooter.h -------------------------------------------------------------------------------- /Pods/MJRefresh/MJRefresh/Base/MJRefreshBackFooter.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuYang8026/UniversalProject/HEAD/Pods/MJRefresh/MJRefresh/Base/MJRefreshBackFooter.m -------------------------------------------------------------------------------- /Pods/MJRefresh/MJRefresh/Base/MJRefreshComponent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuYang8026/UniversalProject/HEAD/Pods/MJRefresh/MJRefresh/Base/MJRefreshComponent.h -------------------------------------------------------------------------------- /Pods/MJRefresh/MJRefresh/Base/MJRefreshComponent.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuYang8026/UniversalProject/HEAD/Pods/MJRefresh/MJRefresh/Base/MJRefreshComponent.m -------------------------------------------------------------------------------- /Pods/MJRefresh/MJRefresh/Base/MJRefreshFooter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuYang8026/UniversalProject/HEAD/Pods/MJRefresh/MJRefresh/Base/MJRefreshFooter.h -------------------------------------------------------------------------------- /Pods/MJRefresh/MJRefresh/Base/MJRefreshFooter.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuYang8026/UniversalProject/HEAD/Pods/MJRefresh/MJRefresh/Base/MJRefreshFooter.m -------------------------------------------------------------------------------- /Pods/MJRefresh/MJRefresh/Base/MJRefreshHeader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuYang8026/UniversalProject/HEAD/Pods/MJRefresh/MJRefresh/Base/MJRefreshHeader.h -------------------------------------------------------------------------------- /Pods/MJRefresh/MJRefresh/Base/MJRefreshHeader.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuYang8026/UniversalProject/HEAD/Pods/MJRefresh/MJRefresh/Base/MJRefreshHeader.m -------------------------------------------------------------------------------- /Pods/MJRefresh/MJRefresh/MJRefresh.bundle/arrow@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuYang8026/UniversalProject/HEAD/Pods/MJRefresh/MJRefresh/MJRefresh.bundle/arrow@2x.png -------------------------------------------------------------------------------- /Pods/MJRefresh/MJRefresh/MJRefresh.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuYang8026/UniversalProject/HEAD/Pods/MJRefresh/MJRefresh/MJRefresh.h -------------------------------------------------------------------------------- /Pods/MJRefresh/MJRefresh/MJRefreshConst.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuYang8026/UniversalProject/HEAD/Pods/MJRefresh/MJRefresh/MJRefreshConst.h -------------------------------------------------------------------------------- /Pods/MJRefresh/MJRefresh/MJRefreshConst.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuYang8026/UniversalProject/HEAD/Pods/MJRefresh/MJRefresh/MJRefreshConst.m -------------------------------------------------------------------------------- /Pods/MJRefresh/MJRefresh/NSBundle+MJRefresh.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuYang8026/UniversalProject/HEAD/Pods/MJRefresh/MJRefresh/NSBundle+MJRefresh.h -------------------------------------------------------------------------------- /Pods/MJRefresh/MJRefresh/NSBundle+MJRefresh.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuYang8026/UniversalProject/HEAD/Pods/MJRefresh/MJRefresh/NSBundle+MJRefresh.m -------------------------------------------------------------------------------- /Pods/MJRefresh/MJRefresh/UIScrollView+MJExtension.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuYang8026/UniversalProject/HEAD/Pods/MJRefresh/MJRefresh/UIScrollView+MJExtension.h -------------------------------------------------------------------------------- /Pods/MJRefresh/MJRefresh/UIScrollView+MJExtension.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuYang8026/UniversalProject/HEAD/Pods/MJRefresh/MJRefresh/UIScrollView+MJExtension.m -------------------------------------------------------------------------------- /Pods/MJRefresh/MJRefresh/UIScrollView+MJRefresh.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuYang8026/UniversalProject/HEAD/Pods/MJRefresh/MJRefresh/UIScrollView+MJRefresh.h -------------------------------------------------------------------------------- /Pods/MJRefresh/MJRefresh/UIScrollView+MJRefresh.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuYang8026/UniversalProject/HEAD/Pods/MJRefresh/MJRefresh/UIScrollView+MJRefresh.m -------------------------------------------------------------------------------- /Pods/MJRefresh/MJRefresh/UIView+MJExtension.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuYang8026/UniversalProject/HEAD/Pods/MJRefresh/MJRefresh/UIView+MJExtension.h -------------------------------------------------------------------------------- /Pods/MJRefresh/MJRefresh/UIView+MJExtension.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuYang8026/UniversalProject/HEAD/Pods/MJRefresh/MJRefresh/UIView+MJExtension.m -------------------------------------------------------------------------------- /Pods/MJRefresh/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuYang8026/UniversalProject/HEAD/Pods/MJRefresh/README.md -------------------------------------------------------------------------------- /Pods/Manifest.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuYang8026/UniversalProject/HEAD/Pods/Manifest.lock -------------------------------------------------------------------------------- /Pods/Masonry/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuYang8026/UniversalProject/HEAD/Pods/Masonry/LICENSE -------------------------------------------------------------------------------- /Pods/Masonry/Masonry/MASCompositeConstraint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuYang8026/UniversalProject/HEAD/Pods/Masonry/Masonry/MASCompositeConstraint.h -------------------------------------------------------------------------------- /Pods/Masonry/Masonry/MASCompositeConstraint.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuYang8026/UniversalProject/HEAD/Pods/Masonry/Masonry/MASCompositeConstraint.m -------------------------------------------------------------------------------- /Pods/Masonry/Masonry/MASConstraint+Private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuYang8026/UniversalProject/HEAD/Pods/Masonry/Masonry/MASConstraint+Private.h -------------------------------------------------------------------------------- /Pods/Masonry/Masonry/MASConstraint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuYang8026/UniversalProject/HEAD/Pods/Masonry/Masonry/MASConstraint.h -------------------------------------------------------------------------------- /Pods/Masonry/Masonry/MASConstraint.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuYang8026/UniversalProject/HEAD/Pods/Masonry/Masonry/MASConstraint.m -------------------------------------------------------------------------------- /Pods/Masonry/Masonry/MASConstraintMaker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuYang8026/UniversalProject/HEAD/Pods/Masonry/Masonry/MASConstraintMaker.h -------------------------------------------------------------------------------- /Pods/Masonry/Masonry/MASConstraintMaker.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuYang8026/UniversalProject/HEAD/Pods/Masonry/Masonry/MASConstraintMaker.m -------------------------------------------------------------------------------- /Pods/Masonry/Masonry/MASLayoutConstraint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuYang8026/UniversalProject/HEAD/Pods/Masonry/Masonry/MASLayoutConstraint.h -------------------------------------------------------------------------------- /Pods/Masonry/Masonry/MASLayoutConstraint.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuYang8026/UniversalProject/HEAD/Pods/Masonry/Masonry/MASLayoutConstraint.m -------------------------------------------------------------------------------- /Pods/Masonry/Masonry/MASUtilities.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuYang8026/UniversalProject/HEAD/Pods/Masonry/Masonry/MASUtilities.h -------------------------------------------------------------------------------- /Pods/Masonry/Masonry/MASViewAttribute.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuYang8026/UniversalProject/HEAD/Pods/Masonry/Masonry/MASViewAttribute.h -------------------------------------------------------------------------------- /Pods/Masonry/Masonry/MASViewAttribute.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuYang8026/UniversalProject/HEAD/Pods/Masonry/Masonry/MASViewAttribute.m -------------------------------------------------------------------------------- /Pods/Masonry/Masonry/MASViewConstraint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuYang8026/UniversalProject/HEAD/Pods/Masonry/Masonry/MASViewConstraint.h -------------------------------------------------------------------------------- /Pods/Masonry/Masonry/MASViewConstraint.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuYang8026/UniversalProject/HEAD/Pods/Masonry/Masonry/MASViewConstraint.m -------------------------------------------------------------------------------- /Pods/Masonry/Masonry/Masonry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuYang8026/UniversalProject/HEAD/Pods/Masonry/Masonry/Masonry.h -------------------------------------------------------------------------------- /Pods/Masonry/Masonry/NSArray+MASAdditions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuYang8026/UniversalProject/HEAD/Pods/Masonry/Masonry/NSArray+MASAdditions.h -------------------------------------------------------------------------------- /Pods/Masonry/Masonry/NSArray+MASAdditions.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuYang8026/UniversalProject/HEAD/Pods/Masonry/Masonry/NSArray+MASAdditions.m -------------------------------------------------------------------------------- /Pods/Masonry/Masonry/NSArray+MASShorthandAdditions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuYang8026/UniversalProject/HEAD/Pods/Masonry/Masonry/NSArray+MASShorthandAdditions.h -------------------------------------------------------------------------------- /Pods/Masonry/Masonry/View+MASAdditions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuYang8026/UniversalProject/HEAD/Pods/Masonry/Masonry/View+MASAdditions.h -------------------------------------------------------------------------------- /Pods/Masonry/Masonry/View+MASAdditions.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuYang8026/UniversalProject/HEAD/Pods/Masonry/Masonry/View+MASAdditions.m -------------------------------------------------------------------------------- /Pods/Masonry/Masonry/View+MASShorthandAdditions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuYang8026/UniversalProject/HEAD/Pods/Masonry/Masonry/View+MASShorthandAdditions.h -------------------------------------------------------------------------------- /Pods/Masonry/Masonry/ViewController+MASAdditions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuYang8026/UniversalProject/HEAD/Pods/Masonry/Masonry/ViewController+MASAdditions.h -------------------------------------------------------------------------------- /Pods/Masonry/Masonry/ViewController+MASAdditions.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuYang8026/UniversalProject/HEAD/Pods/Masonry/Masonry/ViewController+MASAdditions.m -------------------------------------------------------------------------------- /Pods/Masonry/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuYang8026/UniversalProject/HEAD/Pods/Masonry/README.md -------------------------------------------------------------------------------- /Pods/Pods.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuYang8026/UniversalProject/HEAD/Pods/Pods.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Pods/SDWebImage/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuYang8026/UniversalProject/HEAD/Pods/SDWebImage/LICENSE -------------------------------------------------------------------------------- /Pods/SDWebImage/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuYang8026/UniversalProject/HEAD/Pods/SDWebImage/README.md -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/NSData+ImageContentType.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuYang8026/UniversalProject/HEAD/Pods/SDWebImage/SDWebImage/NSData+ImageContentType.h -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/NSData+ImageContentType.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuYang8026/UniversalProject/HEAD/Pods/SDWebImage/SDWebImage/NSData+ImageContentType.m -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/SDImageCache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuYang8026/UniversalProject/HEAD/Pods/SDWebImage/SDWebImage/SDImageCache.h -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/SDImageCache.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuYang8026/UniversalProject/HEAD/Pods/SDWebImage/SDWebImage/SDImageCache.m -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/SDWebImageCompat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuYang8026/UniversalProject/HEAD/Pods/SDWebImage/SDWebImage/SDWebImageCompat.h -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/SDWebImageCompat.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuYang8026/UniversalProject/HEAD/Pods/SDWebImage/SDWebImage/SDWebImageCompat.m -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/SDWebImageDecoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuYang8026/UniversalProject/HEAD/Pods/SDWebImage/SDWebImage/SDWebImageDecoder.h -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/SDWebImageDecoder.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuYang8026/UniversalProject/HEAD/Pods/SDWebImage/SDWebImage/SDWebImageDecoder.m -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/SDWebImageDownloader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuYang8026/UniversalProject/HEAD/Pods/SDWebImage/SDWebImage/SDWebImageDownloader.h -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/SDWebImageDownloader.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuYang8026/UniversalProject/HEAD/Pods/SDWebImage/SDWebImage/SDWebImageDownloader.m -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/SDWebImageManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuYang8026/UniversalProject/HEAD/Pods/SDWebImage/SDWebImage/SDWebImageManager.h -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/SDWebImageManager.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuYang8026/UniversalProject/HEAD/Pods/SDWebImage/SDWebImage/SDWebImageManager.m -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/SDWebImageOperation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuYang8026/UniversalProject/HEAD/Pods/SDWebImage/SDWebImage/SDWebImageOperation.h -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/SDWebImagePrefetcher.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuYang8026/UniversalProject/HEAD/Pods/SDWebImage/SDWebImage/SDWebImagePrefetcher.h -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/SDWebImagePrefetcher.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuYang8026/UniversalProject/HEAD/Pods/SDWebImage/SDWebImage/SDWebImagePrefetcher.m -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/UIButton+WebCache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuYang8026/UniversalProject/HEAD/Pods/SDWebImage/SDWebImage/UIButton+WebCache.h -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/UIButton+WebCache.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuYang8026/UniversalProject/HEAD/Pods/SDWebImage/SDWebImage/UIButton+WebCache.m -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/UIImage+GIF.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuYang8026/UniversalProject/HEAD/Pods/SDWebImage/SDWebImage/UIImage+GIF.h -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/UIImage+GIF.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuYang8026/UniversalProject/HEAD/Pods/SDWebImage/SDWebImage/UIImage+GIF.m -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/UIImage+MultiFormat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuYang8026/UniversalProject/HEAD/Pods/SDWebImage/SDWebImage/UIImage+MultiFormat.h -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/UIImage+MultiFormat.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuYang8026/UniversalProject/HEAD/Pods/SDWebImage/SDWebImage/UIImage+MultiFormat.m -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/UIImageView+WebCache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuYang8026/UniversalProject/HEAD/Pods/SDWebImage/SDWebImage/UIImageView+WebCache.h -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/UIImageView+WebCache.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuYang8026/UniversalProject/HEAD/Pods/SDWebImage/SDWebImage/UIImageView+WebCache.m -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/UIView+WebCacheOperation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuYang8026/UniversalProject/HEAD/Pods/SDWebImage/SDWebImage/UIView+WebCacheOperation.h -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/UIView+WebCacheOperation.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuYang8026/UniversalProject/HEAD/Pods/SDWebImage/SDWebImage/UIView+WebCacheOperation.m -------------------------------------------------------------------------------- /Pods/Target Support Files/MJRefresh/MJRefresh-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuYang8026/UniversalProject/HEAD/Pods/Target Support Files/MJRefresh/MJRefresh-dummy.m -------------------------------------------------------------------------------- /Pods/Target Support Files/MJRefresh/MJRefresh-prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuYang8026/UniversalProject/HEAD/Pods/Target Support Files/MJRefresh/MJRefresh-prefix.pch -------------------------------------------------------------------------------- /Pods/Target Support Files/MJRefresh/MJRefresh.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuYang8026/UniversalProject/HEAD/Pods/Target Support Files/MJRefresh/MJRefresh.xcconfig -------------------------------------------------------------------------------- /Pods/Target Support Files/Masonry/Masonry-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuYang8026/UniversalProject/HEAD/Pods/Target Support Files/Masonry/Masonry-dummy.m -------------------------------------------------------------------------------- /Pods/Target Support Files/Masonry/Masonry-prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuYang8026/UniversalProject/HEAD/Pods/Target Support Files/Masonry/Masonry-prefix.pch -------------------------------------------------------------------------------- /Pods/Target Support Files/Masonry/Masonry.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuYang8026/UniversalProject/HEAD/Pods/Target Support Files/Masonry/Masonry.xcconfig -------------------------------------------------------------------------------- /Pods/Target Support Files/SDWebImage/SDWebImage-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuYang8026/UniversalProject/HEAD/Pods/Target Support Files/SDWebImage/SDWebImage-dummy.m -------------------------------------------------------------------------------- /Pods/Target Support Files/SDWebImage/SDWebImage.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuYang8026/UniversalProject/HEAD/Pods/Target Support Files/SDWebImage/SDWebImage.xcconfig -------------------------------------------------------------------------------- /Pods/Target Support Files/YTKNetwork/YTKNetwork-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuYang8026/UniversalProject/HEAD/Pods/Target Support Files/YTKNetwork/YTKNetwork-dummy.m -------------------------------------------------------------------------------- /Pods/Target Support Files/YTKNetwork/YTKNetwork.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuYang8026/UniversalProject/HEAD/Pods/Target Support Files/YTKNetwork/YTKNetwork.xcconfig -------------------------------------------------------------------------------- /Pods/Target Support Files/YYKit/YYKit-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuYang8026/UniversalProject/HEAD/Pods/Target Support Files/YYKit/YYKit-dummy.m -------------------------------------------------------------------------------- /Pods/Target Support Files/YYKit/YYKit-prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuYang8026/UniversalProject/HEAD/Pods/Target Support Files/YYKit/YYKit-prefix.pch -------------------------------------------------------------------------------- /Pods/Target Support Files/YYKit/YYKit.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuYang8026/UniversalProject/HEAD/Pods/Target Support Files/YYKit/YYKit.xcconfig -------------------------------------------------------------------------------- /Pods/YTKNetwork/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuYang8026/UniversalProject/HEAD/Pods/YTKNetwork/LICENSE -------------------------------------------------------------------------------- /Pods/YTKNetwork/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuYang8026/UniversalProject/HEAD/Pods/YTKNetwork/README.md -------------------------------------------------------------------------------- /Pods/YTKNetwork/YTKNetwork/YTKBaseRequest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuYang8026/UniversalProject/HEAD/Pods/YTKNetwork/YTKNetwork/YTKBaseRequest.h -------------------------------------------------------------------------------- /Pods/YTKNetwork/YTKNetwork/YTKBaseRequest.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuYang8026/UniversalProject/HEAD/Pods/YTKNetwork/YTKNetwork/YTKBaseRequest.m -------------------------------------------------------------------------------- /Pods/YTKNetwork/YTKNetwork/YTKBatchRequest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuYang8026/UniversalProject/HEAD/Pods/YTKNetwork/YTKNetwork/YTKBatchRequest.h -------------------------------------------------------------------------------- /Pods/YTKNetwork/YTKNetwork/YTKBatchRequest.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuYang8026/UniversalProject/HEAD/Pods/YTKNetwork/YTKNetwork/YTKBatchRequest.m -------------------------------------------------------------------------------- /Pods/YTKNetwork/YTKNetwork/YTKBatchRequestAgent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuYang8026/UniversalProject/HEAD/Pods/YTKNetwork/YTKNetwork/YTKBatchRequestAgent.h -------------------------------------------------------------------------------- /Pods/YTKNetwork/YTKNetwork/YTKBatchRequestAgent.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuYang8026/UniversalProject/HEAD/Pods/YTKNetwork/YTKNetwork/YTKBatchRequestAgent.m -------------------------------------------------------------------------------- /Pods/YTKNetwork/YTKNetwork/YTKChainRequest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuYang8026/UniversalProject/HEAD/Pods/YTKNetwork/YTKNetwork/YTKChainRequest.h -------------------------------------------------------------------------------- /Pods/YTKNetwork/YTKNetwork/YTKChainRequest.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuYang8026/UniversalProject/HEAD/Pods/YTKNetwork/YTKNetwork/YTKChainRequest.m -------------------------------------------------------------------------------- /Pods/YTKNetwork/YTKNetwork/YTKChainRequestAgent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuYang8026/UniversalProject/HEAD/Pods/YTKNetwork/YTKNetwork/YTKChainRequestAgent.h -------------------------------------------------------------------------------- /Pods/YTKNetwork/YTKNetwork/YTKChainRequestAgent.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuYang8026/UniversalProject/HEAD/Pods/YTKNetwork/YTKNetwork/YTKChainRequestAgent.m -------------------------------------------------------------------------------- /Pods/YTKNetwork/YTKNetwork/YTKNetwork.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuYang8026/UniversalProject/HEAD/Pods/YTKNetwork/YTKNetwork/YTKNetwork.h -------------------------------------------------------------------------------- /Pods/YTKNetwork/YTKNetwork/YTKNetworkAgent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuYang8026/UniversalProject/HEAD/Pods/YTKNetwork/YTKNetwork/YTKNetworkAgent.h -------------------------------------------------------------------------------- /Pods/YTKNetwork/YTKNetwork/YTKNetworkAgent.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuYang8026/UniversalProject/HEAD/Pods/YTKNetwork/YTKNetwork/YTKNetworkAgent.m -------------------------------------------------------------------------------- /Pods/YTKNetwork/YTKNetwork/YTKNetworkConfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuYang8026/UniversalProject/HEAD/Pods/YTKNetwork/YTKNetwork/YTKNetworkConfig.h -------------------------------------------------------------------------------- /Pods/YTKNetwork/YTKNetwork/YTKNetworkConfig.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuYang8026/UniversalProject/HEAD/Pods/YTKNetwork/YTKNetwork/YTKNetworkConfig.m -------------------------------------------------------------------------------- /Pods/YTKNetwork/YTKNetwork/YTKNetworkPrivate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuYang8026/UniversalProject/HEAD/Pods/YTKNetwork/YTKNetwork/YTKNetworkPrivate.h -------------------------------------------------------------------------------- /Pods/YTKNetwork/YTKNetwork/YTKNetworkPrivate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuYang8026/UniversalProject/HEAD/Pods/YTKNetwork/YTKNetwork/YTKNetworkPrivate.m -------------------------------------------------------------------------------- /Pods/YTKNetwork/YTKNetwork/YTKRequest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuYang8026/UniversalProject/HEAD/Pods/YTKNetwork/YTKNetwork/YTKRequest.h -------------------------------------------------------------------------------- /Pods/YTKNetwork/YTKNetwork/YTKRequest.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuYang8026/UniversalProject/HEAD/Pods/YTKNetwork/YTKNetwork/YTKRequest.m -------------------------------------------------------------------------------- /Pods/YYKit/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuYang8026/UniversalProject/HEAD/Pods/YYKit/LICENSE -------------------------------------------------------------------------------- /Pods/YYKit/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuYang8026/UniversalProject/HEAD/Pods/YYKit/README.md -------------------------------------------------------------------------------- /Pods/YYKit/Vendor/WebP.framework/Headers/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuYang8026/UniversalProject/HEAD/Pods/YYKit/Vendor/WebP.framework/Headers/config.h -------------------------------------------------------------------------------- /Pods/YYKit/Vendor/WebP.framework/Headers/decode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuYang8026/UniversalProject/HEAD/Pods/YYKit/Vendor/WebP.framework/Headers/decode.h -------------------------------------------------------------------------------- /Pods/YYKit/Vendor/WebP.framework/Headers/demux.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuYang8026/UniversalProject/HEAD/Pods/YYKit/Vendor/WebP.framework/Headers/demux.h -------------------------------------------------------------------------------- /Pods/YYKit/Vendor/WebP.framework/Headers/encode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuYang8026/UniversalProject/HEAD/Pods/YYKit/Vendor/WebP.framework/Headers/encode.h -------------------------------------------------------------------------------- /Pods/YYKit/Vendor/WebP.framework/Headers/extras.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuYang8026/UniversalProject/HEAD/Pods/YYKit/Vendor/WebP.framework/Headers/extras.h -------------------------------------------------------------------------------- /Pods/YYKit/Vendor/WebP.framework/Headers/mux.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuYang8026/UniversalProject/HEAD/Pods/YYKit/Vendor/WebP.framework/Headers/mux.h -------------------------------------------------------------------------------- /Pods/YYKit/Vendor/WebP.framework/Headers/mux_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuYang8026/UniversalProject/HEAD/Pods/YYKit/Vendor/WebP.framework/Headers/mux_types.h -------------------------------------------------------------------------------- /Pods/YYKit/Vendor/WebP.framework/Headers/types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuYang8026/UniversalProject/HEAD/Pods/YYKit/Vendor/WebP.framework/Headers/types.h -------------------------------------------------------------------------------- /Pods/YYKit/Vendor/WebP.framework/WebP: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuYang8026/UniversalProject/HEAD/Pods/YYKit/Vendor/WebP.framework/WebP -------------------------------------------------------------------------------- /Pods/YYKit/YYKit/Base/Foundation/NSArray+YYAdd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuYang8026/UniversalProject/HEAD/Pods/YYKit/YYKit/Base/Foundation/NSArray+YYAdd.h -------------------------------------------------------------------------------- /Pods/YYKit/YYKit/Base/Foundation/NSArray+YYAdd.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuYang8026/UniversalProject/HEAD/Pods/YYKit/YYKit/Base/Foundation/NSArray+YYAdd.m -------------------------------------------------------------------------------- /Pods/YYKit/YYKit/Base/Foundation/NSBundle+YYAdd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuYang8026/UniversalProject/HEAD/Pods/YYKit/YYKit/Base/Foundation/NSBundle+YYAdd.h -------------------------------------------------------------------------------- /Pods/YYKit/YYKit/Base/Foundation/NSBundle+YYAdd.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuYang8026/UniversalProject/HEAD/Pods/YYKit/YYKit/Base/Foundation/NSBundle+YYAdd.m -------------------------------------------------------------------------------- /Pods/YYKit/YYKit/Base/Foundation/NSData+YYAdd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuYang8026/UniversalProject/HEAD/Pods/YYKit/YYKit/Base/Foundation/NSData+YYAdd.h -------------------------------------------------------------------------------- /Pods/YYKit/YYKit/Base/Foundation/NSData+YYAdd.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuYang8026/UniversalProject/HEAD/Pods/YYKit/YYKit/Base/Foundation/NSData+YYAdd.m -------------------------------------------------------------------------------- /Pods/YYKit/YYKit/Base/Foundation/NSDate+YYAdd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuYang8026/UniversalProject/HEAD/Pods/YYKit/YYKit/Base/Foundation/NSDate+YYAdd.h -------------------------------------------------------------------------------- /Pods/YYKit/YYKit/Base/Foundation/NSDate+YYAdd.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuYang8026/UniversalProject/HEAD/Pods/YYKit/YYKit/Base/Foundation/NSDate+YYAdd.m -------------------------------------------------------------------------------- /Pods/YYKit/YYKit/Base/Foundation/NSDictionary+YYAdd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuYang8026/UniversalProject/HEAD/Pods/YYKit/YYKit/Base/Foundation/NSDictionary+YYAdd.h -------------------------------------------------------------------------------- /Pods/YYKit/YYKit/Base/Foundation/NSDictionary+YYAdd.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuYang8026/UniversalProject/HEAD/Pods/YYKit/YYKit/Base/Foundation/NSDictionary+YYAdd.m -------------------------------------------------------------------------------- /Pods/YYKit/YYKit/Base/Foundation/NSNumber+YYAdd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuYang8026/UniversalProject/HEAD/Pods/YYKit/YYKit/Base/Foundation/NSNumber+YYAdd.h -------------------------------------------------------------------------------- /Pods/YYKit/YYKit/Base/Foundation/NSNumber+YYAdd.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuYang8026/UniversalProject/HEAD/Pods/YYKit/YYKit/Base/Foundation/NSNumber+YYAdd.m -------------------------------------------------------------------------------- /Pods/YYKit/YYKit/Base/Foundation/NSObject+YYAdd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuYang8026/UniversalProject/HEAD/Pods/YYKit/YYKit/Base/Foundation/NSObject+YYAdd.h -------------------------------------------------------------------------------- /Pods/YYKit/YYKit/Base/Foundation/NSObject+YYAdd.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuYang8026/UniversalProject/HEAD/Pods/YYKit/YYKit/Base/Foundation/NSObject+YYAdd.m -------------------------------------------------------------------------------- /Pods/YYKit/YYKit/Base/Foundation/NSObject+YYAddForARC.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuYang8026/UniversalProject/HEAD/Pods/YYKit/YYKit/Base/Foundation/NSObject+YYAddForARC.h -------------------------------------------------------------------------------- /Pods/YYKit/YYKit/Base/Foundation/NSObject+YYAddForARC.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuYang8026/UniversalProject/HEAD/Pods/YYKit/YYKit/Base/Foundation/NSObject+YYAddForARC.m -------------------------------------------------------------------------------- /Pods/YYKit/YYKit/Base/Foundation/NSObject+YYAddForKVO.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuYang8026/UniversalProject/HEAD/Pods/YYKit/YYKit/Base/Foundation/NSObject+YYAddForKVO.h -------------------------------------------------------------------------------- /Pods/YYKit/YYKit/Base/Foundation/NSObject+YYAddForKVO.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuYang8026/UniversalProject/HEAD/Pods/YYKit/YYKit/Base/Foundation/NSObject+YYAddForKVO.m -------------------------------------------------------------------------------- /Pods/YYKit/YYKit/Base/Foundation/NSString+YYAdd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuYang8026/UniversalProject/HEAD/Pods/YYKit/YYKit/Base/Foundation/NSString+YYAdd.h -------------------------------------------------------------------------------- /Pods/YYKit/YYKit/Base/Foundation/NSString+YYAdd.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuYang8026/UniversalProject/HEAD/Pods/YYKit/YYKit/Base/Foundation/NSString+YYAdd.m -------------------------------------------------------------------------------- /Pods/YYKit/YYKit/Base/Foundation/NSThread+YYAdd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuYang8026/UniversalProject/HEAD/Pods/YYKit/YYKit/Base/Foundation/NSThread+YYAdd.h -------------------------------------------------------------------------------- /Pods/YYKit/YYKit/Base/Foundation/NSThread+YYAdd.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuYang8026/UniversalProject/HEAD/Pods/YYKit/YYKit/Base/Foundation/NSThread+YYAdd.m -------------------------------------------------------------------------------- /Pods/YYKit/YYKit/Base/Foundation/NSTimer+YYAdd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuYang8026/UniversalProject/HEAD/Pods/YYKit/YYKit/Base/Foundation/NSTimer+YYAdd.h -------------------------------------------------------------------------------- /Pods/YYKit/YYKit/Base/Foundation/NSTimer+YYAdd.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuYang8026/UniversalProject/HEAD/Pods/YYKit/YYKit/Base/Foundation/NSTimer+YYAdd.m -------------------------------------------------------------------------------- /Pods/YYKit/YYKit/Base/Quartz/CALayer+YYAdd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuYang8026/UniversalProject/HEAD/Pods/YYKit/YYKit/Base/Quartz/CALayer+YYAdd.h -------------------------------------------------------------------------------- /Pods/YYKit/YYKit/Base/Quartz/CALayer+YYAdd.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuYang8026/UniversalProject/HEAD/Pods/YYKit/YYKit/Base/Quartz/CALayer+YYAdd.m -------------------------------------------------------------------------------- /Pods/YYKit/YYKit/Base/Quartz/YYCGUtilities.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuYang8026/UniversalProject/HEAD/Pods/YYKit/YYKit/Base/Quartz/YYCGUtilities.h -------------------------------------------------------------------------------- /Pods/YYKit/YYKit/Base/Quartz/YYCGUtilities.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuYang8026/UniversalProject/HEAD/Pods/YYKit/YYKit/Base/Quartz/YYCGUtilities.m -------------------------------------------------------------------------------- /Pods/YYKit/YYKit/Base/UIKit/UIApplication+YYAdd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuYang8026/UniversalProject/HEAD/Pods/YYKit/YYKit/Base/UIKit/UIApplication+YYAdd.h -------------------------------------------------------------------------------- /Pods/YYKit/YYKit/Base/UIKit/UIApplication+YYAdd.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuYang8026/UniversalProject/HEAD/Pods/YYKit/YYKit/Base/UIKit/UIApplication+YYAdd.m -------------------------------------------------------------------------------- /Pods/YYKit/YYKit/Base/UIKit/UIBarButtonItem+YYAdd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuYang8026/UniversalProject/HEAD/Pods/YYKit/YYKit/Base/UIKit/UIBarButtonItem+YYAdd.h -------------------------------------------------------------------------------- /Pods/YYKit/YYKit/Base/UIKit/UIBarButtonItem+YYAdd.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuYang8026/UniversalProject/HEAD/Pods/YYKit/YYKit/Base/UIKit/UIBarButtonItem+YYAdd.m -------------------------------------------------------------------------------- /Pods/YYKit/YYKit/Base/UIKit/UIBezierPath+YYAdd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuYang8026/UniversalProject/HEAD/Pods/YYKit/YYKit/Base/UIKit/UIBezierPath+YYAdd.h -------------------------------------------------------------------------------- /Pods/YYKit/YYKit/Base/UIKit/UIBezierPath+YYAdd.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuYang8026/UniversalProject/HEAD/Pods/YYKit/YYKit/Base/UIKit/UIBezierPath+YYAdd.m -------------------------------------------------------------------------------- /Pods/YYKit/YYKit/Base/UIKit/UIColor+YYAdd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuYang8026/UniversalProject/HEAD/Pods/YYKit/YYKit/Base/UIKit/UIColor+YYAdd.h -------------------------------------------------------------------------------- /Pods/YYKit/YYKit/Base/UIKit/UIColor+YYAdd.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuYang8026/UniversalProject/HEAD/Pods/YYKit/YYKit/Base/UIKit/UIColor+YYAdd.m -------------------------------------------------------------------------------- /Pods/YYKit/YYKit/Base/UIKit/UIControl+YYAdd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuYang8026/UniversalProject/HEAD/Pods/YYKit/YYKit/Base/UIKit/UIControl+YYAdd.h -------------------------------------------------------------------------------- /Pods/YYKit/YYKit/Base/UIKit/UIControl+YYAdd.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuYang8026/UniversalProject/HEAD/Pods/YYKit/YYKit/Base/UIKit/UIControl+YYAdd.m -------------------------------------------------------------------------------- /Pods/YYKit/YYKit/Base/UIKit/UIDevice+YYAdd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuYang8026/UniversalProject/HEAD/Pods/YYKit/YYKit/Base/UIKit/UIDevice+YYAdd.h -------------------------------------------------------------------------------- /Pods/YYKit/YYKit/Base/UIKit/UIDevice+YYAdd.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuYang8026/UniversalProject/HEAD/Pods/YYKit/YYKit/Base/UIKit/UIDevice+YYAdd.m -------------------------------------------------------------------------------- /Pods/YYKit/YYKit/Base/UIKit/UIFont+YYAdd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuYang8026/UniversalProject/HEAD/Pods/YYKit/YYKit/Base/UIKit/UIFont+YYAdd.h -------------------------------------------------------------------------------- /Pods/YYKit/YYKit/Base/UIKit/UIFont+YYAdd.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuYang8026/UniversalProject/HEAD/Pods/YYKit/YYKit/Base/UIKit/UIFont+YYAdd.m -------------------------------------------------------------------------------- /Pods/YYKit/YYKit/Base/UIKit/UIGestureRecognizer+YYAdd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuYang8026/UniversalProject/HEAD/Pods/YYKit/YYKit/Base/UIKit/UIGestureRecognizer+YYAdd.h -------------------------------------------------------------------------------- /Pods/YYKit/YYKit/Base/UIKit/UIGestureRecognizer+YYAdd.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuYang8026/UniversalProject/HEAD/Pods/YYKit/YYKit/Base/UIKit/UIGestureRecognizer+YYAdd.m -------------------------------------------------------------------------------- /Pods/YYKit/YYKit/Base/UIKit/UIImage+YYAdd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuYang8026/UniversalProject/HEAD/Pods/YYKit/YYKit/Base/UIKit/UIImage+YYAdd.h -------------------------------------------------------------------------------- /Pods/YYKit/YYKit/Base/UIKit/UIImage+YYAdd.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuYang8026/UniversalProject/HEAD/Pods/YYKit/YYKit/Base/UIKit/UIImage+YYAdd.m -------------------------------------------------------------------------------- /Pods/YYKit/YYKit/Base/UIKit/UIScreen+YYAdd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuYang8026/UniversalProject/HEAD/Pods/YYKit/YYKit/Base/UIKit/UIScreen+YYAdd.h -------------------------------------------------------------------------------- /Pods/YYKit/YYKit/Base/UIKit/UIScreen+YYAdd.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuYang8026/UniversalProject/HEAD/Pods/YYKit/YYKit/Base/UIKit/UIScreen+YYAdd.m -------------------------------------------------------------------------------- /Pods/YYKit/YYKit/Base/UIKit/UIScrollView+YYAdd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuYang8026/UniversalProject/HEAD/Pods/YYKit/YYKit/Base/UIKit/UIScrollView+YYAdd.h -------------------------------------------------------------------------------- /Pods/YYKit/YYKit/Base/UIKit/UIScrollView+YYAdd.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuYang8026/UniversalProject/HEAD/Pods/YYKit/YYKit/Base/UIKit/UIScrollView+YYAdd.m -------------------------------------------------------------------------------- /Pods/YYKit/YYKit/Base/UIKit/UITableView+YYAdd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuYang8026/UniversalProject/HEAD/Pods/YYKit/YYKit/Base/UIKit/UITableView+YYAdd.h -------------------------------------------------------------------------------- /Pods/YYKit/YYKit/Base/UIKit/UITableView+YYAdd.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuYang8026/UniversalProject/HEAD/Pods/YYKit/YYKit/Base/UIKit/UITableView+YYAdd.m -------------------------------------------------------------------------------- /Pods/YYKit/YYKit/Base/UIKit/UITextField+YYAdd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuYang8026/UniversalProject/HEAD/Pods/YYKit/YYKit/Base/UIKit/UITextField+YYAdd.h -------------------------------------------------------------------------------- /Pods/YYKit/YYKit/Base/UIKit/UITextField+YYAdd.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuYang8026/UniversalProject/HEAD/Pods/YYKit/YYKit/Base/UIKit/UITextField+YYAdd.m -------------------------------------------------------------------------------- /Pods/YYKit/YYKit/Base/UIKit/UIView+YYAdd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuYang8026/UniversalProject/HEAD/Pods/YYKit/YYKit/Base/UIKit/UIView+YYAdd.h -------------------------------------------------------------------------------- /Pods/YYKit/YYKit/Base/UIKit/UIView+YYAdd.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuYang8026/UniversalProject/HEAD/Pods/YYKit/YYKit/Base/UIKit/UIView+YYAdd.m -------------------------------------------------------------------------------- /Pods/YYKit/YYKit/Base/YYKitMacro.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuYang8026/UniversalProject/HEAD/Pods/YYKit/YYKit/Base/YYKitMacro.h -------------------------------------------------------------------------------- /Pods/YYKit/YYKit/Cache/YYCache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuYang8026/UniversalProject/HEAD/Pods/YYKit/YYKit/Cache/YYCache.h -------------------------------------------------------------------------------- /Pods/YYKit/YYKit/Cache/YYCache.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuYang8026/UniversalProject/HEAD/Pods/YYKit/YYKit/Cache/YYCache.m -------------------------------------------------------------------------------- /Pods/YYKit/YYKit/Cache/YYDiskCache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuYang8026/UniversalProject/HEAD/Pods/YYKit/YYKit/Cache/YYDiskCache.h -------------------------------------------------------------------------------- /Pods/YYKit/YYKit/Cache/YYDiskCache.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuYang8026/UniversalProject/HEAD/Pods/YYKit/YYKit/Cache/YYDiskCache.m -------------------------------------------------------------------------------- /Pods/YYKit/YYKit/Cache/YYKVStorage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuYang8026/UniversalProject/HEAD/Pods/YYKit/YYKit/Cache/YYKVStorage.h -------------------------------------------------------------------------------- /Pods/YYKit/YYKit/Cache/YYKVStorage.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuYang8026/UniversalProject/HEAD/Pods/YYKit/YYKit/Cache/YYKVStorage.m -------------------------------------------------------------------------------- /Pods/YYKit/YYKit/Cache/YYMemoryCache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuYang8026/UniversalProject/HEAD/Pods/YYKit/YYKit/Cache/YYMemoryCache.h -------------------------------------------------------------------------------- /Pods/YYKit/YYKit/Cache/YYMemoryCache.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuYang8026/UniversalProject/HEAD/Pods/YYKit/YYKit/Cache/YYMemoryCache.m -------------------------------------------------------------------------------- /Pods/YYKit/YYKit/Image/Categories/CALayer+YYWebImage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuYang8026/UniversalProject/HEAD/Pods/YYKit/YYKit/Image/Categories/CALayer+YYWebImage.h -------------------------------------------------------------------------------- /Pods/YYKit/YYKit/Image/Categories/CALayer+YYWebImage.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuYang8026/UniversalProject/HEAD/Pods/YYKit/YYKit/Image/Categories/CALayer+YYWebImage.m -------------------------------------------------------------------------------- /Pods/YYKit/YYKit/Image/Categories/UIButton+YYWebImage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuYang8026/UniversalProject/HEAD/Pods/YYKit/YYKit/Image/Categories/UIButton+YYWebImage.h -------------------------------------------------------------------------------- /Pods/YYKit/YYKit/Image/Categories/UIButton+YYWebImage.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuYang8026/UniversalProject/HEAD/Pods/YYKit/YYKit/Image/Categories/UIButton+YYWebImage.m -------------------------------------------------------------------------------- /Pods/YYKit/YYKit/Image/Categories/_YYWebImageSetter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuYang8026/UniversalProject/HEAD/Pods/YYKit/YYKit/Image/Categories/_YYWebImageSetter.h -------------------------------------------------------------------------------- /Pods/YYKit/YYKit/Image/Categories/_YYWebImageSetter.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuYang8026/UniversalProject/HEAD/Pods/YYKit/YYKit/Image/Categories/_YYWebImageSetter.m -------------------------------------------------------------------------------- /Pods/YYKit/YYKit/Image/YYAnimatedImageView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuYang8026/UniversalProject/HEAD/Pods/YYKit/YYKit/Image/YYAnimatedImageView.h -------------------------------------------------------------------------------- /Pods/YYKit/YYKit/Image/YYAnimatedImageView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuYang8026/UniversalProject/HEAD/Pods/YYKit/YYKit/Image/YYAnimatedImageView.m -------------------------------------------------------------------------------- /Pods/YYKit/YYKit/Image/YYFrameImage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuYang8026/UniversalProject/HEAD/Pods/YYKit/YYKit/Image/YYFrameImage.h -------------------------------------------------------------------------------- /Pods/YYKit/YYKit/Image/YYFrameImage.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuYang8026/UniversalProject/HEAD/Pods/YYKit/YYKit/Image/YYFrameImage.m -------------------------------------------------------------------------------- /Pods/YYKit/YYKit/Image/YYImage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuYang8026/UniversalProject/HEAD/Pods/YYKit/YYKit/Image/YYImage.h -------------------------------------------------------------------------------- /Pods/YYKit/YYKit/Image/YYImage.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuYang8026/UniversalProject/HEAD/Pods/YYKit/YYKit/Image/YYImage.m -------------------------------------------------------------------------------- /Pods/YYKit/YYKit/Image/YYImageCache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuYang8026/UniversalProject/HEAD/Pods/YYKit/YYKit/Image/YYImageCache.h -------------------------------------------------------------------------------- /Pods/YYKit/YYKit/Image/YYImageCache.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuYang8026/UniversalProject/HEAD/Pods/YYKit/YYKit/Image/YYImageCache.m -------------------------------------------------------------------------------- /Pods/YYKit/YYKit/Image/YYImageCoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuYang8026/UniversalProject/HEAD/Pods/YYKit/YYKit/Image/YYImageCoder.h -------------------------------------------------------------------------------- /Pods/YYKit/YYKit/Image/YYImageCoder.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuYang8026/UniversalProject/HEAD/Pods/YYKit/YYKit/Image/YYImageCoder.m -------------------------------------------------------------------------------- /Pods/YYKit/YYKit/Image/YYSpriteSheetImage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuYang8026/UniversalProject/HEAD/Pods/YYKit/YYKit/Image/YYSpriteSheetImage.h -------------------------------------------------------------------------------- /Pods/YYKit/YYKit/Image/YYSpriteSheetImage.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuYang8026/UniversalProject/HEAD/Pods/YYKit/YYKit/Image/YYSpriteSheetImage.m -------------------------------------------------------------------------------- /Pods/YYKit/YYKit/Image/YYWebImageManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuYang8026/UniversalProject/HEAD/Pods/YYKit/YYKit/Image/YYWebImageManager.h -------------------------------------------------------------------------------- /Pods/YYKit/YYKit/Image/YYWebImageManager.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuYang8026/UniversalProject/HEAD/Pods/YYKit/YYKit/Image/YYWebImageManager.m -------------------------------------------------------------------------------- /Pods/YYKit/YYKit/Image/YYWebImageOperation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuYang8026/UniversalProject/HEAD/Pods/YYKit/YYKit/Image/YYWebImageOperation.h -------------------------------------------------------------------------------- /Pods/YYKit/YYKit/Image/YYWebImageOperation.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuYang8026/UniversalProject/HEAD/Pods/YYKit/YYKit/Image/YYWebImageOperation.m -------------------------------------------------------------------------------- /Pods/YYKit/YYKit/Model/NSObject+YYModel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuYang8026/UniversalProject/HEAD/Pods/YYKit/YYKit/Model/NSObject+YYModel.h -------------------------------------------------------------------------------- /Pods/YYKit/YYKit/Model/NSObject+YYModel.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuYang8026/UniversalProject/HEAD/Pods/YYKit/YYKit/Model/NSObject+YYModel.m -------------------------------------------------------------------------------- /Pods/YYKit/YYKit/Model/YYClassInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuYang8026/UniversalProject/HEAD/Pods/YYKit/YYKit/Model/YYClassInfo.h -------------------------------------------------------------------------------- /Pods/YYKit/YYKit/Model/YYClassInfo.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuYang8026/UniversalProject/HEAD/Pods/YYKit/YYKit/Model/YYClassInfo.m -------------------------------------------------------------------------------- /Pods/YYKit/YYKit/Text/Component/YYTextContainerView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuYang8026/UniversalProject/HEAD/Pods/YYKit/YYKit/Text/Component/YYTextContainerView.h -------------------------------------------------------------------------------- /Pods/YYKit/YYKit/Text/Component/YYTextContainerView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuYang8026/UniversalProject/HEAD/Pods/YYKit/YYKit/Text/Component/YYTextContainerView.m -------------------------------------------------------------------------------- /Pods/YYKit/YYKit/Text/Component/YYTextDebugOption.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuYang8026/UniversalProject/HEAD/Pods/YYKit/YYKit/Text/Component/YYTextDebugOption.h -------------------------------------------------------------------------------- /Pods/YYKit/YYKit/Text/Component/YYTextDebugOption.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuYang8026/UniversalProject/HEAD/Pods/YYKit/YYKit/Text/Component/YYTextDebugOption.m -------------------------------------------------------------------------------- /Pods/YYKit/YYKit/Text/Component/YYTextEffectWindow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuYang8026/UniversalProject/HEAD/Pods/YYKit/YYKit/Text/Component/YYTextEffectWindow.h -------------------------------------------------------------------------------- /Pods/YYKit/YYKit/Text/Component/YYTextEffectWindow.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuYang8026/UniversalProject/HEAD/Pods/YYKit/YYKit/Text/Component/YYTextEffectWindow.m -------------------------------------------------------------------------------- /Pods/YYKit/YYKit/Text/Component/YYTextInput.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuYang8026/UniversalProject/HEAD/Pods/YYKit/YYKit/Text/Component/YYTextInput.h -------------------------------------------------------------------------------- /Pods/YYKit/YYKit/Text/Component/YYTextInput.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuYang8026/UniversalProject/HEAD/Pods/YYKit/YYKit/Text/Component/YYTextInput.m -------------------------------------------------------------------------------- /Pods/YYKit/YYKit/Text/Component/YYTextKeyboardManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuYang8026/UniversalProject/HEAD/Pods/YYKit/YYKit/Text/Component/YYTextKeyboardManager.h -------------------------------------------------------------------------------- /Pods/YYKit/YYKit/Text/Component/YYTextKeyboardManager.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuYang8026/UniversalProject/HEAD/Pods/YYKit/YYKit/Text/Component/YYTextKeyboardManager.m -------------------------------------------------------------------------------- /Pods/YYKit/YYKit/Text/Component/YYTextLayout.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuYang8026/UniversalProject/HEAD/Pods/YYKit/YYKit/Text/Component/YYTextLayout.h -------------------------------------------------------------------------------- /Pods/YYKit/YYKit/Text/Component/YYTextLayout.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuYang8026/UniversalProject/HEAD/Pods/YYKit/YYKit/Text/Component/YYTextLayout.m -------------------------------------------------------------------------------- /Pods/YYKit/YYKit/Text/Component/YYTextLine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuYang8026/UniversalProject/HEAD/Pods/YYKit/YYKit/Text/Component/YYTextLine.h -------------------------------------------------------------------------------- /Pods/YYKit/YYKit/Text/Component/YYTextLine.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuYang8026/UniversalProject/HEAD/Pods/YYKit/YYKit/Text/Component/YYTextLine.m -------------------------------------------------------------------------------- /Pods/YYKit/YYKit/Text/Component/YYTextMagnifier.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuYang8026/UniversalProject/HEAD/Pods/YYKit/YYKit/Text/Component/YYTextMagnifier.h -------------------------------------------------------------------------------- /Pods/YYKit/YYKit/Text/Component/YYTextMagnifier.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuYang8026/UniversalProject/HEAD/Pods/YYKit/YYKit/Text/Component/YYTextMagnifier.m -------------------------------------------------------------------------------- /Pods/YYKit/YYKit/Text/Component/YYTextSelectionView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuYang8026/UniversalProject/HEAD/Pods/YYKit/YYKit/Text/Component/YYTextSelectionView.h -------------------------------------------------------------------------------- /Pods/YYKit/YYKit/Text/Component/YYTextSelectionView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuYang8026/UniversalProject/HEAD/Pods/YYKit/YYKit/Text/Component/YYTextSelectionView.m -------------------------------------------------------------------------------- /Pods/YYKit/YYKit/Text/String/NSAttributedString+YYText.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuYang8026/UniversalProject/HEAD/Pods/YYKit/YYKit/Text/String/NSAttributedString+YYText.h -------------------------------------------------------------------------------- /Pods/YYKit/YYKit/Text/String/NSAttributedString+YYText.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuYang8026/UniversalProject/HEAD/Pods/YYKit/YYKit/Text/String/NSAttributedString+YYText.m -------------------------------------------------------------------------------- /Pods/YYKit/YYKit/Text/String/NSParagraphStyle+YYText.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuYang8026/UniversalProject/HEAD/Pods/YYKit/YYKit/Text/String/NSParagraphStyle+YYText.h -------------------------------------------------------------------------------- /Pods/YYKit/YYKit/Text/String/NSParagraphStyle+YYText.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuYang8026/UniversalProject/HEAD/Pods/YYKit/YYKit/Text/String/NSParagraphStyle+YYText.m -------------------------------------------------------------------------------- /Pods/YYKit/YYKit/Text/String/UIPasteboard+YYText.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuYang8026/UniversalProject/HEAD/Pods/YYKit/YYKit/Text/String/UIPasteboard+YYText.h -------------------------------------------------------------------------------- /Pods/YYKit/YYKit/Text/String/UIPasteboard+YYText.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuYang8026/UniversalProject/HEAD/Pods/YYKit/YYKit/Text/String/UIPasteboard+YYText.m -------------------------------------------------------------------------------- /Pods/YYKit/YYKit/Text/String/YYTextArchiver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuYang8026/UniversalProject/HEAD/Pods/YYKit/YYKit/Text/String/YYTextArchiver.h -------------------------------------------------------------------------------- /Pods/YYKit/YYKit/Text/String/YYTextArchiver.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuYang8026/UniversalProject/HEAD/Pods/YYKit/YYKit/Text/String/YYTextArchiver.m -------------------------------------------------------------------------------- /Pods/YYKit/YYKit/Text/String/YYTextAttribute.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuYang8026/UniversalProject/HEAD/Pods/YYKit/YYKit/Text/String/YYTextAttribute.h -------------------------------------------------------------------------------- /Pods/YYKit/YYKit/Text/String/YYTextAttribute.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuYang8026/UniversalProject/HEAD/Pods/YYKit/YYKit/Text/String/YYTextAttribute.m -------------------------------------------------------------------------------- /Pods/YYKit/YYKit/Text/String/YYTextParser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuYang8026/UniversalProject/HEAD/Pods/YYKit/YYKit/Text/String/YYTextParser.h -------------------------------------------------------------------------------- /Pods/YYKit/YYKit/Text/String/YYTextParser.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuYang8026/UniversalProject/HEAD/Pods/YYKit/YYKit/Text/String/YYTextParser.m -------------------------------------------------------------------------------- /Pods/YYKit/YYKit/Text/String/YYTextRubyAnnotation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuYang8026/UniversalProject/HEAD/Pods/YYKit/YYKit/Text/String/YYTextRubyAnnotation.h -------------------------------------------------------------------------------- /Pods/YYKit/YYKit/Text/String/YYTextRubyAnnotation.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuYang8026/UniversalProject/HEAD/Pods/YYKit/YYKit/Text/String/YYTextRubyAnnotation.m -------------------------------------------------------------------------------- /Pods/YYKit/YYKit/Text/String/YYTextRunDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuYang8026/UniversalProject/HEAD/Pods/YYKit/YYKit/Text/String/YYTextRunDelegate.h -------------------------------------------------------------------------------- /Pods/YYKit/YYKit/Text/String/YYTextRunDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuYang8026/UniversalProject/HEAD/Pods/YYKit/YYKit/Text/String/YYTextRunDelegate.m -------------------------------------------------------------------------------- /Pods/YYKit/YYKit/Text/String/YYTextUtilities.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuYang8026/UniversalProject/HEAD/Pods/YYKit/YYKit/Text/String/YYTextUtilities.h -------------------------------------------------------------------------------- /Pods/YYKit/YYKit/Text/String/YYTextUtilities.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuYang8026/UniversalProject/HEAD/Pods/YYKit/YYKit/Text/String/YYTextUtilities.m -------------------------------------------------------------------------------- /Pods/YYKit/YYKit/Text/YYLabel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuYang8026/UniversalProject/HEAD/Pods/YYKit/YYKit/Text/YYLabel.h -------------------------------------------------------------------------------- /Pods/YYKit/YYKit/Text/YYLabel.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuYang8026/UniversalProject/HEAD/Pods/YYKit/YYKit/Text/YYLabel.m -------------------------------------------------------------------------------- /Pods/YYKit/YYKit/Text/YYTextView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuYang8026/UniversalProject/HEAD/Pods/YYKit/YYKit/Text/YYTextView.h -------------------------------------------------------------------------------- /Pods/YYKit/YYKit/Text/YYTextView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuYang8026/UniversalProject/HEAD/Pods/YYKit/YYKit/Text/YYTextView.m -------------------------------------------------------------------------------- /Pods/YYKit/YYKit/Utility/YYAsyncLayer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuYang8026/UniversalProject/HEAD/Pods/YYKit/YYKit/Utility/YYAsyncLayer.h -------------------------------------------------------------------------------- /Pods/YYKit/YYKit/Utility/YYAsyncLayer.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuYang8026/UniversalProject/HEAD/Pods/YYKit/YYKit/Utility/YYAsyncLayer.m -------------------------------------------------------------------------------- /Pods/YYKit/YYKit/Utility/YYDispatchQueuePool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuYang8026/UniversalProject/HEAD/Pods/YYKit/YYKit/Utility/YYDispatchQueuePool.h -------------------------------------------------------------------------------- /Pods/YYKit/YYKit/Utility/YYDispatchQueuePool.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuYang8026/UniversalProject/HEAD/Pods/YYKit/YYKit/Utility/YYDispatchQueuePool.m -------------------------------------------------------------------------------- /Pods/YYKit/YYKit/Utility/YYFileHash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuYang8026/UniversalProject/HEAD/Pods/YYKit/YYKit/Utility/YYFileHash.h -------------------------------------------------------------------------------- /Pods/YYKit/YYKit/Utility/YYFileHash.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuYang8026/UniversalProject/HEAD/Pods/YYKit/YYKit/Utility/YYFileHash.m -------------------------------------------------------------------------------- /Pods/YYKit/YYKit/Utility/YYGestureRecognizer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuYang8026/UniversalProject/HEAD/Pods/YYKit/YYKit/Utility/YYGestureRecognizer.h -------------------------------------------------------------------------------- /Pods/YYKit/YYKit/Utility/YYGestureRecognizer.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuYang8026/UniversalProject/HEAD/Pods/YYKit/YYKit/Utility/YYGestureRecognizer.m -------------------------------------------------------------------------------- /Pods/YYKit/YYKit/Utility/YYKeychain.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuYang8026/UniversalProject/HEAD/Pods/YYKit/YYKit/Utility/YYKeychain.h -------------------------------------------------------------------------------- /Pods/YYKit/YYKit/Utility/YYKeychain.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuYang8026/UniversalProject/HEAD/Pods/YYKit/YYKit/Utility/YYKeychain.m -------------------------------------------------------------------------------- /Pods/YYKit/YYKit/Utility/YYReachability.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuYang8026/UniversalProject/HEAD/Pods/YYKit/YYKit/Utility/YYReachability.h -------------------------------------------------------------------------------- /Pods/YYKit/YYKit/Utility/YYReachability.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuYang8026/UniversalProject/HEAD/Pods/YYKit/YYKit/Utility/YYReachability.m -------------------------------------------------------------------------------- /Pods/YYKit/YYKit/Utility/YYSentinel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuYang8026/UniversalProject/HEAD/Pods/YYKit/YYKit/Utility/YYSentinel.h -------------------------------------------------------------------------------- /Pods/YYKit/YYKit/Utility/YYSentinel.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuYang8026/UniversalProject/HEAD/Pods/YYKit/YYKit/Utility/YYSentinel.m -------------------------------------------------------------------------------- /Pods/YYKit/YYKit/Utility/YYThreadSafeArray.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuYang8026/UniversalProject/HEAD/Pods/YYKit/YYKit/Utility/YYThreadSafeArray.h -------------------------------------------------------------------------------- /Pods/YYKit/YYKit/Utility/YYThreadSafeArray.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuYang8026/UniversalProject/HEAD/Pods/YYKit/YYKit/Utility/YYThreadSafeArray.m -------------------------------------------------------------------------------- /Pods/YYKit/YYKit/Utility/YYThreadSafeDictionary.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuYang8026/UniversalProject/HEAD/Pods/YYKit/YYKit/Utility/YYThreadSafeDictionary.h -------------------------------------------------------------------------------- /Pods/YYKit/YYKit/Utility/YYThreadSafeDictionary.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuYang8026/UniversalProject/HEAD/Pods/YYKit/YYKit/Utility/YYThreadSafeDictionary.m -------------------------------------------------------------------------------- /Pods/YYKit/YYKit/Utility/YYTimer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuYang8026/UniversalProject/HEAD/Pods/YYKit/YYKit/Utility/YYTimer.h -------------------------------------------------------------------------------- /Pods/YYKit/YYKit/Utility/YYTimer.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuYang8026/UniversalProject/HEAD/Pods/YYKit/YYKit/Utility/YYTimer.m -------------------------------------------------------------------------------- /Pods/YYKit/YYKit/Utility/YYTransaction.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuYang8026/UniversalProject/HEAD/Pods/YYKit/YYKit/Utility/YYTransaction.h -------------------------------------------------------------------------------- /Pods/YYKit/YYKit/Utility/YYTransaction.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuYang8026/UniversalProject/HEAD/Pods/YYKit/YYKit/Utility/YYTransaction.m -------------------------------------------------------------------------------- /Pods/YYKit/YYKit/Utility/YYWeakProxy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuYang8026/UniversalProject/HEAD/Pods/YYKit/YYKit/Utility/YYWeakProxy.h -------------------------------------------------------------------------------- /Pods/YYKit/YYKit/Utility/YYWeakProxy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuYang8026/UniversalProject/HEAD/Pods/YYKit/YYKit/Utility/YYWeakProxy.m -------------------------------------------------------------------------------- /Pods/YYKit/YYKit/YYKit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuYang8026/UniversalProject/HEAD/Pods/YYKit/YYKit/YYKit.h -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuYang8026/UniversalProject/HEAD/README.md -------------------------------------------------------------------------------- /UniversalApp.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuYang8026/UniversalProject/HEAD/UniversalApp.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /UniversalApp.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuYang8026/UniversalProject/HEAD/UniversalApp.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /UniversalApp/AppDelegate/AppDelegate+AppService.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuYang8026/UniversalProject/HEAD/UniversalApp/AppDelegate/AppDelegate+AppService.h -------------------------------------------------------------------------------- /UniversalApp/AppDelegate/AppDelegate+AppService.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuYang8026/UniversalProject/HEAD/UniversalApp/AppDelegate/AppDelegate+AppService.m -------------------------------------------------------------------------------- /UniversalApp/AppDelegate/AppDelegate+PushService.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuYang8026/UniversalProject/HEAD/UniversalApp/AppDelegate/AppDelegate+PushService.h -------------------------------------------------------------------------------- /UniversalApp/AppDelegate/AppDelegate+PushService.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuYang8026/UniversalProject/HEAD/UniversalApp/AppDelegate/AppDelegate+PushService.m -------------------------------------------------------------------------------- /UniversalApp/AppDelegate/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuYang8026/UniversalProject/HEAD/UniversalApp/AppDelegate/AppDelegate.h -------------------------------------------------------------------------------- /UniversalApp/AppDelegate/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuYang8026/UniversalProject/HEAD/UniversalApp/AppDelegate/AppDelegate.m -------------------------------------------------------------------------------- /UniversalApp/Base/BaseCell/BaseTableViewCell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuYang8026/UniversalProject/HEAD/UniversalApp/Base/BaseCell/BaseTableViewCell.h -------------------------------------------------------------------------------- /UniversalApp/Base/BaseCell/BaseTableViewCell.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuYang8026/UniversalProject/HEAD/UniversalApp/Base/BaseCell/BaseTableViewCell.m -------------------------------------------------------------------------------- /UniversalApp/Base/BaseCell/HSBaseCellModel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuYang8026/UniversalProject/HEAD/UniversalApp/Base/BaseCell/HSBaseCellModel.h -------------------------------------------------------------------------------- /UniversalApp/Base/BaseCell/HSBaseCellModel.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuYang8026/UniversalProject/HEAD/UniversalApp/Base/BaseCell/HSBaseCellModel.m -------------------------------------------------------------------------------- /UniversalApp/Base/BaseRequestApi/BaseRequestAPI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuYang8026/UniversalProject/HEAD/UniversalApp/Base/BaseRequestApi/BaseRequestAPI.h -------------------------------------------------------------------------------- /UniversalApp/Base/BaseRequestApi/BaseRequestAPI.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuYang8026/UniversalProject/HEAD/UniversalApp/Base/BaseRequestApi/BaseRequestAPI.m -------------------------------------------------------------------------------- /UniversalApp/Base/RootViewController/RootViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuYang8026/UniversalProject/HEAD/UniversalApp/Base/RootViewController/RootViewController.h -------------------------------------------------------------------------------- /UniversalApp/Base/RootViewController/RootViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuYang8026/UniversalProject/HEAD/UniversalApp/Base/RootViewController/RootViewController.m -------------------------------------------------------------------------------- /UniversalApp/Base/TabbarController/MainTabBarController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuYang8026/UniversalProject/HEAD/UniversalApp/Base/TabbarController/MainTabBarController.h -------------------------------------------------------------------------------- /UniversalApp/Base/TabbarController/MainTabBarController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuYang8026/UniversalProject/HEAD/UniversalApp/Base/TabbarController/MainTabBarController.m -------------------------------------------------------------------------------- /UniversalApp/Base/TabbarController/UITabBar+CustomBadge.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuYang8026/UniversalProject/HEAD/UniversalApp/Base/TabbarController/UITabBar+CustomBadge.h -------------------------------------------------------------------------------- /UniversalApp/Base/TabbarController/UITabBar+CustomBadge.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuYang8026/UniversalProject/HEAD/UniversalApp/Base/TabbarController/UITabBar+CustomBadge.m -------------------------------------------------------------------------------- /UniversalApp/Base/TabbarController/XYTabBar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuYang8026/UniversalProject/HEAD/UniversalApp/Base/TabbarController/XYTabBar.h -------------------------------------------------------------------------------- /UniversalApp/Base/TabbarController/XYTabBar.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuYang8026/UniversalProject/HEAD/UniversalApp/Base/TabbarController/XYTabBar.m -------------------------------------------------------------------------------- /UniversalApp/Base/WebViewController/JSToOC.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuYang8026/UniversalProject/HEAD/UniversalApp/Base/WebViewController/JSToOC.html -------------------------------------------------------------------------------- /UniversalApp/Base/WebViewController/XLJSHandler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuYang8026/UniversalProject/HEAD/UniversalApp/Base/WebViewController/XLJSHandler.h -------------------------------------------------------------------------------- /UniversalApp/Base/WebViewController/XLJSHandler.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuYang8026/UniversalProject/HEAD/UniversalApp/Base/WebViewController/XLJSHandler.m -------------------------------------------------------------------------------- /UniversalApp/Base/WebViewController/XLWebViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuYang8026/UniversalProject/HEAD/UniversalApp/Base/WebViewController/XLWebViewController.h -------------------------------------------------------------------------------- /UniversalApp/Base/WebViewController/XLWebViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuYang8026/UniversalProject/HEAD/UniversalApp/Base/WebViewController/XLWebViewController.m -------------------------------------------------------------------------------- /UniversalApp/Define/CommonMacros.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuYang8026/UniversalProject/HEAD/UniversalApp/Define/CommonMacros.h -------------------------------------------------------------------------------- /UniversalApp/Define/FontAndColorMacros.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuYang8026/UniversalProject/HEAD/UniversalApp/Define/FontAndColorMacros.h -------------------------------------------------------------------------------- /UniversalApp/Define/ThirdMacros.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuYang8026/UniversalProject/HEAD/UniversalApp/Define/ThirdMacros.h -------------------------------------------------------------------------------- /UniversalApp/Define/URLMacros.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuYang8026/UniversalProject/HEAD/UniversalApp/Define/URLMacros.h -------------------------------------------------------------------------------- /UniversalApp/Define/UtilsMacros.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuYang8026/UniversalProject/HEAD/UniversalApp/Define/UtilsMacros.h -------------------------------------------------------------------------------- /UniversalApp/Manager/AppManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuYang8026/UniversalProject/HEAD/UniversalApp/Manager/AppManager.h -------------------------------------------------------------------------------- /UniversalApp/Manager/AppManager.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuYang8026/UniversalProject/HEAD/UniversalApp/Manager/AppManager.m -------------------------------------------------------------------------------- /UniversalApp/Manager/IAPManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuYang8026/UniversalProject/HEAD/UniversalApp/Manager/IAPManager.h -------------------------------------------------------------------------------- /UniversalApp/Manager/IAPManager.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuYang8026/UniversalProject/HEAD/UniversalApp/Manager/IAPManager.m -------------------------------------------------------------------------------- /UniversalApp/Manager/IMManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuYang8026/UniversalProject/HEAD/UniversalApp/Manager/IMManager.h -------------------------------------------------------------------------------- /UniversalApp/Manager/IMManager.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuYang8026/UniversalProject/HEAD/UniversalApp/Manager/IMManager.m -------------------------------------------------------------------------------- /UniversalApp/Manager/ShareManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuYang8026/UniversalProject/HEAD/UniversalApp/Manager/ShareManager.h -------------------------------------------------------------------------------- /UniversalApp/Manager/ShareManager.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuYang8026/UniversalProject/HEAD/UniversalApp/Manager/ShareManager.m -------------------------------------------------------------------------------- /UniversalApp/Manager/UserManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuYang8026/UniversalProject/HEAD/UniversalApp/Manager/UserManager.h -------------------------------------------------------------------------------- /UniversalApp/Manager/UserManager.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuYang8026/UniversalProject/HEAD/UniversalApp/Manager/UserManager.m -------------------------------------------------------------------------------- /UniversalApp/Manager/UserManager/GameInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuYang8026/UniversalProject/HEAD/UniversalApp/Manager/UserManager/GameInfo.h -------------------------------------------------------------------------------- /UniversalApp/Manager/UserManager/GameInfo.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuYang8026/UniversalProject/HEAD/UniversalApp/Manager/UserManager/GameInfo.m -------------------------------------------------------------------------------- /UniversalApp/Manager/UserManager/UserInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuYang8026/UniversalProject/HEAD/UniversalApp/Manager/UserManager/UserInfo.h -------------------------------------------------------------------------------- /UniversalApp/Manager/UserManager/UserInfo.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuYang8026/UniversalProject/HEAD/UniversalApp/Manager/UserManager/UserInfo.m -------------------------------------------------------------------------------- /UniversalApp/Manager/UserManager/UserManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuYang8026/UniversalProject/HEAD/UniversalApp/Manager/UserManager/UserManager.h -------------------------------------------------------------------------------- /UniversalApp/Manager/UserManager/UserManager.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuYang8026/UniversalProject/HEAD/UniversalApp/Manager/UserManager/UserManager.m -------------------------------------------------------------------------------- /UniversalApp/Modules/Home/Controller/HomeViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuYang8026/UniversalProject/HEAD/UniversalApp/Modules/Home/Controller/HomeViewController.h -------------------------------------------------------------------------------- /UniversalApp/Modules/Home/Controller/HomeViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuYang8026/UniversalProject/HEAD/UniversalApp/Modules/Home/Controller/HomeViewController.m -------------------------------------------------------------------------------- /UniversalApp/Modules/Home/Logic/PersonListLogic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuYang8026/UniversalProject/HEAD/UniversalApp/Modules/Home/Logic/PersonListLogic.h -------------------------------------------------------------------------------- /UniversalApp/Modules/Home/Logic/PersonListLogic.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuYang8026/UniversalProject/HEAD/UniversalApp/Modules/Home/Logic/PersonListLogic.m -------------------------------------------------------------------------------- /UniversalApp/Modules/Home/Logic/WaterFallListLogic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuYang8026/UniversalProject/HEAD/UniversalApp/Modules/Home/Logic/WaterFallListLogic.h -------------------------------------------------------------------------------- /UniversalApp/Modules/Home/Logic/WaterFallListLogic.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuYang8026/UniversalProject/HEAD/UniversalApp/Modules/Home/Logic/WaterFallListLogic.m -------------------------------------------------------------------------------- /UniversalApp/Modules/Home/Model/PersonModel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuYang8026/UniversalProject/HEAD/UniversalApp/Modules/Home/Model/PersonModel.h -------------------------------------------------------------------------------- /UniversalApp/Modules/Home/Model/PersonModel.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuYang8026/UniversalProject/HEAD/UniversalApp/Modules/Home/Model/PersonModel.m -------------------------------------------------------------------------------- /UniversalApp/Modules/Home/Resource/0.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuYang8026/UniversalProject/HEAD/UniversalApp/Modules/Home/Resource/0.jpg -------------------------------------------------------------------------------- /UniversalApp/Modules/Home/Resource/1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuYang8026/UniversalProject/HEAD/UniversalApp/Modules/Home/Resource/1.jpg -------------------------------------------------------------------------------- /UniversalApp/Modules/Home/Resource/10.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuYang8026/UniversalProject/HEAD/UniversalApp/Modules/Home/Resource/10.jpg -------------------------------------------------------------------------------- /UniversalApp/Modules/Home/Resource/11.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuYang8026/UniversalProject/HEAD/UniversalApp/Modules/Home/Resource/11.jpg -------------------------------------------------------------------------------- /UniversalApp/Modules/Home/Resource/12.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuYang8026/UniversalProject/HEAD/UniversalApp/Modules/Home/Resource/12.jpg -------------------------------------------------------------------------------- /UniversalApp/Modules/Home/Resource/13.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuYang8026/UniversalProject/HEAD/UniversalApp/Modules/Home/Resource/13.jpg -------------------------------------------------------------------------------- /UniversalApp/Modules/Home/Resource/2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuYang8026/UniversalProject/HEAD/UniversalApp/Modules/Home/Resource/2.jpg -------------------------------------------------------------------------------- /UniversalApp/Modules/Home/Resource/3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuYang8026/UniversalProject/HEAD/UniversalApp/Modules/Home/Resource/3.jpg -------------------------------------------------------------------------------- /UniversalApp/Modules/Home/Resource/4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuYang8026/UniversalProject/HEAD/UniversalApp/Modules/Home/Resource/4.jpg -------------------------------------------------------------------------------- /UniversalApp/Modules/Home/Resource/5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuYang8026/UniversalProject/HEAD/UniversalApp/Modules/Home/Resource/5.jpg -------------------------------------------------------------------------------- /UniversalApp/Modules/Home/Resource/6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuYang8026/UniversalProject/HEAD/UniversalApp/Modules/Home/Resource/6.jpg -------------------------------------------------------------------------------- /UniversalApp/Modules/Home/Resource/7.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuYang8026/UniversalProject/HEAD/UniversalApp/Modules/Home/Resource/7.jpg -------------------------------------------------------------------------------- /UniversalApp/Modules/Home/Resource/8.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuYang8026/UniversalProject/HEAD/UniversalApp/Modules/Home/Resource/8.jpg -------------------------------------------------------------------------------- /UniversalApp/Modules/Home/Resource/9.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuYang8026/UniversalProject/HEAD/UniversalApp/Modules/Home/Resource/9.jpg -------------------------------------------------------------------------------- /UniversalApp/Modules/Home/Service/GetWaterFallListAPI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuYang8026/UniversalProject/HEAD/UniversalApp/Modules/Home/Service/GetWaterFallListAPI.h -------------------------------------------------------------------------------- /UniversalApp/Modules/Home/Service/GetWaterFallListAPI.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuYang8026/UniversalProject/HEAD/UniversalApp/Modules/Home/Service/GetWaterFallListAPI.m -------------------------------------------------------------------------------- /UniversalApp/Modules/Home/View/WaterFlowLayout.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuYang8026/UniversalProject/HEAD/UniversalApp/Modules/Home/View/WaterFlowLayout.h -------------------------------------------------------------------------------- /UniversalApp/Modules/Home/View/WaterFlowLayout.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuYang8026/UniversalProject/HEAD/UniversalApp/Modules/Home/View/WaterFlowLayout.m -------------------------------------------------------------------------------- /UniversalApp/Modules/Login/Logic/LoginLogic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuYang8026/UniversalProject/HEAD/UniversalApp/Modules/Login/Logic/LoginLogic.h -------------------------------------------------------------------------------- /UniversalApp/Modules/Login/Logic/LoginLogic.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuYang8026/UniversalProject/HEAD/UniversalApp/Modules/Login/Logic/LoginLogic.m -------------------------------------------------------------------------------- /UniversalApp/Modules/MakeFriends/Logic/MakeFriendsLogic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuYang8026/UniversalProject/HEAD/UniversalApp/Modules/MakeFriends/Logic/MakeFriendsLogic.h -------------------------------------------------------------------------------- /UniversalApp/Modules/MakeFriends/Logic/MakeFriendsLogic.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuYang8026/UniversalProject/HEAD/UniversalApp/Modules/MakeFriends/Logic/MakeFriendsLogic.m -------------------------------------------------------------------------------- /UniversalApp/Modules/MakeFriends/Model/CellModel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuYang8026/UniversalProject/HEAD/UniversalApp/Modules/MakeFriends/Model/CellModel.h -------------------------------------------------------------------------------- /UniversalApp/Modules/MakeFriends/Model/CellModel.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuYang8026/UniversalProject/HEAD/UniversalApp/Modules/MakeFriends/Model/CellModel.m -------------------------------------------------------------------------------- /UniversalApp/Modules/MakeFriends/View/TableViewCell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuYang8026/UniversalProject/HEAD/UniversalApp/Modules/MakeFriends/View/TableViewCell.h -------------------------------------------------------------------------------- /UniversalApp/Modules/MakeFriends/View/TableViewCell.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuYang8026/UniversalProject/HEAD/UniversalApp/Modules/MakeFriends/View/TableViewCell.m -------------------------------------------------------------------------------- /UniversalApp/Modules/Message/Logic/MsgLogic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuYang8026/UniversalProject/HEAD/UniversalApp/Modules/Message/Logic/MsgLogic.h -------------------------------------------------------------------------------- /UniversalApp/Modules/Message/Logic/MsgLogic.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuYang8026/UniversalProject/HEAD/UniversalApp/Modules/Message/Logic/MsgLogic.m -------------------------------------------------------------------------------- /UniversalApp/Modules/Message/Resource/photo_sample_01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuYang8026/UniversalProject/HEAD/UniversalApp/Modules/Message/Resource/photo_sample_01.png -------------------------------------------------------------------------------- /UniversalApp/Modules/Message/Resource/photo_sample_02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuYang8026/UniversalProject/HEAD/UniversalApp/Modules/Message/Resource/photo_sample_02.png -------------------------------------------------------------------------------- /UniversalApp/Modules/Message/Resource/photo_sample_03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuYang8026/UniversalProject/HEAD/UniversalApp/Modules/Message/Resource/photo_sample_03.png -------------------------------------------------------------------------------- /UniversalApp/Modules/Message/Resource/photo_sample_04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuYang8026/UniversalProject/HEAD/UniversalApp/Modules/Message/Resource/photo_sample_04.png -------------------------------------------------------------------------------- /UniversalApp/Modules/Message/Resource/photo_sample_05.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuYang8026/UniversalProject/HEAD/UniversalApp/Modules/Message/Resource/photo_sample_05.png -------------------------------------------------------------------------------- /UniversalApp/Modules/Message/Resource/photo_sample_06.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuYang8026/UniversalProject/HEAD/UniversalApp/Modules/Message/Resource/photo_sample_06.png -------------------------------------------------------------------------------- /UniversalApp/Modules/Message/Resource/photo_sample_07.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuYang8026/UniversalProject/HEAD/UniversalApp/Modules/Message/Resource/photo_sample_07.png -------------------------------------------------------------------------------- /UniversalApp/Modules/Mine/Controller/MineViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuYang8026/UniversalProject/HEAD/UniversalApp/Modules/Mine/Controller/MineViewController.h -------------------------------------------------------------------------------- /UniversalApp/Modules/Mine/Controller/MineViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuYang8026/UniversalProject/HEAD/UniversalApp/Modules/Mine/Controller/MineViewController.m -------------------------------------------------------------------------------- /UniversalApp/Modules/Mine/Logic/MineLogic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuYang8026/UniversalProject/HEAD/UniversalApp/Modules/Mine/Logic/MineLogic.h -------------------------------------------------------------------------------- /UniversalApp/Modules/Mine/Logic/MineLogic.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuYang8026/UniversalProject/HEAD/UniversalApp/Modules/Mine/Logic/MineLogic.m -------------------------------------------------------------------------------- /UniversalApp/Modules/Mine/Resource/arrow_icon@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuYang8026/UniversalProject/HEAD/UniversalApp/Modules/Mine/Resource/arrow_icon@2x.png -------------------------------------------------------------------------------- /UniversalApp/Modules/Mine/Resource/dengji@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuYang8026/UniversalProject/HEAD/UniversalApp/Modules/Mine/Resource/dengji@2x.png -------------------------------------------------------------------------------- /UniversalApp/Modules/Mine/Resource/haoy@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuYang8026/UniversalProject/HEAD/UniversalApp/Modules/Mine/Resource/haoy@2x.png -------------------------------------------------------------------------------- /UniversalApp/Modules/Mine/Resource/man@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuYang8026/UniversalProject/HEAD/UniversalApp/Modules/Mine/Resource/man@2x.png -------------------------------------------------------------------------------- /UniversalApp/Modules/Mine/Resource/my_back_img@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuYang8026/UniversalProject/HEAD/UniversalApp/Modules/Mine/Resource/my_back_img@2x.png -------------------------------------------------------------------------------- /UniversalApp/Modules/Mine/Resource/qianb@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuYang8026/UniversalProject/HEAD/UniversalApp/Modules/Mine/Resource/qianb@2x.png -------------------------------------------------------------------------------- /UniversalApp/Modules/Mine/Resource/renw@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuYang8026/UniversalProject/HEAD/UniversalApp/Modules/Mine/Resource/renw@2x.png -------------------------------------------------------------------------------- /UniversalApp/Modules/Mine/Resource/woman@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuYang8026/UniversalProject/HEAD/UniversalApp/Modules/Mine/Resource/woman@2x.png -------------------------------------------------------------------------------- /UniversalApp/Modules/Mine/View/MineHeaderView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuYang8026/UniversalProject/HEAD/UniversalApp/Modules/Mine/View/MineHeaderView.h -------------------------------------------------------------------------------- /UniversalApp/Modules/Mine/View/MineHeaderView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuYang8026/UniversalProject/HEAD/UniversalApp/Modules/Mine/View/MineHeaderView.m -------------------------------------------------------------------------------- /UniversalApp/Modules/Mine/View/MineTableViewCell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuYang8026/UniversalProject/HEAD/UniversalApp/Modules/Mine/View/MineTableViewCell.h -------------------------------------------------------------------------------- /UniversalApp/Modules/Mine/View/MineTableViewCell.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuYang8026/UniversalProject/HEAD/UniversalApp/Modules/Mine/View/MineTableViewCell.m -------------------------------------------------------------------------------- /UniversalApp/Modules/Mine/View/NickNameLbel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuYang8026/UniversalProject/HEAD/UniversalApp/Modules/Mine/View/NickNameLbel.h -------------------------------------------------------------------------------- /UniversalApp/Modules/Mine/View/NickNameLbel.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuYang8026/UniversalProject/HEAD/UniversalApp/Modules/Mine/View/NickNameLbel.m -------------------------------------------------------------------------------- /UniversalApp/NetWork/PPNetworkCache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuYang8026/UniversalProject/HEAD/UniversalApp/NetWork/PPNetworkCache.h -------------------------------------------------------------------------------- /UniversalApp/NetWork/PPNetworkCache.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuYang8026/UniversalProject/HEAD/UniversalApp/NetWork/PPNetworkCache.m -------------------------------------------------------------------------------- /UniversalApp/NetWork/PPNetworkHelper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuYang8026/UniversalProject/HEAD/UniversalApp/NetWork/PPNetworkHelper.h -------------------------------------------------------------------------------- /UniversalApp/NetWork/PPNetworkHelper.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuYang8026/UniversalProject/HEAD/UniversalApp/NetWork/PPNetworkHelper.m -------------------------------------------------------------------------------- /UniversalApp/Resource/DazFire.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuYang8026/UniversalProject/HEAD/UniversalApp/Resource/DazFire.png -------------------------------------------------------------------------------- /UniversalApp/Resource/MBProgressHUD/MBHUD_Error@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuYang8026/UniversalProject/HEAD/UniversalApp/Resource/MBProgressHUD/MBHUD_Error@2x.png -------------------------------------------------------------------------------- /UniversalApp/Resource/MBProgressHUD/MBHUD_Error@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuYang8026/UniversalProject/HEAD/UniversalApp/Resource/MBProgressHUD/MBHUD_Error@3x.png -------------------------------------------------------------------------------- /UniversalApp/Resource/MBProgressHUD/MBHUD_Info@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuYang8026/UniversalProject/HEAD/UniversalApp/Resource/MBProgressHUD/MBHUD_Info@2x.png -------------------------------------------------------------------------------- /UniversalApp/Resource/MBProgressHUD/MBHUD_Info@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuYang8026/UniversalProject/HEAD/UniversalApp/Resource/MBProgressHUD/MBHUD_Info@3x.png -------------------------------------------------------------------------------- /UniversalApp/Resource/MBProgressHUD/MBHUD_Success@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuYang8026/UniversalProject/HEAD/UniversalApp/Resource/MBProgressHUD/MBHUD_Success@2x.png -------------------------------------------------------------------------------- /UniversalApp/Resource/MBProgressHUD/MBHUD_Success@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuYang8026/UniversalProject/HEAD/UniversalApp/Resource/MBProgressHUD/MBHUD_Success@3x.png -------------------------------------------------------------------------------- /UniversalApp/Resource/MBProgressHUD/MBHUD_Warn@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuYang8026/UniversalProject/HEAD/UniversalApp/Resource/MBProgressHUD/MBHUD_Warn@2x.png -------------------------------------------------------------------------------- /UniversalApp/Resource/MBProgressHUD/MBHUD_Warn@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuYang8026/UniversalProject/HEAD/UniversalApp/Resource/MBProgressHUD/MBHUD_Warn@3x.png -------------------------------------------------------------------------------- /UniversalApp/Resource/back_icon@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuYang8026/UniversalProject/HEAD/UniversalApp/Resource/back_icon@2x.png -------------------------------------------------------------------------------- /UniversalApp/Resource/back_icon@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuYang8026/UniversalProject/HEAD/UniversalApp/Resource/back_icon@3x.png -------------------------------------------------------------------------------- /UniversalApp/Resource/close_icon@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuYang8026/UniversalProject/HEAD/UniversalApp/Resource/close_icon@2x.png -------------------------------------------------------------------------------- /UniversalApp/Resource/close_icon@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuYang8026/UniversalProject/HEAD/UniversalApp/Resource/close_icon@3x.png -------------------------------------------------------------------------------- /UniversalApp/Resource/rain.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuYang8026/UniversalProject/HEAD/UniversalApp/Resource/rain.png -------------------------------------------------------------------------------- /UniversalApp/Resource/snow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuYang8026/UniversalProject/HEAD/UniversalApp/Resource/snow.png -------------------------------------------------------------------------------- /UniversalApp/Resource/tabBar/LCTabBarBadge@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuYang8026/UniversalProject/HEAD/UniversalApp/Resource/tabBar/LCTabBarBadge@2x.png -------------------------------------------------------------------------------- /UniversalApp/Resource/tabBar/icon_tabbar_discovery.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuYang8026/UniversalProject/HEAD/UniversalApp/Resource/tabBar/icon_tabbar_discovery.png -------------------------------------------------------------------------------- /UniversalApp/Resource/tabBar/icon_tabbar_homepage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuYang8026/UniversalProject/HEAD/UniversalApp/Resource/tabBar/icon_tabbar_homepage.png -------------------------------------------------------------------------------- /UniversalApp/Resource/tabBar/icon_tabbar_homepage@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuYang8026/UniversalProject/HEAD/UniversalApp/Resource/tabBar/icon_tabbar_homepage@2x.png -------------------------------------------------------------------------------- /UniversalApp/Resource/tabBar/icon_tabbar_mine.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuYang8026/UniversalProject/HEAD/UniversalApp/Resource/tabBar/icon_tabbar_mine.png -------------------------------------------------------------------------------- /UniversalApp/Resource/tabBar/icon_tabbar_mine@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuYang8026/UniversalProject/HEAD/UniversalApp/Resource/tabBar/icon_tabbar_mine@2x.png -------------------------------------------------------------------------------- /UniversalApp/Resource/tabBar/icon_tabbar_misc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuYang8026/UniversalProject/HEAD/UniversalApp/Resource/tabBar/icon_tabbar_misc.png -------------------------------------------------------------------------------- /UniversalApp/Resource/tabBar/icon_tabbar_misc@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuYang8026/UniversalProject/HEAD/UniversalApp/Resource/tabBar/icon_tabbar_misc@2x.png -------------------------------------------------------------------------------- /UniversalApp/Resource/tabBar/icon_tabbar_nearby.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuYang8026/UniversalProject/HEAD/UniversalApp/Resource/tabBar/icon_tabbar_nearby.png -------------------------------------------------------------------------------- /UniversalApp/Resource/tabBar/icon_tabbar_onsite@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuYang8026/UniversalProject/HEAD/UniversalApp/Resource/tabBar/icon_tabbar_onsite@2x.png -------------------------------------------------------------------------------- /UniversalApp/Supporting Flies/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuYang8026/UniversalProject/HEAD/UniversalApp/Supporting Flies/Info.plist -------------------------------------------------------------------------------- /UniversalApp/Supporting Flies/PrefixHeader.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuYang8026/UniversalProject/HEAD/UniversalApp/Supporting Flies/PrefixHeader.pch -------------------------------------------------------------------------------- /UniversalApp/Supporting Flies/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuYang8026/UniversalProject/HEAD/UniversalApp/Supporting Flies/main.m -------------------------------------------------------------------------------- /UniversalApp/Utils/AES/AESCipher.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuYang8026/UniversalProject/HEAD/UniversalApp/Utils/AES/AESCipher.h -------------------------------------------------------------------------------- /UniversalApp/Utils/AES/AESCipher.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuYang8026/UniversalProject/HEAD/UniversalApp/Utils/AES/AESCipher.m -------------------------------------------------------------------------------- /UniversalApp/Utils/AdPage/AdPageView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuYang8026/UniversalProject/HEAD/UniversalApp/Utils/AdPage/AdPageView.h -------------------------------------------------------------------------------- /UniversalApp/Utils/AdPage/AdPageView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuYang8026/UniversalProject/HEAD/UniversalApp/Utils/AdPage/AdPageView.m -------------------------------------------------------------------------------- /UniversalApp/Utils/Category/UIButton+XYButton.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuYang8026/UniversalProject/HEAD/UniversalApp/Utils/Category/UIButton+XYButton.h -------------------------------------------------------------------------------- /UniversalApp/Utils/Category/UIButton+XYButton.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuYang8026/UniversalProject/HEAD/UniversalApp/Utils/Category/UIButton+XYButton.m -------------------------------------------------------------------------------- /UniversalApp/Utils/Category/UICollectionView+IndexPath.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuYang8026/UniversalProject/HEAD/UniversalApp/Utils/Category/UICollectionView+IndexPath.h -------------------------------------------------------------------------------- /UniversalApp/Utils/Category/UICollectionView+IndexPath.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuYang8026/UniversalProject/HEAD/UniversalApp/Utils/Category/UICollectionView+IndexPath.m -------------------------------------------------------------------------------- /UniversalApp/Utils/MBProgressHUD/MBProgressHUD+XY.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuYang8026/UniversalProject/HEAD/UniversalApp/Utils/MBProgressHUD/MBProgressHUD+XY.h -------------------------------------------------------------------------------- /UniversalApp/Utils/MBProgressHUD/MBProgressHUD+XY.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuYang8026/UniversalProject/HEAD/UniversalApp/Utils/MBProgressHUD/MBProgressHUD+XY.m -------------------------------------------------------------------------------- /UniversalApp/Utils/NetWork/HeaderModel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuYang8026/UniversalProject/HEAD/UniversalApp/Utils/NetWork/HeaderModel.h -------------------------------------------------------------------------------- /UniversalApp/Utils/NetWork/HeaderModel.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuYang8026/UniversalProject/HEAD/UniversalApp/Utils/NetWork/HeaderModel.m -------------------------------------------------------------------------------- /UniversalApp/Utils/NetWork/PPNetworkCache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuYang8026/UniversalProject/HEAD/UniversalApp/Utils/NetWork/PPNetworkCache.h -------------------------------------------------------------------------------- /UniversalApp/Utils/NetWork/PPNetworkCache.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuYang8026/UniversalProject/HEAD/UniversalApp/Utils/NetWork/PPNetworkCache.m -------------------------------------------------------------------------------- /UniversalApp/Utils/NetWork/PPNetworkHelper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuYang8026/UniversalProject/HEAD/UniversalApp/Utils/NetWork/PPNetworkHelper.h -------------------------------------------------------------------------------- /UniversalApp/Utils/NetWork/PPNetworkHelper.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuYang8026/UniversalProject/HEAD/UniversalApp/Utils/NetWork/PPNetworkHelper.m -------------------------------------------------------------------------------- /UniversalApp/Utils/OpenUDID/OpenUDID.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuYang8026/UniversalProject/HEAD/UniversalApp/Utils/OpenUDID/OpenUDID.h -------------------------------------------------------------------------------- /UniversalApp/Utils/OpenUDID/OpenUDID.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuYang8026/UniversalProject/HEAD/UniversalApp/Utils/OpenUDID/OpenUDID.m -------------------------------------------------------------------------------- /UniversalApp/Utils/Other/YYFPSLabel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuYang8026/UniversalProject/HEAD/UniversalApp/Utils/Other/YYFPSLabel.h -------------------------------------------------------------------------------- /UniversalApp/Utils/Other/YYFPSLabel.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuYang8026/UniversalProject/HEAD/UniversalApp/Utils/Other/YYFPSLabel.m -------------------------------------------------------------------------------- /UniversalApp/Utils/PickerView/XZPickView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuYang8026/UniversalProject/HEAD/UniversalApp/Utils/PickerView/XZPickView.h -------------------------------------------------------------------------------- /UniversalApp/Utils/PickerView/XZPickView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuYang8026/UniversalProject/HEAD/UniversalApp/Utils/PickerView/XZPickView.m -------------------------------------------------------------------------------- /UniversalApp/Utils/SDCycleScrollView/SDCycleScrollView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuYang8026/UniversalProject/HEAD/UniversalApp/Utils/SDCycleScrollView/SDCycleScrollView.h -------------------------------------------------------------------------------- /UniversalApp/Utils/SDCycleScrollView/SDCycleScrollView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuYang8026/UniversalProject/HEAD/UniversalApp/Utils/SDCycleScrollView/SDCycleScrollView.m -------------------------------------------------------------------------------- /UniversalApp/Utils/SDCycleScrollView/UIView+SDExtension.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuYang8026/UniversalProject/HEAD/UniversalApp/Utils/SDCycleScrollView/UIView+SDExtension.h -------------------------------------------------------------------------------- /UniversalApp/Utils/SDCycleScrollView/UIView+SDExtension.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuYang8026/UniversalProject/HEAD/UniversalApp/Utils/SDCycleScrollView/UIView+SDExtension.m -------------------------------------------------------------------------------- /UniversalApp/Utils/SandBoxHelper/SandBoxHelper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuYang8026/UniversalProject/HEAD/UniversalApp/Utils/SandBoxHelper/SandBoxHelper.h -------------------------------------------------------------------------------- /UniversalApp/Utils/SandBoxHelper/SandBoxHelper.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuYang8026/UniversalProject/HEAD/UniversalApp/Utils/SandBoxHelper/SandBoxHelper.m -------------------------------------------------------------------------------- /UniversalApp/Utils/TagsView/FFTagsView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuYang8026/UniversalProject/HEAD/UniversalApp/Utils/TagsView/FFTagsView.h -------------------------------------------------------------------------------- /UniversalApp/Utils/TagsView/FFTagsView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuYang8026/UniversalProject/HEAD/UniversalApp/Utils/TagsView/FFTagsView.m -------------------------------------------------------------------------------- /UniversalApp/Utils/TagsView/TagsButton.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuYang8026/UniversalProject/HEAD/UniversalApp/Utils/TagsView/TagsButton.h -------------------------------------------------------------------------------- /UniversalApp/Utils/TagsView/TagsButton.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuYang8026/UniversalProject/HEAD/UniversalApp/Utils/TagsView/TagsButton.m -------------------------------------------------------------------------------- /UniversalApp/Utils/XYTransition/XYTransition.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuYang8026/UniversalProject/HEAD/UniversalApp/Utils/XYTransition/XYTransition.h -------------------------------------------------------------------------------- /UniversalApp/Utils/XYTransition/XYTransition.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuYang8026/UniversalProject/HEAD/UniversalApp/Utils/XYTransition/XYTransition.m -------------------------------------------------------------------------------- /UniversalApp/Utils/XYTransition/XYTransitionProtocol.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuYang8026/UniversalProject/HEAD/UniversalApp/Utils/XYTransition/XYTransitionProtocol.h -------------------------------------------------------------------------------- /UniversalAppTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuYang8026/UniversalProject/HEAD/UniversalAppTests/Info.plist -------------------------------------------------------------------------------- /UniversalAppTests/MiAiAppTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuYang8026/UniversalProject/HEAD/UniversalAppTests/MiAiAppTests.m -------------------------------------------------------------------------------- /UniversalAppUITests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuYang8026/UniversalProject/HEAD/UniversalAppUITests/Info.plist -------------------------------------------------------------------------------- /UniversalAppUITests/MiAiAppUITests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuYang8026/UniversalProject/HEAD/UniversalAppUITests/MiAiAppUITests.m --------------------------------------------------------------------------------