├── Podfile ├── Podfile.lock ├── Pods ├── AFNetworkActivityLogger │ ├── AFNetworkActivityLogger │ │ ├── AFNetworkActivityConsoleLogger.h │ │ ├── AFNetworkActivityConsoleLogger.m │ │ ├── AFNetworkActivityLogger.h │ │ ├── AFNetworkActivityLogger.m │ │ └── AFNetworkActivityLoggerProtocol.h │ ├── LICENSE │ └── README.md ├── 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 │ │ ├── AFNetworkActivityLogger │ │ │ ├── AFNetworkActivityConsoleLogger.h │ │ │ ├── AFNetworkActivityLogger.h │ │ │ └── AFNetworkActivityLoggerProtocol.h │ │ ├── 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 │ │ ├── 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 │ │ ├── ReactiveObjC │ │ │ ├── MKAnnotationView+RACSignalSupport.h │ │ │ ├── NSArray+RACSequenceAdditions.h │ │ │ ├── NSData+RACSupport.h │ │ │ ├── NSDictionary+RACSequenceAdditions.h │ │ │ ├── NSEnumerator+RACSequenceAdditions.h │ │ │ ├── NSFileHandle+RACSupport.h │ │ │ ├── NSIndexSet+RACSequenceAdditions.h │ │ │ ├── NSInvocation+RACTypeParsing.h │ │ │ ├── NSNotificationCenter+RACSupport.h │ │ │ ├── NSObject+RACDeallocating.h │ │ │ ├── NSObject+RACDescription.h │ │ │ ├── NSObject+RACKVOWrapper.h │ │ │ ├── NSObject+RACLifting.h │ │ │ ├── NSObject+RACPropertySubscribing.h │ │ │ ├── NSObject+RACSelectorSignal.h │ │ │ ├── NSOrderedSet+RACSequenceAdditions.h │ │ │ ├── NSSet+RACSequenceAdditions.h │ │ │ ├── NSString+RACKeyPathUtilities.h │ │ │ ├── NSString+RACSequenceAdditions.h │ │ │ ├── NSString+RACSupport.h │ │ │ ├── NSURLConnection+RACSupport.h │ │ │ ├── NSUserDefaults+RACSupport.h │ │ │ ├── RACAnnotations.h │ │ │ ├── RACArraySequence.h │ │ │ ├── RACBehaviorSubject.h │ │ │ ├── RACBlockTrampoline.h │ │ │ ├── RACChannel.h │ │ │ ├── RACCommand.h │ │ │ ├── RACCompoundDisposable.h │ │ │ ├── RACDelegateProxy.h │ │ │ ├── RACDisposable.h │ │ │ ├── RACDynamicSequence.h │ │ │ ├── RACDynamicSignal.h │ │ │ ├── RACEXTKeyPathCoding.h │ │ │ ├── RACEXTRuntimeExtensions.h │ │ │ ├── RACEXTScope.h │ │ │ ├── RACEagerSequence.h │ │ │ ├── RACEmptySequence.h │ │ │ ├── RACEmptySignal.h │ │ │ ├── RACErrorSignal.h │ │ │ ├── RACEvent.h │ │ │ ├── RACGroupedSignal.h │ │ │ ├── RACImmediateScheduler.h │ │ │ ├── RACIndexSetSequence.h │ │ │ ├── RACKVOChannel.h │ │ │ ├── RACKVOProxy.h │ │ │ ├── RACKVOTrampoline.h │ │ │ ├── RACMulticastConnection+Private.h │ │ │ ├── RACMulticastConnection.h │ │ │ ├── RACPassthroughSubscriber.h │ │ │ ├── RACQueueScheduler+Subclass.h │ │ │ ├── RACQueueScheduler.h │ │ │ ├── RACReplaySubject.h │ │ │ ├── RACReturnSignal.h │ │ │ ├── RACScheduler+Private.h │ │ │ ├── RACScheduler+Subclass.h │ │ │ ├── RACScheduler.h │ │ │ ├── RACScopedDisposable.h │ │ │ ├── RACSequence.h │ │ │ ├── RACSerialDisposable.h │ │ │ ├── RACSignal+Operations.h │ │ │ ├── RACSignal.h │ │ │ ├── RACSignalSequence.h │ │ │ ├── RACStream+Private.h │ │ │ ├── RACStream.h │ │ │ ├── RACStringSequence.h │ │ │ ├── RACSubject.h │ │ │ ├── RACSubscriber+Private.h │ │ │ ├── RACSubscriber.h │ │ │ ├── RACSubscriptingAssignmentTrampoline.h │ │ │ ├── RACSubscriptionScheduler.h │ │ │ ├── RACTargetQueueScheduler.h │ │ │ ├── RACTestScheduler.h │ │ │ ├── RACTuple.h │ │ │ ├── RACTupleSequence.h │ │ │ ├── RACUnarySequence.h │ │ │ ├── RACUnit.h │ │ │ ├── RACValueTransformer.h │ │ │ ├── RACmetamacros.h │ │ │ ├── ReactiveObjC.h │ │ │ ├── UIActionSheet+RACSignalSupport.h │ │ │ ├── UIAlertView+RACSignalSupport.h │ │ │ ├── UIBarButtonItem+RACCommandSupport.h │ │ │ ├── UIButton+RACCommandSupport.h │ │ │ ├── UICollectionReusableView+RACSignalSupport.h │ │ │ ├── UIControl+RACSignalSupport.h │ │ │ ├── UIControl+RACSignalSupportPrivate.h │ │ │ ├── UIDatePicker+RACSignalSupport.h │ │ │ ├── UIGestureRecognizer+RACSignalSupport.h │ │ │ ├── UIImagePickerController+RACSignalSupport.h │ │ │ ├── UIRefreshControl+RACCommandSupport.h │ │ │ ├── UISegmentedControl+RACSignalSupport.h │ │ │ ├── UISlider+RACSignalSupport.h │ │ │ ├── UIStepper+RACSignalSupport.h │ │ │ ├── UISwitch+RACSignalSupport.h │ │ │ ├── UITableViewCell+RACSignalSupport.h │ │ │ ├── UITableViewHeaderFooterView+RACSignalSupport.h │ │ │ ├── UITextField+RACSignalSupport.h │ │ │ └── UITextView+RACSignalSupport.h │ │ └── SDWebImage │ │ │ ├── NSData+ImageContentType.h │ │ │ ├── NSImage+WebCache.h │ │ │ ├── SDImageCache.h │ │ │ ├── SDImageCacheConfig.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+WebCache.h │ │ │ └── UIView+WebCacheOperation.h │ └── Public │ │ ├── AFNetworkActivityLogger │ │ ├── AFNetworkActivityConsoleLogger.h │ │ ├── AFNetworkActivityLogger.h │ │ └── AFNetworkActivityLoggerProtocol.h │ │ ├── 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 │ │ ├── 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 │ │ ├── ReactiveObjC │ │ ├── MKAnnotationView+RACSignalSupport.h │ │ ├── NSArray+RACSequenceAdditions.h │ │ ├── NSData+RACSupport.h │ │ ├── NSDictionary+RACSequenceAdditions.h │ │ ├── NSEnumerator+RACSequenceAdditions.h │ │ ├── NSFileHandle+RACSupport.h │ │ ├── NSIndexSet+RACSequenceAdditions.h │ │ ├── NSInvocation+RACTypeParsing.h │ │ ├── NSNotificationCenter+RACSupport.h │ │ ├── NSObject+RACDeallocating.h │ │ ├── NSObject+RACDescription.h │ │ ├── NSObject+RACKVOWrapper.h │ │ ├── NSObject+RACLifting.h │ │ ├── NSObject+RACPropertySubscribing.h │ │ ├── NSObject+RACSelectorSignal.h │ │ ├── NSOrderedSet+RACSequenceAdditions.h │ │ ├── NSSet+RACSequenceAdditions.h │ │ ├── NSString+RACKeyPathUtilities.h │ │ ├── NSString+RACSequenceAdditions.h │ │ ├── NSString+RACSupport.h │ │ ├── NSURLConnection+RACSupport.h │ │ ├── NSUserDefaults+RACSupport.h │ │ ├── RACAnnotations.h │ │ ├── RACArraySequence.h │ │ ├── RACBehaviorSubject.h │ │ ├── RACBlockTrampoline.h │ │ ├── RACChannel.h │ │ ├── RACCommand.h │ │ ├── RACCompoundDisposable.h │ │ ├── RACDelegateProxy.h │ │ ├── RACDisposable.h │ │ ├── RACDynamicSequence.h │ │ ├── RACDynamicSignal.h │ │ ├── RACEXTKeyPathCoding.h │ │ ├── RACEXTScope.h │ │ ├── RACEagerSequence.h │ │ ├── RACErrorSignal.h │ │ ├── RACEvent.h │ │ ├── RACGroupedSignal.h │ │ ├── RACImmediateScheduler.h │ │ ├── RACIndexSetSequence.h │ │ ├── RACKVOChannel.h │ │ ├── RACKVOProxy.h │ │ ├── RACKVOTrampoline.h │ │ ├── RACMulticastConnection.h │ │ ├── RACPassthroughSubscriber.h │ │ ├── RACQueueScheduler+Subclass.h │ │ ├── RACQueueScheduler.h │ │ ├── RACReplaySubject.h │ │ ├── RACReturnSignal.h │ │ ├── RACScheduler+Subclass.h │ │ ├── RACScheduler.h │ │ ├── RACScopedDisposable.h │ │ ├── RACSequence.h │ │ ├── RACSerialDisposable.h │ │ ├── RACSignal+Operations.h │ │ ├── RACSignal.h │ │ ├── RACSignalSequence.h │ │ ├── RACStream.h │ │ ├── RACStringSequence.h │ │ ├── RACSubject.h │ │ ├── RACSubscriber.h │ │ ├── RACSubscriptingAssignmentTrampoline.h │ │ ├── RACSubscriptionScheduler.h │ │ ├── RACTargetQueueScheduler.h │ │ ├── RACTestScheduler.h │ │ ├── RACTuple.h │ │ ├── RACTupleSequence.h │ │ ├── RACUnarySequence.h │ │ ├── RACUnit.h │ │ ├── RACValueTransformer.h │ │ ├── RACmetamacros.h │ │ ├── ReactiveObjC.h │ │ ├── UIActionSheet+RACSignalSupport.h │ │ ├── UIAlertView+RACSignalSupport.h │ │ ├── UIBarButtonItem+RACCommandSupport.h │ │ ├── UIButton+RACCommandSupport.h │ │ ├── UICollectionReusableView+RACSignalSupport.h │ │ ├── UIControl+RACSignalSupport.h │ │ ├── UIDatePicker+RACSignalSupport.h │ │ ├── UIGestureRecognizer+RACSignalSupport.h │ │ ├── UIImagePickerController+RACSignalSupport.h │ │ ├── UIRefreshControl+RACCommandSupport.h │ │ ├── UISegmentedControl+RACSignalSupport.h │ │ ├── UISlider+RACSignalSupport.h │ │ ├── UIStepper+RACSignalSupport.h │ │ ├── UISwitch+RACSignalSupport.h │ │ ├── UITableViewCell+RACSignalSupport.h │ │ ├── UITableViewHeaderFooterView+RACSignalSupport.h │ │ ├── UITextField+RACSignalSupport.h │ │ └── UITextView+RACSignalSupport.h │ │ └── SDWebImage │ │ ├── NSData+ImageContentType.h │ │ ├── NSImage+WebCache.h │ │ ├── SDImageCache.h │ │ ├── SDImageCacheConfig.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+WebCache.h │ │ └── UIView+WebCacheOperation.h ├── Local Podspecs │ └── AFNetworkActivityLogger.podspec.json ├── 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 │ └── xcuserdata │ │ ├── k12.xcuserdatad │ │ └── xcschemes │ │ │ └── xcschememanagement.plist │ │ └── weikeyan.xcuserdatad │ │ └── xcschemes │ │ ├── AFNetworkActivityLogger.xcscheme │ │ ├── AFNetworking.xcscheme │ │ ├── MJRefresh.xcscheme │ │ ├── Masonry.xcscheme │ │ ├── Pods-iOS11AppStoreTransition.xcscheme │ │ ├── ReactiveObjC.xcscheme │ │ ├── SDWebImage.xcscheme │ │ └── xcschememanagement.plist ├── ReactiveObjC │ ├── LICENSE.md │ ├── README.md │ └── ReactiveObjC │ │ ├── MKAnnotationView+RACSignalSupport.h │ │ ├── MKAnnotationView+RACSignalSupport.m │ │ ├── NSArray+RACSequenceAdditions.h │ │ ├── NSArray+RACSequenceAdditions.m │ │ ├── NSData+RACSupport.h │ │ ├── NSData+RACSupport.m │ │ ├── NSDictionary+RACSequenceAdditions.h │ │ ├── NSDictionary+RACSequenceAdditions.m │ │ ├── NSEnumerator+RACSequenceAdditions.h │ │ ├── NSEnumerator+RACSequenceAdditions.m │ │ ├── NSFileHandle+RACSupport.h │ │ ├── NSFileHandle+RACSupport.m │ │ ├── NSIndexSet+RACSequenceAdditions.h │ │ ├── NSIndexSet+RACSequenceAdditions.m │ │ ├── NSInvocation+RACTypeParsing.h │ │ ├── NSInvocation+RACTypeParsing.m │ │ ├── NSNotificationCenter+RACSupport.h │ │ ├── NSNotificationCenter+RACSupport.m │ │ ├── NSObject+RACDeallocating.h │ │ ├── NSObject+RACDeallocating.m │ │ ├── NSObject+RACDescription.h │ │ ├── NSObject+RACDescription.m │ │ ├── NSObject+RACKVOWrapper.h │ │ ├── NSObject+RACKVOWrapper.m │ │ ├── NSObject+RACLifting.h │ │ ├── NSObject+RACLifting.m │ │ ├── NSObject+RACPropertySubscribing.h │ │ ├── NSObject+RACPropertySubscribing.m │ │ ├── NSObject+RACSelectorSignal.h │ │ ├── NSObject+RACSelectorSignal.m │ │ ├── NSOrderedSet+RACSequenceAdditions.h │ │ ├── NSOrderedSet+RACSequenceAdditions.m │ │ ├── NSSet+RACSequenceAdditions.h │ │ ├── NSSet+RACSequenceAdditions.m │ │ ├── NSString+RACKeyPathUtilities.h │ │ ├── NSString+RACKeyPathUtilities.m │ │ ├── NSString+RACSequenceAdditions.h │ │ ├── NSString+RACSequenceAdditions.m │ │ ├── NSString+RACSupport.h │ │ ├── NSString+RACSupport.m │ │ ├── NSURLConnection+RACSupport.h │ │ ├── NSURLConnection+RACSupport.m │ │ ├── NSUserDefaults+RACSupport.h │ │ ├── NSUserDefaults+RACSupport.m │ │ ├── RACAnnotations.h │ │ ├── RACArraySequence.h │ │ ├── RACArraySequence.m │ │ ├── RACBehaviorSubject.h │ │ ├── RACBehaviorSubject.m │ │ ├── RACBlockTrampoline.h │ │ ├── RACBlockTrampoline.m │ │ ├── RACChannel.h │ │ ├── RACChannel.m │ │ ├── RACCommand.h │ │ ├── RACCommand.m │ │ ├── RACCompoundDisposable.h │ │ ├── RACCompoundDisposable.m │ │ ├── RACCompoundDisposableProvider.d │ │ ├── RACDelegateProxy.h │ │ ├── RACDelegateProxy.m │ │ ├── RACDisposable.h │ │ ├── RACDisposable.m │ │ ├── RACDynamicSequence.h │ │ ├── RACDynamicSequence.m │ │ ├── RACDynamicSignal.h │ │ ├── RACDynamicSignal.m │ │ ├── RACEagerSequence.h │ │ ├── RACEagerSequence.m │ │ ├── RACEmptySequence.h │ │ ├── RACEmptySequence.m │ │ ├── RACEmptySignal.h │ │ ├── RACEmptySignal.m │ │ ├── RACErrorSignal.h │ │ ├── RACErrorSignal.m │ │ ├── RACEvent.h │ │ ├── RACEvent.m │ │ ├── RACGroupedSignal.h │ │ ├── RACGroupedSignal.m │ │ ├── RACImmediateScheduler.h │ │ ├── RACImmediateScheduler.m │ │ ├── RACIndexSetSequence.h │ │ ├── RACIndexSetSequence.m │ │ ├── RACKVOChannel.h │ │ ├── RACKVOChannel.m │ │ ├── RACKVOProxy.h │ │ ├── RACKVOProxy.m │ │ ├── RACKVOTrampoline.h │ │ ├── RACKVOTrampoline.m │ │ ├── RACMulticastConnection+Private.h │ │ ├── RACMulticastConnection.h │ │ ├── RACMulticastConnection.m │ │ ├── RACPassthroughSubscriber.h │ │ ├── RACPassthroughSubscriber.m │ │ ├── RACQueueScheduler+Subclass.h │ │ ├── RACQueueScheduler.h │ │ ├── RACQueueScheduler.m │ │ ├── RACReplaySubject.h │ │ ├── RACReplaySubject.m │ │ ├── RACReturnSignal.h │ │ ├── RACReturnSignal.m │ │ ├── RACScheduler+Private.h │ │ ├── RACScheduler+Subclass.h │ │ ├── RACScheduler.h │ │ ├── RACScheduler.m │ │ ├── RACScopedDisposable.h │ │ ├── RACScopedDisposable.m │ │ ├── RACSequence.h │ │ ├── RACSequence.m │ │ ├── RACSerialDisposable.h │ │ ├── RACSerialDisposable.m │ │ ├── RACSignal+Operations.h │ │ ├── RACSignal+Operations.m │ │ ├── RACSignal.h │ │ ├── RACSignal.m │ │ ├── RACSignalProvider.d │ │ ├── RACSignalSequence.h │ │ ├── RACSignalSequence.m │ │ ├── RACStream+Private.h │ │ ├── RACStream.h │ │ ├── RACStream.m │ │ ├── RACStringSequence.h │ │ ├── RACStringSequence.m │ │ ├── RACSubject.h │ │ ├── RACSubject.m │ │ ├── RACSubscriber+Private.h │ │ ├── RACSubscriber.h │ │ ├── RACSubscriber.m │ │ ├── RACSubscriptingAssignmentTrampoline.h │ │ ├── RACSubscriptingAssignmentTrampoline.m │ │ ├── RACSubscriptionScheduler.h │ │ ├── RACSubscriptionScheduler.m │ │ ├── RACTargetQueueScheduler.h │ │ ├── RACTargetQueueScheduler.m │ │ ├── RACTestScheduler.h │ │ ├── RACTestScheduler.m │ │ ├── RACTuple.h │ │ ├── RACTuple.m │ │ ├── RACTupleSequence.h │ │ ├── RACTupleSequence.m │ │ ├── RACUnarySequence.h │ │ ├── RACUnarySequence.m │ │ ├── RACUnit.h │ │ ├── RACUnit.m │ │ ├── RACValueTransformer.h │ │ ├── RACValueTransformer.m │ │ ├── ReactiveObjC.h │ │ ├── UIActionSheet+RACSignalSupport.h │ │ ├── UIActionSheet+RACSignalSupport.m │ │ ├── UIAlertView+RACSignalSupport.h │ │ ├── UIAlertView+RACSignalSupport.m │ │ ├── UIBarButtonItem+RACCommandSupport.h │ │ ├── UIBarButtonItem+RACCommandSupport.m │ │ ├── UIButton+RACCommandSupport.h │ │ ├── UIButton+RACCommandSupport.m │ │ ├── UICollectionReusableView+RACSignalSupport.h │ │ ├── UICollectionReusableView+RACSignalSupport.m │ │ ├── UIControl+RACSignalSupport.h │ │ ├── UIControl+RACSignalSupport.m │ │ ├── UIControl+RACSignalSupportPrivate.h │ │ ├── UIControl+RACSignalSupportPrivate.m │ │ ├── UIDatePicker+RACSignalSupport.h │ │ ├── UIDatePicker+RACSignalSupport.m │ │ ├── UIGestureRecognizer+RACSignalSupport.h │ │ ├── UIGestureRecognizer+RACSignalSupport.m │ │ ├── UIImagePickerController+RACSignalSupport.h │ │ ├── UIImagePickerController+RACSignalSupport.m │ │ ├── UIRefreshControl+RACCommandSupport.h │ │ ├── UIRefreshControl+RACCommandSupport.m │ │ ├── UISegmentedControl+RACSignalSupport.h │ │ ├── UISegmentedControl+RACSignalSupport.m │ │ ├── UISlider+RACSignalSupport.h │ │ ├── UISlider+RACSignalSupport.m │ │ ├── UIStepper+RACSignalSupport.h │ │ ├── UIStepper+RACSignalSupport.m │ │ ├── UISwitch+RACSignalSupport.h │ │ ├── UISwitch+RACSignalSupport.m │ │ ├── UITableViewCell+RACSignalSupport.h │ │ ├── UITableViewCell+RACSignalSupport.m │ │ ├── UITableViewHeaderFooterView+RACSignalSupport.h │ │ ├── UITableViewHeaderFooterView+RACSignalSupport.m │ │ ├── UITextField+RACSignalSupport.h │ │ ├── UITextField+RACSignalSupport.m │ │ ├── UITextView+RACSignalSupport.h │ │ ├── UITextView+RACSignalSupport.m │ │ └── extobjc │ │ ├── RACEXTKeyPathCoding.h │ │ ├── RACEXTRuntimeExtensions.h │ │ ├── RACEXTRuntimeExtensions.m │ │ ├── RACEXTScope.h │ │ └── RACmetamacros.h ├── SDWebImage │ ├── LICENSE │ ├── README.md │ └── SDWebImage │ │ ├── NSData+ImageContentType.h │ │ ├── NSData+ImageContentType.m │ │ ├── NSImage+WebCache.h │ │ ├── NSImage+WebCache.m │ │ ├── SDImageCache.h │ │ ├── SDImageCache.m │ │ ├── SDImageCacheConfig.h │ │ ├── SDImageCacheConfig.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+WebCache.h │ │ ├── UIView+WebCache.m │ │ ├── UIView+WebCacheOperation.h │ │ └── UIView+WebCacheOperation.m └── Target Support Files │ ├── AFNetworkActivityLogger │ ├── AFNetworkActivityLogger-dummy.m │ ├── AFNetworkActivityLogger-prefix.pch │ └── AFNetworkActivityLogger.xcconfig │ ├── AFNetworking │ ├── AFNetworking-dummy.m │ ├── AFNetworking-prefix.pch │ └── AFNetworking.xcconfig │ ├── MJRefresh │ ├── MJRefresh-dummy.m │ ├── MJRefresh-prefix.pch │ └── MJRefresh.xcconfig │ ├── Masonry │ ├── Masonry-dummy.m │ ├── Masonry-prefix.pch │ └── Masonry.xcconfig │ ├── Pods-iOS11AppStoreTransition │ ├── Pods-iOS11AppStoreTransition-acknowledgements.markdown │ ├── Pods-iOS11AppStoreTransition-acknowledgements.plist │ ├── Pods-iOS11AppStoreTransition-dummy.m │ ├── Pods-iOS11AppStoreTransition-frameworks.sh │ ├── Pods-iOS11AppStoreTransition-resources.sh │ ├── Pods-iOS11AppStoreTransition.debug.xcconfig │ └── Pods-iOS11AppStoreTransition.release.xcconfig │ ├── ReactiveObjC │ ├── ReactiveObjC-dummy.m │ ├── ReactiveObjC-prefix.pch │ └── ReactiveObjC.xcconfig │ └── SDWebImage │ ├── SDWebImage-dummy.m │ ├── SDWebImage-prefix.pch │ └── SDWebImage.xcconfig ├── README.md ├── iOS11AppStoreTransition.xcodeproj ├── project.pbxproj ├── project.xcworkspace │ ├── contents.xcworkspacedata │ └── xcuserdata │ │ └── weikeyan.xcuserdatad │ │ └── UserInterfaceState.xcuserstate └── xcuserdata │ ├── k12.xcuserdatad │ └── xcschemes │ │ └── xcschememanagement.plist │ └── weikeyan.xcuserdatad │ └── xcschemes │ └── xcschememanagement.plist ├── iOS11AppStoreTransition.xcworkspace ├── contents.xcworkspacedata └── xcuserdata │ ├── k12.xcuserdatad │ └── UserInterfaceState.xcuserstate │ └── weikeyan.xcuserdatad │ └── UserInterfaceState.xcuserstate ├── iOS11AppStoreTransition ├── All │ ├── AllSb.storyboard │ ├── QCAllViewController.h │ ├── QCAllViewController.m │ ├── QCCardTransition.h │ ├── QCCardTransition.m │ ├── QCCoursesDetailController.h │ ├── QCCoursesDetailController.m │ ├── QCTabBarController.h │ └── QCTabBarController.m ├── AppDelegate.h ├── AppDelegate.m ├── Assets.xcassets │ ├── AppIcon.appiconset │ │ └── Contents.json │ ├── Contents.json │ ├── CourseList │ │ ├── Contents.json │ │ ├── course_more.imageset │ │ │ ├── Contents.json │ │ │ └── more.pdf │ │ └── course_tag.imageset │ │ │ ├── Contents.json │ │ │ └── tag.pdf │ ├── LiveProject │ │ ├── Contents.json │ │ ├── back_icon.imageset │ │ │ ├── Contents.json │ │ │ └── back_icon.pdf │ │ ├── bottom_arrow_btn.imageset │ │ │ ├── Contents.json │ │ │ ├── closeBtn@2x.png │ │ │ └── closeBtn@3x.png │ │ ├── closeroom_icon.imageset │ │ │ ├── Contents.json │ │ │ └── closeroom_icon.pdf │ │ ├── more_icon.imageset │ │ │ ├── Contents.json │ │ │ └── more_icon.pdf │ │ ├── newLoading_animation-32 │ │ │ ├── Contents.json │ │ │ ├── loading_0000_图层-59.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── loading_0000_图层-59@2x.png │ │ │ │ └── loading_0000_图层-59@3x.png │ │ │ ├── loading_0001_图层-58.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── loading_0001_图层-58@2x.png │ │ │ │ └── loading_0001_图层-58@3x.png │ │ │ ├── loading_0002_图层-57.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── loading_0002_图层-57@2x.png │ │ │ │ └── loading_0002_图层-57@3x.png │ │ │ ├── loading_0003_图层-56.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── loading_0003_图层-56@2x.png │ │ │ │ └── loading_0003_图层-56@3x.png │ │ │ ├── loading_0004_图层-55.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── loading_0004_图层-55@2x.png │ │ │ │ └── loading_0004_图层-55@3x.png │ │ │ ├── loading_0005_图层-54.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── loading_0005_图层-54@2x.png │ │ │ │ └── loading_0005_图层-54@3x.png │ │ │ ├── loading_0006_图层-53.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── loading_0006_图层-53@2x.png │ │ │ │ └── loading_0006_图层-53@3x.png │ │ │ ├── loading_0007_图层-52.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── loading_0007_图层-52@2x.png │ │ │ │ └── loading_0007_图层-52@3x.png │ │ │ ├── loading_0008_图层-51.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── loading_0008_图层-51@2x.png │ │ │ │ └── loading_0008_图层-51@3x.png │ │ │ ├── loading_0009_图层-50.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── loading_0009_图层-50@2x.png │ │ │ │ └── loading_0009_图层-50@3x.png │ │ │ ├── loading_0010_图层-49.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── loading_0010_图层-49@2x.png │ │ │ │ └── loading_0010_图层-49@3x.png │ │ │ ├── loading_0011_图层-48.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── loading_0011_图层-48@2x.png │ │ │ │ └── loading_0011_图层-48@3x.png │ │ │ ├── loading_0012_图层-47.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── loading_0012_图层-47@2x.png │ │ │ │ └── loading_0012_图层-47@3x.png │ │ │ ├── loading_0013_图层-46.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── loading_0013_图层-46@2x.png │ │ │ │ └── loading_0013_图层-46@3x.png │ │ │ ├── loading_0014_图层-45.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── loading_0014_图层-45@2x.png │ │ │ │ └── loading_0014_图层-45@3x.png │ │ │ ├── loading_0015_图层-44.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── loading_0015_图层-44@2x.png │ │ │ │ └── loading_0015_图层-44@3x.png │ │ │ ├── loading_0016_图层-43.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── loading_0016_图层-43@2x.png │ │ │ │ └── loading_0016_图层-43@3x.png │ │ │ ├── loading_0017_图层-42.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── loading_0017_图层-42@2x.png │ │ │ │ └── loading_0017_图层-42@3x.png │ │ │ ├── loading_0018_图层-41.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── loading_0018_图层-41@2x.png │ │ │ │ └── loading_0018_图层-41@3x.png │ │ │ ├── loading_0019_图层-40.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── loading_0019_图层-40@2x.png │ │ │ │ └── loading_0019_图层-40@3x.png │ │ │ ├── loading_0020_图层-39.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── loading_0020_图层-39@2x.png │ │ │ │ └── loading_0020_图层-39@3x.png │ │ │ ├── loading_0021_图层-38.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── loading_0021_图层-38@2x.png │ │ │ │ └── loading_0022_图层-37@3x.png │ │ │ ├── loading_0022_图层-37.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── loading_0022_图层-37@2x.png │ │ │ │ └── loading_0022_图层-37@3x.png │ │ │ ├── loading_0023_图层-36.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── loading_0023_图层-36@2x.png │ │ │ │ └── loading_0023_图层-36@3x.png │ │ │ ├── loading_0024_图层-35.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── loading_0024_图层-35@2x.png │ │ │ │ └── loading_0024_图层-35@3x.png │ │ │ ├── loading_0025_图层-34.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── loading_0025_图层-34@2x.png │ │ │ │ └── loading_0025_图层-34@3x.png │ │ │ ├── loading_0026_图层-33.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── loading_0026_图层-33@2x.png │ │ │ │ └── loading_0026_图层-33@3x.png │ │ │ ├── loading_0027_图层-32.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── loading_0027_图层-32@2x.png │ │ │ │ └── loading_0027_图层-32@3x.png │ │ │ ├── loading_0028_图层-31.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── loading_0028_图层-31@2x.png │ │ │ │ └── loading_0028_图层-31@3x.png │ │ │ ├── loading_0029_图层-30.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── loading_0029_图层-30@2x.png │ │ │ │ └── loading_0029_图层-30@3x.png │ │ │ ├── loading_0030_图层-29.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── loading_0030_图层-29@2x.png │ │ │ │ └── loading_0030_图层-29@3x.png │ │ │ ├── loading_0031_图层-28.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── loading_0031_图层-28@2x.png │ │ │ │ └── loading_0031_图层-28@3x.png │ │ │ ├── loading_0032_图层-27.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── loading_0032_图层-27@2x.png │ │ │ │ └── loading_0032_图层-27@3x.png │ │ │ ├── loading_0033_图层-26.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── loading_0033_图层-26@2x.png │ │ │ │ └── loading_0033_图层-26@3x.png │ │ │ ├── loading_0034_图层-25.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── loading_0034_图层-25@2x.png │ │ │ │ └── loading_0034_图层-25@3x.png │ │ │ ├── loading_0035_图层-24.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── loading_0035_图层-24@2x.png │ │ │ │ └── loading_0035_图层-24@3x.png │ │ │ ├── loading_0036_图层-23.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── loading_0036_图层-23@2x.png │ │ │ │ └── loading_0036_图层-23@3x.png │ │ │ ├── loading_0037_图层-22.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── loading_0037_图层-22@2x.png │ │ │ │ └── loading_0037_图层-22@3x.png │ │ │ ├── loading_0038_图层-21.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── loading_0038_图层-21@2x.png │ │ │ │ └── loading_0038_图层-21@3x.png │ │ │ ├── loading_0039_图层-20.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── loading_0039_图层-20@2x.png │ │ │ │ └── loading_0039_图层-20@3x.png │ │ │ ├── loading_0040_图层-19.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── loading_0040_图层-19@2x.png │ │ │ │ └── loading_0040_图层-19@3x.png │ │ │ ├── loading_0041_图层-18.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── loading_0041_图层-18@2x.png │ │ │ │ └── loading_0041_图层-18@3x.png │ │ │ ├── loading_0042_图层-17.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── loading_0042_图层-17@2x.png │ │ │ │ └── loading_0042_图层-17@3x.png │ │ │ ├── loading_0043_图层-16.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── loading_0043_图层-16@2x.png │ │ │ │ └── loading_0043_图层-16@3x.png │ │ │ ├── loading_0044_图层-15.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── loading_0044_图层-15@2x.png │ │ │ │ └── loading_0044_图层-15@3x.png │ │ │ ├── loading_0045_图层-14.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── loading_0045_图层-14@2x.png │ │ │ │ └── loading_0045_图层-14@3x.png │ │ │ ├── loading_0046_图层-13.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── loading_0046_图层-13@2x.png │ │ │ │ └── loading_0046_图层-13@3x.png │ │ │ ├── loading_0047_图层-12.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── loading_0047_图层-12@2x.png │ │ │ │ └── loading_0047_图层-12@3x.png │ │ │ ├── loading_0048_图层-11.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── loading_0048_图层-11@2x.png │ │ │ │ └── loading_0048_图层-11@3x.png │ │ │ ├── loading_0049_图层-10.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── loading_0049_图层-10@2x.png │ │ │ │ └── loading_0049_图层-10@3x.png │ │ │ ├── loading_0050_图层-9.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── loading_0050_图层-9@2x.png │ │ │ │ └── loading_0050_图层-9@3x.png │ │ │ ├── loading_0051_图层-8.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── loading_0051_图层-8@2x.png │ │ │ │ └── loading_0051_图层-8@3x.png │ │ │ ├── loading_0052_图层-7.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── loading_0052_图层-7@2x.png │ │ │ │ └── loading_0052_图层-7@3x.png │ │ │ ├── loading_0053_图层-6.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── loading_0053_图层-6@2x.png │ │ │ │ └── loading_0053_图层-6@3x.png │ │ │ ├── loading_0054_图层-5.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── loading_0054_图层-5@2x.png │ │ │ │ └── loading_0054_图层-5@3x.png │ │ │ ├── loading_0055_图层-4.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── loading_0055_图层-4@2x.png │ │ │ │ └── loading_0055_图层-4@3x.png │ │ │ ├── loading_0056_图层-3.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── loading_0056_图层-3@2x.png │ │ │ │ └── loading_0056_图层-3@3x.png │ │ │ ├── loading_0057_图层-2.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── loading_0057_图层-2@2x.png │ │ │ │ └── loading_0057_图层-2@3x.png │ │ │ └── loading_0058_图层-1.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── loading_0058_图层-1@2x.png │ │ │ │ └── loading_0058_图层-1@3x.png │ │ ├── newLoading_animation-49 │ │ │ ├── Contents.json │ │ │ ├── loading_0000_59.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── loading_0000_59@2x.png │ │ │ ├── loading_0001_58.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── loading_0001_58@2x.png │ │ │ ├── loading_0002_57.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── loading_0002_57@2x.png │ │ │ ├── loading_0003_56.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── loading_0003_56@2x.png │ │ │ ├── loading_0004_55.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── loading_0004_55@2x.png │ │ │ ├── loading_0005_54.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── loading_0005_54@2x.png │ │ │ ├── loading_0006_53.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── loading_0006_53@2x.png │ │ │ ├── loading_0007_52.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── loading_0007_52@2x.png │ │ │ ├── loading_0008_51.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── loading_0008_51@2x.png │ │ │ ├── loading_0009_50.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── loading_0009_50@2x.png │ │ │ ├── loading_0010_49.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── loading_0010_49@2x.png │ │ │ ├── loading_0011_48.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── loading_0011_48@2x.png │ │ │ ├── loading_0012_47.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── loading_0012_47@2x.png │ │ │ ├── loading_0013_46.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── loading_0013_46@2x.png │ │ │ ├── loading_0014_45.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── loading_0014_45@2x.png │ │ │ │ └── loading_0014_45@3x.png │ │ │ ├── loading_0015_44.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── loading_0015_44@2x.png │ │ │ │ └── loading_0015_44@3x.png │ │ │ ├── loading_0016_43.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── loading_0016_43@2x.png │ │ │ │ └── loading_0016_43@3x.png │ │ │ ├── loading_0017_42.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── loading_0017_42@2x.png │ │ │ │ └── loading_0017_42@3x.png │ │ │ ├── loading_0018_41.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── loading_0018_41@2x.png │ │ │ │ └── loading_0018_41@3x.png │ │ │ ├── loading_0019_40.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── loading_0019_40@2x.png │ │ │ │ └── loading_0019_40@3x.png │ │ │ ├── loading_0020_39.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── loading_0020_39@2x.png │ │ │ │ └── loading_0020_39@3x.png │ │ │ ├── loading_0021_38.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── loading_0021_38@2x.png │ │ │ │ └── loading_0021_38@3x.png │ │ │ ├── loading_0022_37.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── loading_0022_37@2x.png │ │ │ │ └── loading_0022_37@3x.png │ │ │ ├── loading_0023_36.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── loading_0023_36@2x.png │ │ │ │ └── loading_0023_36@3x.png │ │ │ ├── loading_0024_35.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── loading_0024_35@2x.png │ │ │ │ └── loading_0024_35@3x.png │ │ │ ├── loading_0025_34.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── loading_0025_34@2x.png │ │ │ │ └── loading_0025_34@3x.png │ │ │ ├── loading_0026_33.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── loading_0026_33@2x.png │ │ │ │ └── loading_0026_33@3x.png │ │ │ ├── loading_0027_32.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── loading_0027_32@2x.png │ │ │ │ └── loading_0027_32@3x.png │ │ │ ├── loading_0028_31.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── loading_0028_31@2x.png │ │ │ │ └── loading_0028_31@3x.png │ │ │ ├── loading_0029_30.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── loading_0029_30@2x.png │ │ │ │ └── loading_0029_30@3x.png │ │ │ ├── loading_0030_29.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── loading_0030_29@2x.png │ │ │ │ └── loading_0030_29@3x.png │ │ │ ├── loading_0031_28.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── loading_0031_28@2x.png │ │ │ │ └── loading_0031_28@3x.png │ │ │ ├── loading_0032_27.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── loading_0032_27@2x.png │ │ │ │ └── loading_0032_27@3x.png │ │ │ ├── loading_0033_26.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── loading_0033_26@2x.png │ │ │ │ └── loading_0033_26@3x.png │ │ │ ├── loading_0034_25.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── loading_0034_25@2x.png │ │ │ │ └── loading_0034_25@3x.png │ │ │ ├── loading_0035_24.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── loading_0035_24@2x.png │ │ │ │ └── loading_0035_24@3x.png │ │ │ ├── loading_0036_23.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── loading_0036_23@2x.png │ │ │ │ └── loading_0036_23@3x.png │ │ │ ├── loading_0037_22.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── loading_0037_22@2x.png │ │ │ │ └── loading_0037_22@3x.png │ │ │ ├── loading_0038_21.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── loading_0038_21@2x.png │ │ │ │ └── loading_0038_21@3x.png │ │ │ ├── loading_0039_20.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── loading_0039_20@2x.png │ │ │ │ └── loading_0039_20@3x.png │ │ │ ├── loading_0040_19.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── loading_0040_19@2x.png │ │ │ │ └── loading_0040_19@3x.png │ │ │ ├── loading_0041_18.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── loading_0041_18@2x.png │ │ │ │ └── loading_0041_18@3x.png │ │ │ ├── loading_0042_17.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── loading_0042_17@2x.png │ │ │ │ └── loading_0042_17@3x.png │ │ │ ├── loading_0043_16.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── loading_0043_16@2x.png │ │ │ │ └── loading_0043_16@3x.png │ │ │ ├── loading_0044_15.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── loading_0044_15@2x.png │ │ │ │ └── loading_0044_15@3x.png │ │ │ ├── loading_0045_14.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── loading_0045_14@2x.png │ │ │ │ └── loading_0045_14@3x.png │ │ │ ├── loading_0046_13.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── loading_0046_13@2x.png │ │ │ │ └── loading_0046_13@3x.png │ │ │ ├── loading_0047_12.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── loading_0047_12@2x.png │ │ │ │ └── loading_0047_12@3x.png │ │ │ ├── loading_0048_11.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── loading_0048_11@2x.png │ │ │ │ └── loading_0048_11@3x.png │ │ │ ├── loading_0049_10.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── loading_0049_10@2x.png │ │ │ │ └── loading_0049_10@3x.png │ │ │ ├── loading_0050_9.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── loading_0050_9@2x.png │ │ │ │ └── loading_0050_9@3x.png │ │ │ ├── loading_0051_8.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── loading_0051_8@2x.png │ │ │ │ └── loading_0051_8@3x.png │ │ │ ├── loading_0052_7.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── loading_0052_7@2x.png │ │ │ │ └── loading_0052_7@3x.png │ │ │ ├── loading_0053_6.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── loading_0053_6@2x.png │ │ │ │ └── loading_0053_6@3x.png │ │ │ ├── loading_0054_5.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── loading_0054_5@2x.png │ │ │ │ └── loading_0054_5@3x.png │ │ │ ├── loading_0055_4.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── loading_0055_4@2x.png │ │ │ │ └── loading_0055_4@3x.png │ │ │ ├── loading_0056_3.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── loading_0056_3@2x.png │ │ │ │ └── loading_0056_3@3x.png │ │ │ ├── loading_0057_2.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── loading_0057_2@2x.png │ │ │ │ └── loading_0057_2@3x.png │ │ │ └── loading_0058_1.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── loading_0058_1@2x.png │ │ │ │ └── loading_0058_1@3x.png │ │ ├── qingclasslogo_icon.imageset │ │ │ ├── Contents.json │ │ │ └── qingclasslogo_icon.pdf │ │ └── slide_icon.imageset │ │ │ ├── Contents.json │ │ │ └── slide_icon.pdf │ ├── User │ │ ├── Contents.json │ │ ├── edit_clean.imageset │ │ │ ├── Contents.json │ │ │ └── clean.pdf │ │ ├── edit_down.imageset │ │ │ ├── Contents.json │ │ │ └── down.pdf │ │ ├── edit_edit.imageset │ │ │ ├── Contents.json │ │ │ └── edit.pdf │ │ ├── edit_next.imageset │ │ │ ├── Contents.json │ │ │ └── next.pdf │ │ ├── edit_photo.imageset │ │ │ ├── Contents.json │ │ │ └── camera.pdf │ │ ├── edit_prev.imageset │ │ │ ├── Contents.json │ │ │ └── prev.pdf │ │ └── edit_wechat.imageset │ │ │ ├── Contents.json │ │ │ └── wechat.pdf │ └── login │ │ ├── Contents.json │ │ ├── login_Back.imageset │ │ ├── Back.pdf │ │ └── Contents.json │ │ ├── login_icon_check.imageset │ │ ├── Contents.json │ │ └── icon_check.pdf │ │ ├── login_icon_close.imageset │ │ ├── Contents.json │ │ └── icon_close.pdf │ │ ├── login_icon_code_b.imageset │ │ ├── Contents.json │ │ └── icon_code_b.pdf │ │ ├── login_icon_code_w.imageset │ │ ├── Contents.json │ │ └── icon_code_w.pdf │ │ ├── login_icon_fire_b.imageset │ │ ├── Contents.json │ │ └── icon_fire_b.pdf │ │ ├── login_icon_fire_w.imageset │ │ ├── Contents.json │ │ └── icon_fire_w.pdf │ │ ├── login_icon_fire_w_big.imageset │ │ ├── Contents.json │ │ └── icon_fire_w_big.pdf │ │ └── login_icon_pin.imageset │ │ ├── Contents.json │ │ └── login_icon_pin.pdf ├── Base.lproj │ └── LaunchScreen.storyboard ├── Info.plist ├── TableViewCell │ ├── QCBaseCell.h │ ├── QCBaseCell.m │ ├── QCChoiceCourseCell.h │ ├── QCChoiceCourseCell.m │ ├── QCChoiceCourseCell.xib │ ├── QCCourseCell.h │ ├── QCCourseCell.m │ ├── QCCourseCell.xib │ ├── QCCoursesCategorySection.h │ ├── QCCoursesCategorySection.m │ ├── QCMoreCourseListCell.h │ ├── QCMoreCourseListCell.m │ └── QCMoreCourseListCell.xib ├── Utils │ └── QCUIToobox.h └── main.m ├── iOS11AppStoreTransitionTests ├── Info.plist └── iOS11AppStoreTransitionTests.m ├── iOS11AppStoreTransitionUITests ├── Info.plist └── iOS11AppStoreTransitionUITests.m └── images ├── 1.gif └── 2.gif /Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fndppx/iOS11AppStoreTransition/HEAD/Podfile -------------------------------------------------------------------------------- /Podfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fndppx/iOS11AppStoreTransition/HEAD/Podfile.lock -------------------------------------------------------------------------------- /Pods/AFNetworkActivityLogger/AFNetworkActivityLogger/AFNetworkActivityConsoleLogger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fndppx/iOS11AppStoreTransition/HEAD/Pods/AFNetworkActivityLogger/AFNetworkActivityLogger/AFNetworkActivityConsoleLogger.h -------------------------------------------------------------------------------- /Pods/AFNetworkActivityLogger/AFNetworkActivityLogger/AFNetworkActivityConsoleLogger.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fndppx/iOS11AppStoreTransition/HEAD/Pods/AFNetworkActivityLogger/AFNetworkActivityLogger/AFNetworkActivityConsoleLogger.m -------------------------------------------------------------------------------- /Pods/AFNetworkActivityLogger/AFNetworkActivityLogger/AFNetworkActivityLogger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fndppx/iOS11AppStoreTransition/HEAD/Pods/AFNetworkActivityLogger/AFNetworkActivityLogger/AFNetworkActivityLogger.h -------------------------------------------------------------------------------- /Pods/AFNetworkActivityLogger/AFNetworkActivityLogger/AFNetworkActivityLogger.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fndppx/iOS11AppStoreTransition/HEAD/Pods/AFNetworkActivityLogger/AFNetworkActivityLogger/AFNetworkActivityLogger.m -------------------------------------------------------------------------------- /Pods/AFNetworkActivityLogger/AFNetworkActivityLogger/AFNetworkActivityLoggerProtocol.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fndppx/iOS11AppStoreTransition/HEAD/Pods/AFNetworkActivityLogger/AFNetworkActivityLogger/AFNetworkActivityLoggerProtocol.h -------------------------------------------------------------------------------- /Pods/AFNetworkActivityLogger/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fndppx/iOS11AppStoreTransition/HEAD/Pods/AFNetworkActivityLogger/LICENSE -------------------------------------------------------------------------------- /Pods/AFNetworkActivityLogger/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fndppx/iOS11AppStoreTransition/HEAD/Pods/AFNetworkActivityLogger/README.md -------------------------------------------------------------------------------- /Pods/AFNetworking/AFNetworking/AFHTTPSessionManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fndppx/iOS11AppStoreTransition/HEAD/Pods/AFNetworking/AFNetworking/AFHTTPSessionManager.h -------------------------------------------------------------------------------- /Pods/AFNetworking/AFNetworking/AFHTTPSessionManager.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fndppx/iOS11AppStoreTransition/HEAD/Pods/AFNetworking/AFNetworking/AFHTTPSessionManager.m -------------------------------------------------------------------------------- /Pods/AFNetworking/AFNetworking/AFNetworkReachabilityManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fndppx/iOS11AppStoreTransition/HEAD/Pods/AFNetworking/AFNetworking/AFNetworkReachabilityManager.h -------------------------------------------------------------------------------- /Pods/AFNetworking/AFNetworking/AFNetworkReachabilityManager.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fndppx/iOS11AppStoreTransition/HEAD/Pods/AFNetworking/AFNetworking/AFNetworkReachabilityManager.m -------------------------------------------------------------------------------- /Pods/AFNetworking/AFNetworking/AFNetworking.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fndppx/iOS11AppStoreTransition/HEAD/Pods/AFNetworking/AFNetworking/AFNetworking.h -------------------------------------------------------------------------------- /Pods/AFNetworking/AFNetworking/AFSecurityPolicy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fndppx/iOS11AppStoreTransition/HEAD/Pods/AFNetworking/AFNetworking/AFSecurityPolicy.h -------------------------------------------------------------------------------- /Pods/AFNetworking/AFNetworking/AFSecurityPolicy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fndppx/iOS11AppStoreTransition/HEAD/Pods/AFNetworking/AFNetworking/AFSecurityPolicy.m -------------------------------------------------------------------------------- /Pods/AFNetworking/AFNetworking/AFURLRequestSerialization.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fndppx/iOS11AppStoreTransition/HEAD/Pods/AFNetworking/AFNetworking/AFURLRequestSerialization.h -------------------------------------------------------------------------------- /Pods/AFNetworking/AFNetworking/AFURLRequestSerialization.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fndppx/iOS11AppStoreTransition/HEAD/Pods/AFNetworking/AFNetworking/AFURLRequestSerialization.m -------------------------------------------------------------------------------- /Pods/AFNetworking/AFNetworking/AFURLResponseSerialization.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fndppx/iOS11AppStoreTransition/HEAD/Pods/AFNetworking/AFNetworking/AFURLResponseSerialization.h -------------------------------------------------------------------------------- /Pods/AFNetworking/AFNetworking/AFURLResponseSerialization.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fndppx/iOS11AppStoreTransition/HEAD/Pods/AFNetworking/AFNetworking/AFURLResponseSerialization.m -------------------------------------------------------------------------------- /Pods/AFNetworking/AFNetworking/AFURLSessionManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fndppx/iOS11AppStoreTransition/HEAD/Pods/AFNetworking/AFNetworking/AFURLSessionManager.h -------------------------------------------------------------------------------- /Pods/AFNetworking/AFNetworking/AFURLSessionManager.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fndppx/iOS11AppStoreTransition/HEAD/Pods/AFNetworking/AFNetworking/AFURLSessionManager.m -------------------------------------------------------------------------------- /Pods/AFNetworking/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fndppx/iOS11AppStoreTransition/HEAD/Pods/AFNetworking/LICENSE -------------------------------------------------------------------------------- /Pods/AFNetworking/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fndppx/iOS11AppStoreTransition/HEAD/Pods/AFNetworking/README.md -------------------------------------------------------------------------------- /Pods/AFNetworking/UIKit+AFNetworking/AFAutoPurgingImageCache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fndppx/iOS11AppStoreTransition/HEAD/Pods/AFNetworking/UIKit+AFNetworking/AFAutoPurgingImageCache.h -------------------------------------------------------------------------------- /Pods/AFNetworking/UIKit+AFNetworking/AFAutoPurgingImageCache.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fndppx/iOS11AppStoreTransition/HEAD/Pods/AFNetworking/UIKit+AFNetworking/AFAutoPurgingImageCache.m -------------------------------------------------------------------------------- /Pods/AFNetworking/UIKit+AFNetworking/AFImageDownloader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fndppx/iOS11AppStoreTransition/HEAD/Pods/AFNetworking/UIKit+AFNetworking/AFImageDownloader.h -------------------------------------------------------------------------------- /Pods/AFNetworking/UIKit+AFNetworking/AFImageDownloader.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fndppx/iOS11AppStoreTransition/HEAD/Pods/AFNetworking/UIKit+AFNetworking/AFImageDownloader.m -------------------------------------------------------------------------------- /Pods/AFNetworking/UIKit+AFNetworking/AFNetworkActivityIndicatorManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fndppx/iOS11AppStoreTransition/HEAD/Pods/AFNetworking/UIKit+AFNetworking/AFNetworkActivityIndicatorManager.h -------------------------------------------------------------------------------- /Pods/AFNetworking/UIKit+AFNetworking/AFNetworkActivityIndicatorManager.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fndppx/iOS11AppStoreTransition/HEAD/Pods/AFNetworking/UIKit+AFNetworking/AFNetworkActivityIndicatorManager.m -------------------------------------------------------------------------------- /Pods/AFNetworking/UIKit+AFNetworking/UIActivityIndicatorView+AFNetworking.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fndppx/iOS11AppStoreTransition/HEAD/Pods/AFNetworking/UIKit+AFNetworking/UIActivityIndicatorView+AFNetworking.h -------------------------------------------------------------------------------- /Pods/AFNetworking/UIKit+AFNetworking/UIActivityIndicatorView+AFNetworking.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fndppx/iOS11AppStoreTransition/HEAD/Pods/AFNetworking/UIKit+AFNetworking/UIActivityIndicatorView+AFNetworking.m -------------------------------------------------------------------------------- /Pods/AFNetworking/UIKit+AFNetworking/UIButton+AFNetworking.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fndppx/iOS11AppStoreTransition/HEAD/Pods/AFNetworking/UIKit+AFNetworking/UIButton+AFNetworking.h -------------------------------------------------------------------------------- /Pods/AFNetworking/UIKit+AFNetworking/UIButton+AFNetworking.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fndppx/iOS11AppStoreTransition/HEAD/Pods/AFNetworking/UIKit+AFNetworking/UIButton+AFNetworking.m -------------------------------------------------------------------------------- /Pods/AFNetworking/UIKit+AFNetworking/UIImage+AFNetworking.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fndppx/iOS11AppStoreTransition/HEAD/Pods/AFNetworking/UIKit+AFNetworking/UIImage+AFNetworking.h -------------------------------------------------------------------------------- /Pods/AFNetworking/UIKit+AFNetworking/UIImageView+AFNetworking.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fndppx/iOS11AppStoreTransition/HEAD/Pods/AFNetworking/UIKit+AFNetworking/UIImageView+AFNetworking.h -------------------------------------------------------------------------------- /Pods/AFNetworking/UIKit+AFNetworking/UIImageView+AFNetworking.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fndppx/iOS11AppStoreTransition/HEAD/Pods/AFNetworking/UIKit+AFNetworking/UIImageView+AFNetworking.m -------------------------------------------------------------------------------- /Pods/AFNetworking/UIKit+AFNetworking/UIKit+AFNetworking.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fndppx/iOS11AppStoreTransition/HEAD/Pods/AFNetworking/UIKit+AFNetworking/UIKit+AFNetworking.h -------------------------------------------------------------------------------- /Pods/AFNetworking/UIKit+AFNetworking/UIProgressView+AFNetworking.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fndppx/iOS11AppStoreTransition/HEAD/Pods/AFNetworking/UIKit+AFNetworking/UIProgressView+AFNetworking.h -------------------------------------------------------------------------------- /Pods/AFNetworking/UIKit+AFNetworking/UIProgressView+AFNetworking.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fndppx/iOS11AppStoreTransition/HEAD/Pods/AFNetworking/UIKit+AFNetworking/UIProgressView+AFNetworking.m -------------------------------------------------------------------------------- /Pods/AFNetworking/UIKit+AFNetworking/UIRefreshControl+AFNetworking.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fndppx/iOS11AppStoreTransition/HEAD/Pods/AFNetworking/UIKit+AFNetworking/UIRefreshControl+AFNetworking.h -------------------------------------------------------------------------------- /Pods/AFNetworking/UIKit+AFNetworking/UIRefreshControl+AFNetworking.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fndppx/iOS11AppStoreTransition/HEAD/Pods/AFNetworking/UIKit+AFNetworking/UIRefreshControl+AFNetworking.m -------------------------------------------------------------------------------- /Pods/AFNetworking/UIKit+AFNetworking/UIWebView+AFNetworking.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fndppx/iOS11AppStoreTransition/HEAD/Pods/AFNetworking/UIKit+AFNetworking/UIWebView+AFNetworking.h -------------------------------------------------------------------------------- /Pods/AFNetworking/UIKit+AFNetworking/UIWebView+AFNetworking.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fndppx/iOS11AppStoreTransition/HEAD/Pods/AFNetworking/UIKit+AFNetworking/UIWebView+AFNetworking.m -------------------------------------------------------------------------------- /Pods/Headers/Private/AFNetworkActivityLogger/AFNetworkActivityConsoleLogger.h: -------------------------------------------------------------------------------- 1 | ../../../AFNetworkActivityLogger/AFNetworkActivityLogger/AFNetworkActivityConsoleLogger.h -------------------------------------------------------------------------------- /Pods/Headers/Private/AFNetworkActivityLogger/AFNetworkActivityLogger.h: -------------------------------------------------------------------------------- 1 | ../../../AFNetworkActivityLogger/AFNetworkActivityLogger/AFNetworkActivityLogger.h -------------------------------------------------------------------------------- /Pods/Headers/Private/AFNetworkActivityLogger/AFNetworkActivityLoggerProtocol.h: -------------------------------------------------------------------------------- 1 | ../../../AFNetworkActivityLogger/AFNetworkActivityLogger/AFNetworkActivityLoggerProtocol.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/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/ReactiveObjC/MKAnnotationView+RACSignalSupport.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveObjC/ReactiveObjC/MKAnnotationView+RACSignalSupport.h -------------------------------------------------------------------------------- /Pods/Headers/Private/ReactiveObjC/NSArray+RACSequenceAdditions.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveObjC/ReactiveObjC/NSArray+RACSequenceAdditions.h -------------------------------------------------------------------------------- /Pods/Headers/Private/ReactiveObjC/NSData+RACSupport.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveObjC/ReactiveObjC/NSData+RACSupport.h -------------------------------------------------------------------------------- /Pods/Headers/Private/ReactiveObjC/NSDictionary+RACSequenceAdditions.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveObjC/ReactiveObjC/NSDictionary+RACSequenceAdditions.h -------------------------------------------------------------------------------- /Pods/Headers/Private/ReactiveObjC/NSEnumerator+RACSequenceAdditions.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveObjC/ReactiveObjC/NSEnumerator+RACSequenceAdditions.h -------------------------------------------------------------------------------- /Pods/Headers/Private/ReactiveObjC/NSFileHandle+RACSupport.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveObjC/ReactiveObjC/NSFileHandle+RACSupport.h -------------------------------------------------------------------------------- /Pods/Headers/Private/ReactiveObjC/NSIndexSet+RACSequenceAdditions.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveObjC/ReactiveObjC/NSIndexSet+RACSequenceAdditions.h -------------------------------------------------------------------------------- /Pods/Headers/Private/ReactiveObjC/NSInvocation+RACTypeParsing.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveObjC/ReactiveObjC/NSInvocation+RACTypeParsing.h -------------------------------------------------------------------------------- /Pods/Headers/Private/ReactiveObjC/NSNotificationCenter+RACSupport.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveObjC/ReactiveObjC/NSNotificationCenter+RACSupport.h -------------------------------------------------------------------------------- /Pods/Headers/Private/ReactiveObjC/NSObject+RACDeallocating.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveObjC/ReactiveObjC/NSObject+RACDeallocating.h -------------------------------------------------------------------------------- /Pods/Headers/Private/ReactiveObjC/NSObject+RACDescription.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveObjC/ReactiveObjC/NSObject+RACDescription.h -------------------------------------------------------------------------------- /Pods/Headers/Private/ReactiveObjC/NSObject+RACKVOWrapper.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveObjC/ReactiveObjC/NSObject+RACKVOWrapper.h -------------------------------------------------------------------------------- /Pods/Headers/Private/ReactiveObjC/NSObject+RACLifting.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveObjC/ReactiveObjC/NSObject+RACLifting.h -------------------------------------------------------------------------------- /Pods/Headers/Private/ReactiveObjC/NSObject+RACPropertySubscribing.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveObjC/ReactiveObjC/NSObject+RACPropertySubscribing.h -------------------------------------------------------------------------------- /Pods/Headers/Private/ReactiveObjC/NSObject+RACSelectorSignal.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveObjC/ReactiveObjC/NSObject+RACSelectorSignal.h -------------------------------------------------------------------------------- /Pods/Headers/Private/ReactiveObjC/NSOrderedSet+RACSequenceAdditions.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveObjC/ReactiveObjC/NSOrderedSet+RACSequenceAdditions.h -------------------------------------------------------------------------------- /Pods/Headers/Private/ReactiveObjC/NSSet+RACSequenceAdditions.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveObjC/ReactiveObjC/NSSet+RACSequenceAdditions.h -------------------------------------------------------------------------------- /Pods/Headers/Private/ReactiveObjC/NSString+RACKeyPathUtilities.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveObjC/ReactiveObjC/NSString+RACKeyPathUtilities.h -------------------------------------------------------------------------------- /Pods/Headers/Private/ReactiveObjC/NSString+RACSequenceAdditions.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveObjC/ReactiveObjC/NSString+RACSequenceAdditions.h -------------------------------------------------------------------------------- /Pods/Headers/Private/ReactiveObjC/NSString+RACSupport.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveObjC/ReactiveObjC/NSString+RACSupport.h -------------------------------------------------------------------------------- /Pods/Headers/Private/ReactiveObjC/NSURLConnection+RACSupport.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveObjC/ReactiveObjC/NSURLConnection+RACSupport.h -------------------------------------------------------------------------------- /Pods/Headers/Private/ReactiveObjC/NSUserDefaults+RACSupport.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveObjC/ReactiveObjC/NSUserDefaults+RACSupport.h -------------------------------------------------------------------------------- /Pods/Headers/Private/ReactiveObjC/RACAnnotations.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveObjC/ReactiveObjC/RACAnnotations.h -------------------------------------------------------------------------------- /Pods/Headers/Private/ReactiveObjC/RACArraySequence.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveObjC/ReactiveObjC/RACArraySequence.h -------------------------------------------------------------------------------- /Pods/Headers/Private/ReactiveObjC/RACBehaviorSubject.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveObjC/ReactiveObjC/RACBehaviorSubject.h -------------------------------------------------------------------------------- /Pods/Headers/Private/ReactiveObjC/RACBlockTrampoline.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveObjC/ReactiveObjC/RACBlockTrampoline.h -------------------------------------------------------------------------------- /Pods/Headers/Private/ReactiveObjC/RACChannel.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveObjC/ReactiveObjC/RACChannel.h -------------------------------------------------------------------------------- /Pods/Headers/Private/ReactiveObjC/RACCommand.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveObjC/ReactiveObjC/RACCommand.h -------------------------------------------------------------------------------- /Pods/Headers/Private/ReactiveObjC/RACCompoundDisposable.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveObjC/ReactiveObjC/RACCompoundDisposable.h -------------------------------------------------------------------------------- /Pods/Headers/Private/ReactiveObjC/RACDelegateProxy.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveObjC/ReactiveObjC/RACDelegateProxy.h -------------------------------------------------------------------------------- /Pods/Headers/Private/ReactiveObjC/RACDisposable.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveObjC/ReactiveObjC/RACDisposable.h -------------------------------------------------------------------------------- /Pods/Headers/Private/ReactiveObjC/RACDynamicSequence.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveObjC/ReactiveObjC/RACDynamicSequence.h -------------------------------------------------------------------------------- /Pods/Headers/Private/ReactiveObjC/RACDynamicSignal.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveObjC/ReactiveObjC/RACDynamicSignal.h -------------------------------------------------------------------------------- /Pods/Headers/Private/ReactiveObjC/RACEXTKeyPathCoding.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveObjC/ReactiveObjC/extobjc/RACEXTKeyPathCoding.h -------------------------------------------------------------------------------- /Pods/Headers/Private/ReactiveObjC/RACEXTRuntimeExtensions.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveObjC/ReactiveObjC/extobjc/RACEXTRuntimeExtensions.h -------------------------------------------------------------------------------- /Pods/Headers/Private/ReactiveObjC/RACEXTScope.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveObjC/ReactiveObjC/extobjc/RACEXTScope.h -------------------------------------------------------------------------------- /Pods/Headers/Private/ReactiveObjC/RACEagerSequence.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveObjC/ReactiveObjC/RACEagerSequence.h -------------------------------------------------------------------------------- /Pods/Headers/Private/ReactiveObjC/RACEmptySequence.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveObjC/ReactiveObjC/RACEmptySequence.h -------------------------------------------------------------------------------- /Pods/Headers/Private/ReactiveObjC/RACEmptySignal.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveObjC/ReactiveObjC/RACEmptySignal.h -------------------------------------------------------------------------------- /Pods/Headers/Private/ReactiveObjC/RACErrorSignal.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveObjC/ReactiveObjC/RACErrorSignal.h -------------------------------------------------------------------------------- /Pods/Headers/Private/ReactiveObjC/RACEvent.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveObjC/ReactiveObjC/RACEvent.h -------------------------------------------------------------------------------- /Pods/Headers/Private/ReactiveObjC/RACGroupedSignal.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveObjC/ReactiveObjC/RACGroupedSignal.h -------------------------------------------------------------------------------- /Pods/Headers/Private/ReactiveObjC/RACImmediateScheduler.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveObjC/ReactiveObjC/RACImmediateScheduler.h -------------------------------------------------------------------------------- /Pods/Headers/Private/ReactiveObjC/RACIndexSetSequence.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveObjC/ReactiveObjC/RACIndexSetSequence.h -------------------------------------------------------------------------------- /Pods/Headers/Private/ReactiveObjC/RACKVOChannel.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveObjC/ReactiveObjC/RACKVOChannel.h -------------------------------------------------------------------------------- /Pods/Headers/Private/ReactiveObjC/RACKVOProxy.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveObjC/ReactiveObjC/RACKVOProxy.h -------------------------------------------------------------------------------- /Pods/Headers/Private/ReactiveObjC/RACKVOTrampoline.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveObjC/ReactiveObjC/RACKVOTrampoline.h -------------------------------------------------------------------------------- /Pods/Headers/Private/ReactiveObjC/RACMulticastConnection+Private.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveObjC/ReactiveObjC/RACMulticastConnection+Private.h -------------------------------------------------------------------------------- /Pods/Headers/Private/ReactiveObjC/RACMulticastConnection.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveObjC/ReactiveObjC/RACMulticastConnection.h -------------------------------------------------------------------------------- /Pods/Headers/Private/ReactiveObjC/RACPassthroughSubscriber.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveObjC/ReactiveObjC/RACPassthroughSubscriber.h -------------------------------------------------------------------------------- /Pods/Headers/Private/ReactiveObjC/RACQueueScheduler+Subclass.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveObjC/ReactiveObjC/RACQueueScheduler+Subclass.h -------------------------------------------------------------------------------- /Pods/Headers/Private/ReactiveObjC/RACQueueScheduler.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveObjC/ReactiveObjC/RACQueueScheduler.h -------------------------------------------------------------------------------- /Pods/Headers/Private/ReactiveObjC/RACReplaySubject.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveObjC/ReactiveObjC/RACReplaySubject.h -------------------------------------------------------------------------------- /Pods/Headers/Private/ReactiveObjC/RACReturnSignal.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveObjC/ReactiveObjC/RACReturnSignal.h -------------------------------------------------------------------------------- /Pods/Headers/Private/ReactiveObjC/RACScheduler+Private.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveObjC/ReactiveObjC/RACScheduler+Private.h -------------------------------------------------------------------------------- /Pods/Headers/Private/ReactiveObjC/RACScheduler+Subclass.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveObjC/ReactiveObjC/RACScheduler+Subclass.h -------------------------------------------------------------------------------- /Pods/Headers/Private/ReactiveObjC/RACScheduler.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveObjC/ReactiveObjC/RACScheduler.h -------------------------------------------------------------------------------- /Pods/Headers/Private/ReactiveObjC/RACScopedDisposable.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveObjC/ReactiveObjC/RACScopedDisposable.h -------------------------------------------------------------------------------- /Pods/Headers/Private/ReactiveObjC/RACSequence.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveObjC/ReactiveObjC/RACSequence.h -------------------------------------------------------------------------------- /Pods/Headers/Private/ReactiveObjC/RACSerialDisposable.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveObjC/ReactiveObjC/RACSerialDisposable.h -------------------------------------------------------------------------------- /Pods/Headers/Private/ReactiveObjC/RACSignal+Operations.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveObjC/ReactiveObjC/RACSignal+Operations.h -------------------------------------------------------------------------------- /Pods/Headers/Private/ReactiveObjC/RACSignal.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveObjC/ReactiveObjC/RACSignal.h -------------------------------------------------------------------------------- /Pods/Headers/Private/ReactiveObjC/RACSignalSequence.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveObjC/ReactiveObjC/RACSignalSequence.h -------------------------------------------------------------------------------- /Pods/Headers/Private/ReactiveObjC/RACStream+Private.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveObjC/ReactiveObjC/RACStream+Private.h -------------------------------------------------------------------------------- /Pods/Headers/Private/ReactiveObjC/RACStream.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveObjC/ReactiveObjC/RACStream.h -------------------------------------------------------------------------------- /Pods/Headers/Private/ReactiveObjC/RACStringSequence.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveObjC/ReactiveObjC/RACStringSequence.h -------------------------------------------------------------------------------- /Pods/Headers/Private/ReactiveObjC/RACSubject.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveObjC/ReactiveObjC/RACSubject.h -------------------------------------------------------------------------------- /Pods/Headers/Private/ReactiveObjC/RACSubscriber+Private.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveObjC/ReactiveObjC/RACSubscriber+Private.h -------------------------------------------------------------------------------- /Pods/Headers/Private/ReactiveObjC/RACSubscriber.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveObjC/ReactiveObjC/RACSubscriber.h -------------------------------------------------------------------------------- /Pods/Headers/Private/ReactiveObjC/RACSubscriptingAssignmentTrampoline.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveObjC/ReactiveObjC/RACSubscriptingAssignmentTrampoline.h -------------------------------------------------------------------------------- /Pods/Headers/Private/ReactiveObjC/RACSubscriptionScheduler.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveObjC/ReactiveObjC/RACSubscriptionScheduler.h -------------------------------------------------------------------------------- /Pods/Headers/Private/ReactiveObjC/RACTargetQueueScheduler.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveObjC/ReactiveObjC/RACTargetQueueScheduler.h -------------------------------------------------------------------------------- /Pods/Headers/Private/ReactiveObjC/RACTestScheduler.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveObjC/ReactiveObjC/RACTestScheduler.h -------------------------------------------------------------------------------- /Pods/Headers/Private/ReactiveObjC/RACTuple.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveObjC/ReactiveObjC/RACTuple.h -------------------------------------------------------------------------------- /Pods/Headers/Private/ReactiveObjC/RACTupleSequence.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveObjC/ReactiveObjC/RACTupleSequence.h -------------------------------------------------------------------------------- /Pods/Headers/Private/ReactiveObjC/RACUnarySequence.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveObjC/ReactiveObjC/RACUnarySequence.h -------------------------------------------------------------------------------- /Pods/Headers/Private/ReactiveObjC/RACUnit.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveObjC/ReactiveObjC/RACUnit.h -------------------------------------------------------------------------------- /Pods/Headers/Private/ReactiveObjC/RACValueTransformer.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveObjC/ReactiveObjC/RACValueTransformer.h -------------------------------------------------------------------------------- /Pods/Headers/Private/ReactiveObjC/RACmetamacros.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveObjC/ReactiveObjC/extobjc/RACmetamacros.h -------------------------------------------------------------------------------- /Pods/Headers/Private/ReactiveObjC/ReactiveObjC.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveObjC/ReactiveObjC/ReactiveObjC.h -------------------------------------------------------------------------------- /Pods/Headers/Private/ReactiveObjC/UIActionSheet+RACSignalSupport.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveObjC/ReactiveObjC/UIActionSheet+RACSignalSupport.h -------------------------------------------------------------------------------- /Pods/Headers/Private/ReactiveObjC/UIAlertView+RACSignalSupport.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveObjC/ReactiveObjC/UIAlertView+RACSignalSupport.h -------------------------------------------------------------------------------- /Pods/Headers/Private/ReactiveObjC/UIBarButtonItem+RACCommandSupport.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveObjC/ReactiveObjC/UIBarButtonItem+RACCommandSupport.h -------------------------------------------------------------------------------- /Pods/Headers/Private/ReactiveObjC/UIButton+RACCommandSupport.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveObjC/ReactiveObjC/UIButton+RACCommandSupport.h -------------------------------------------------------------------------------- /Pods/Headers/Private/ReactiveObjC/UICollectionReusableView+RACSignalSupport.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveObjC/ReactiveObjC/UICollectionReusableView+RACSignalSupport.h -------------------------------------------------------------------------------- /Pods/Headers/Private/ReactiveObjC/UIControl+RACSignalSupport.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveObjC/ReactiveObjC/UIControl+RACSignalSupport.h -------------------------------------------------------------------------------- /Pods/Headers/Private/ReactiveObjC/UIControl+RACSignalSupportPrivate.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveObjC/ReactiveObjC/UIControl+RACSignalSupportPrivate.h -------------------------------------------------------------------------------- /Pods/Headers/Private/ReactiveObjC/UIDatePicker+RACSignalSupport.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveObjC/ReactiveObjC/UIDatePicker+RACSignalSupport.h -------------------------------------------------------------------------------- /Pods/Headers/Private/ReactiveObjC/UIGestureRecognizer+RACSignalSupport.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveObjC/ReactiveObjC/UIGestureRecognizer+RACSignalSupport.h -------------------------------------------------------------------------------- /Pods/Headers/Private/ReactiveObjC/UIImagePickerController+RACSignalSupport.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveObjC/ReactiveObjC/UIImagePickerController+RACSignalSupport.h -------------------------------------------------------------------------------- /Pods/Headers/Private/ReactiveObjC/UIRefreshControl+RACCommandSupport.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveObjC/ReactiveObjC/UIRefreshControl+RACCommandSupport.h -------------------------------------------------------------------------------- /Pods/Headers/Private/ReactiveObjC/UISegmentedControl+RACSignalSupport.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveObjC/ReactiveObjC/UISegmentedControl+RACSignalSupport.h -------------------------------------------------------------------------------- /Pods/Headers/Private/ReactiveObjC/UISlider+RACSignalSupport.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveObjC/ReactiveObjC/UISlider+RACSignalSupport.h -------------------------------------------------------------------------------- /Pods/Headers/Private/ReactiveObjC/UIStepper+RACSignalSupport.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveObjC/ReactiveObjC/UIStepper+RACSignalSupport.h -------------------------------------------------------------------------------- /Pods/Headers/Private/ReactiveObjC/UISwitch+RACSignalSupport.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveObjC/ReactiveObjC/UISwitch+RACSignalSupport.h -------------------------------------------------------------------------------- /Pods/Headers/Private/ReactiveObjC/UITableViewCell+RACSignalSupport.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveObjC/ReactiveObjC/UITableViewCell+RACSignalSupport.h -------------------------------------------------------------------------------- /Pods/Headers/Private/ReactiveObjC/UITableViewHeaderFooterView+RACSignalSupport.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveObjC/ReactiveObjC/UITableViewHeaderFooterView+RACSignalSupport.h -------------------------------------------------------------------------------- /Pods/Headers/Private/ReactiveObjC/UITextField+RACSignalSupport.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveObjC/ReactiveObjC/UITextField+RACSignalSupport.h -------------------------------------------------------------------------------- /Pods/Headers/Private/ReactiveObjC/UITextView+RACSignalSupport.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveObjC/ReactiveObjC/UITextView+RACSignalSupport.h -------------------------------------------------------------------------------- /Pods/Headers/Private/SDWebImage/NSData+ImageContentType.h: -------------------------------------------------------------------------------- 1 | ../../../SDWebImage/SDWebImage/NSData+ImageContentType.h -------------------------------------------------------------------------------- /Pods/Headers/Private/SDWebImage/NSImage+WebCache.h: -------------------------------------------------------------------------------- 1 | ../../../SDWebImage/SDWebImage/NSImage+WebCache.h -------------------------------------------------------------------------------- /Pods/Headers/Private/SDWebImage/SDImageCache.h: -------------------------------------------------------------------------------- 1 | ../../../SDWebImage/SDWebImage/SDImageCache.h -------------------------------------------------------------------------------- /Pods/Headers/Private/SDWebImage/SDImageCacheConfig.h: -------------------------------------------------------------------------------- 1 | ../../../SDWebImage/SDWebImage/SDImageCacheConfig.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+WebCache.h: -------------------------------------------------------------------------------- 1 | ../../../SDWebImage/SDWebImage/UIView+WebCache.h -------------------------------------------------------------------------------- /Pods/Headers/Private/SDWebImage/UIView+WebCacheOperation.h: -------------------------------------------------------------------------------- 1 | ../../../SDWebImage/SDWebImage/UIView+WebCacheOperation.h -------------------------------------------------------------------------------- /Pods/Headers/Public/AFNetworkActivityLogger/AFNetworkActivityConsoleLogger.h: -------------------------------------------------------------------------------- 1 | ../../../AFNetworkActivityLogger/AFNetworkActivityLogger/AFNetworkActivityConsoleLogger.h -------------------------------------------------------------------------------- /Pods/Headers/Public/AFNetworkActivityLogger/AFNetworkActivityLogger.h: -------------------------------------------------------------------------------- 1 | ../../../AFNetworkActivityLogger/AFNetworkActivityLogger/AFNetworkActivityLogger.h -------------------------------------------------------------------------------- /Pods/Headers/Public/AFNetworkActivityLogger/AFNetworkActivityLoggerProtocol.h: -------------------------------------------------------------------------------- 1 | ../../../AFNetworkActivityLogger/AFNetworkActivityLogger/AFNetworkActivityLoggerProtocol.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/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/ReactiveObjC/MKAnnotationView+RACSignalSupport.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveObjC/ReactiveObjC/MKAnnotationView+RACSignalSupport.h -------------------------------------------------------------------------------- /Pods/Headers/Public/ReactiveObjC/NSArray+RACSequenceAdditions.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveObjC/ReactiveObjC/NSArray+RACSequenceAdditions.h -------------------------------------------------------------------------------- /Pods/Headers/Public/ReactiveObjC/NSData+RACSupport.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveObjC/ReactiveObjC/NSData+RACSupport.h -------------------------------------------------------------------------------- /Pods/Headers/Public/ReactiveObjC/NSDictionary+RACSequenceAdditions.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveObjC/ReactiveObjC/NSDictionary+RACSequenceAdditions.h -------------------------------------------------------------------------------- /Pods/Headers/Public/ReactiveObjC/NSEnumerator+RACSequenceAdditions.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveObjC/ReactiveObjC/NSEnumerator+RACSequenceAdditions.h -------------------------------------------------------------------------------- /Pods/Headers/Public/ReactiveObjC/NSFileHandle+RACSupport.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveObjC/ReactiveObjC/NSFileHandle+RACSupport.h -------------------------------------------------------------------------------- /Pods/Headers/Public/ReactiveObjC/NSIndexSet+RACSequenceAdditions.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveObjC/ReactiveObjC/NSIndexSet+RACSequenceAdditions.h -------------------------------------------------------------------------------- /Pods/Headers/Public/ReactiveObjC/NSInvocation+RACTypeParsing.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveObjC/ReactiveObjC/NSInvocation+RACTypeParsing.h -------------------------------------------------------------------------------- /Pods/Headers/Public/ReactiveObjC/NSNotificationCenter+RACSupport.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveObjC/ReactiveObjC/NSNotificationCenter+RACSupport.h -------------------------------------------------------------------------------- /Pods/Headers/Public/ReactiveObjC/NSObject+RACDeallocating.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveObjC/ReactiveObjC/NSObject+RACDeallocating.h -------------------------------------------------------------------------------- /Pods/Headers/Public/ReactiveObjC/NSObject+RACDescription.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveObjC/ReactiveObjC/NSObject+RACDescription.h -------------------------------------------------------------------------------- /Pods/Headers/Public/ReactiveObjC/NSObject+RACKVOWrapper.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveObjC/ReactiveObjC/NSObject+RACKVOWrapper.h -------------------------------------------------------------------------------- /Pods/Headers/Public/ReactiveObjC/NSObject+RACLifting.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveObjC/ReactiveObjC/NSObject+RACLifting.h -------------------------------------------------------------------------------- /Pods/Headers/Public/ReactiveObjC/NSObject+RACPropertySubscribing.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveObjC/ReactiveObjC/NSObject+RACPropertySubscribing.h -------------------------------------------------------------------------------- /Pods/Headers/Public/ReactiveObjC/NSObject+RACSelectorSignal.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveObjC/ReactiveObjC/NSObject+RACSelectorSignal.h -------------------------------------------------------------------------------- /Pods/Headers/Public/ReactiveObjC/NSOrderedSet+RACSequenceAdditions.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveObjC/ReactiveObjC/NSOrderedSet+RACSequenceAdditions.h -------------------------------------------------------------------------------- /Pods/Headers/Public/ReactiveObjC/NSSet+RACSequenceAdditions.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveObjC/ReactiveObjC/NSSet+RACSequenceAdditions.h -------------------------------------------------------------------------------- /Pods/Headers/Public/ReactiveObjC/NSString+RACKeyPathUtilities.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveObjC/ReactiveObjC/NSString+RACKeyPathUtilities.h -------------------------------------------------------------------------------- /Pods/Headers/Public/ReactiveObjC/NSString+RACSequenceAdditions.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveObjC/ReactiveObjC/NSString+RACSequenceAdditions.h -------------------------------------------------------------------------------- /Pods/Headers/Public/ReactiveObjC/NSString+RACSupport.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveObjC/ReactiveObjC/NSString+RACSupport.h -------------------------------------------------------------------------------- /Pods/Headers/Public/ReactiveObjC/NSURLConnection+RACSupport.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveObjC/ReactiveObjC/NSURLConnection+RACSupport.h -------------------------------------------------------------------------------- /Pods/Headers/Public/ReactiveObjC/NSUserDefaults+RACSupport.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveObjC/ReactiveObjC/NSUserDefaults+RACSupport.h -------------------------------------------------------------------------------- /Pods/Headers/Public/ReactiveObjC/RACAnnotations.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveObjC/ReactiveObjC/RACAnnotations.h -------------------------------------------------------------------------------- /Pods/Headers/Public/ReactiveObjC/RACArraySequence.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveObjC/ReactiveObjC/RACArraySequence.h -------------------------------------------------------------------------------- /Pods/Headers/Public/ReactiveObjC/RACBehaviorSubject.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveObjC/ReactiveObjC/RACBehaviorSubject.h -------------------------------------------------------------------------------- /Pods/Headers/Public/ReactiveObjC/RACBlockTrampoline.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveObjC/ReactiveObjC/RACBlockTrampoline.h -------------------------------------------------------------------------------- /Pods/Headers/Public/ReactiveObjC/RACChannel.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveObjC/ReactiveObjC/RACChannel.h -------------------------------------------------------------------------------- /Pods/Headers/Public/ReactiveObjC/RACCommand.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveObjC/ReactiveObjC/RACCommand.h -------------------------------------------------------------------------------- /Pods/Headers/Public/ReactiveObjC/RACCompoundDisposable.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveObjC/ReactiveObjC/RACCompoundDisposable.h -------------------------------------------------------------------------------- /Pods/Headers/Public/ReactiveObjC/RACDelegateProxy.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveObjC/ReactiveObjC/RACDelegateProxy.h -------------------------------------------------------------------------------- /Pods/Headers/Public/ReactiveObjC/RACDisposable.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveObjC/ReactiveObjC/RACDisposable.h -------------------------------------------------------------------------------- /Pods/Headers/Public/ReactiveObjC/RACDynamicSequence.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveObjC/ReactiveObjC/RACDynamicSequence.h -------------------------------------------------------------------------------- /Pods/Headers/Public/ReactiveObjC/RACDynamicSignal.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveObjC/ReactiveObjC/RACDynamicSignal.h -------------------------------------------------------------------------------- /Pods/Headers/Public/ReactiveObjC/RACEXTKeyPathCoding.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveObjC/ReactiveObjC/extobjc/RACEXTKeyPathCoding.h -------------------------------------------------------------------------------- /Pods/Headers/Public/ReactiveObjC/RACEXTScope.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveObjC/ReactiveObjC/extobjc/RACEXTScope.h -------------------------------------------------------------------------------- /Pods/Headers/Public/ReactiveObjC/RACEagerSequence.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveObjC/ReactiveObjC/RACEagerSequence.h -------------------------------------------------------------------------------- /Pods/Headers/Public/ReactiveObjC/RACErrorSignal.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveObjC/ReactiveObjC/RACErrorSignal.h -------------------------------------------------------------------------------- /Pods/Headers/Public/ReactiveObjC/RACEvent.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveObjC/ReactiveObjC/RACEvent.h -------------------------------------------------------------------------------- /Pods/Headers/Public/ReactiveObjC/RACGroupedSignal.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveObjC/ReactiveObjC/RACGroupedSignal.h -------------------------------------------------------------------------------- /Pods/Headers/Public/ReactiveObjC/RACImmediateScheduler.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveObjC/ReactiveObjC/RACImmediateScheduler.h -------------------------------------------------------------------------------- /Pods/Headers/Public/ReactiveObjC/RACIndexSetSequence.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveObjC/ReactiveObjC/RACIndexSetSequence.h -------------------------------------------------------------------------------- /Pods/Headers/Public/ReactiveObjC/RACKVOChannel.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveObjC/ReactiveObjC/RACKVOChannel.h -------------------------------------------------------------------------------- /Pods/Headers/Public/ReactiveObjC/RACKVOProxy.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveObjC/ReactiveObjC/RACKVOProxy.h -------------------------------------------------------------------------------- /Pods/Headers/Public/ReactiveObjC/RACKVOTrampoline.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveObjC/ReactiveObjC/RACKVOTrampoline.h -------------------------------------------------------------------------------- /Pods/Headers/Public/ReactiveObjC/RACMulticastConnection.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveObjC/ReactiveObjC/RACMulticastConnection.h -------------------------------------------------------------------------------- /Pods/Headers/Public/ReactiveObjC/RACPassthroughSubscriber.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveObjC/ReactiveObjC/RACPassthroughSubscriber.h -------------------------------------------------------------------------------- /Pods/Headers/Public/ReactiveObjC/RACQueueScheduler+Subclass.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveObjC/ReactiveObjC/RACQueueScheduler+Subclass.h -------------------------------------------------------------------------------- /Pods/Headers/Public/ReactiveObjC/RACQueueScheduler.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveObjC/ReactiveObjC/RACQueueScheduler.h -------------------------------------------------------------------------------- /Pods/Headers/Public/ReactiveObjC/RACReplaySubject.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveObjC/ReactiveObjC/RACReplaySubject.h -------------------------------------------------------------------------------- /Pods/Headers/Public/ReactiveObjC/RACReturnSignal.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveObjC/ReactiveObjC/RACReturnSignal.h -------------------------------------------------------------------------------- /Pods/Headers/Public/ReactiveObjC/RACScheduler+Subclass.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveObjC/ReactiveObjC/RACScheduler+Subclass.h -------------------------------------------------------------------------------- /Pods/Headers/Public/ReactiveObjC/RACScheduler.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveObjC/ReactiveObjC/RACScheduler.h -------------------------------------------------------------------------------- /Pods/Headers/Public/ReactiveObjC/RACScopedDisposable.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveObjC/ReactiveObjC/RACScopedDisposable.h -------------------------------------------------------------------------------- /Pods/Headers/Public/ReactiveObjC/RACSequence.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveObjC/ReactiveObjC/RACSequence.h -------------------------------------------------------------------------------- /Pods/Headers/Public/ReactiveObjC/RACSerialDisposable.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveObjC/ReactiveObjC/RACSerialDisposable.h -------------------------------------------------------------------------------- /Pods/Headers/Public/ReactiveObjC/RACSignal+Operations.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveObjC/ReactiveObjC/RACSignal+Operations.h -------------------------------------------------------------------------------- /Pods/Headers/Public/ReactiveObjC/RACSignal.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveObjC/ReactiveObjC/RACSignal.h -------------------------------------------------------------------------------- /Pods/Headers/Public/ReactiveObjC/RACSignalSequence.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveObjC/ReactiveObjC/RACSignalSequence.h -------------------------------------------------------------------------------- /Pods/Headers/Public/ReactiveObjC/RACStream.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveObjC/ReactiveObjC/RACStream.h -------------------------------------------------------------------------------- /Pods/Headers/Public/ReactiveObjC/RACStringSequence.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveObjC/ReactiveObjC/RACStringSequence.h -------------------------------------------------------------------------------- /Pods/Headers/Public/ReactiveObjC/RACSubject.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveObjC/ReactiveObjC/RACSubject.h -------------------------------------------------------------------------------- /Pods/Headers/Public/ReactiveObjC/RACSubscriber.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveObjC/ReactiveObjC/RACSubscriber.h -------------------------------------------------------------------------------- /Pods/Headers/Public/ReactiveObjC/RACSubscriptingAssignmentTrampoline.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveObjC/ReactiveObjC/RACSubscriptingAssignmentTrampoline.h -------------------------------------------------------------------------------- /Pods/Headers/Public/ReactiveObjC/RACSubscriptionScheduler.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveObjC/ReactiveObjC/RACSubscriptionScheduler.h -------------------------------------------------------------------------------- /Pods/Headers/Public/ReactiveObjC/RACTargetQueueScheduler.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveObjC/ReactiveObjC/RACTargetQueueScheduler.h -------------------------------------------------------------------------------- /Pods/Headers/Public/ReactiveObjC/RACTestScheduler.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveObjC/ReactiveObjC/RACTestScheduler.h -------------------------------------------------------------------------------- /Pods/Headers/Public/ReactiveObjC/RACTuple.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveObjC/ReactiveObjC/RACTuple.h -------------------------------------------------------------------------------- /Pods/Headers/Public/ReactiveObjC/RACTupleSequence.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveObjC/ReactiveObjC/RACTupleSequence.h -------------------------------------------------------------------------------- /Pods/Headers/Public/ReactiveObjC/RACUnarySequence.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveObjC/ReactiveObjC/RACUnarySequence.h -------------------------------------------------------------------------------- /Pods/Headers/Public/ReactiveObjC/RACUnit.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveObjC/ReactiveObjC/RACUnit.h -------------------------------------------------------------------------------- /Pods/Headers/Public/ReactiveObjC/RACValueTransformer.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveObjC/ReactiveObjC/RACValueTransformer.h -------------------------------------------------------------------------------- /Pods/Headers/Public/ReactiveObjC/RACmetamacros.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveObjC/ReactiveObjC/extobjc/RACmetamacros.h -------------------------------------------------------------------------------- /Pods/Headers/Public/ReactiveObjC/ReactiveObjC.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveObjC/ReactiveObjC/ReactiveObjC.h -------------------------------------------------------------------------------- /Pods/Headers/Public/ReactiveObjC/UIActionSheet+RACSignalSupport.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveObjC/ReactiveObjC/UIActionSheet+RACSignalSupport.h -------------------------------------------------------------------------------- /Pods/Headers/Public/ReactiveObjC/UIAlertView+RACSignalSupport.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveObjC/ReactiveObjC/UIAlertView+RACSignalSupport.h -------------------------------------------------------------------------------- /Pods/Headers/Public/ReactiveObjC/UIBarButtonItem+RACCommandSupport.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveObjC/ReactiveObjC/UIBarButtonItem+RACCommandSupport.h -------------------------------------------------------------------------------- /Pods/Headers/Public/ReactiveObjC/UIButton+RACCommandSupport.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveObjC/ReactiveObjC/UIButton+RACCommandSupport.h -------------------------------------------------------------------------------- /Pods/Headers/Public/ReactiveObjC/UICollectionReusableView+RACSignalSupport.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveObjC/ReactiveObjC/UICollectionReusableView+RACSignalSupport.h -------------------------------------------------------------------------------- /Pods/Headers/Public/ReactiveObjC/UIControl+RACSignalSupport.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveObjC/ReactiveObjC/UIControl+RACSignalSupport.h -------------------------------------------------------------------------------- /Pods/Headers/Public/ReactiveObjC/UIDatePicker+RACSignalSupport.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveObjC/ReactiveObjC/UIDatePicker+RACSignalSupport.h -------------------------------------------------------------------------------- /Pods/Headers/Public/ReactiveObjC/UIGestureRecognizer+RACSignalSupport.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveObjC/ReactiveObjC/UIGestureRecognizer+RACSignalSupport.h -------------------------------------------------------------------------------- /Pods/Headers/Public/ReactiveObjC/UIImagePickerController+RACSignalSupport.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveObjC/ReactiveObjC/UIImagePickerController+RACSignalSupport.h -------------------------------------------------------------------------------- /Pods/Headers/Public/ReactiveObjC/UIRefreshControl+RACCommandSupport.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveObjC/ReactiveObjC/UIRefreshControl+RACCommandSupport.h -------------------------------------------------------------------------------- /Pods/Headers/Public/ReactiveObjC/UISegmentedControl+RACSignalSupport.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveObjC/ReactiveObjC/UISegmentedControl+RACSignalSupport.h -------------------------------------------------------------------------------- /Pods/Headers/Public/ReactiveObjC/UISlider+RACSignalSupport.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveObjC/ReactiveObjC/UISlider+RACSignalSupport.h -------------------------------------------------------------------------------- /Pods/Headers/Public/ReactiveObjC/UIStepper+RACSignalSupport.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveObjC/ReactiveObjC/UIStepper+RACSignalSupport.h -------------------------------------------------------------------------------- /Pods/Headers/Public/ReactiveObjC/UISwitch+RACSignalSupport.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveObjC/ReactiveObjC/UISwitch+RACSignalSupport.h -------------------------------------------------------------------------------- /Pods/Headers/Public/ReactiveObjC/UITableViewCell+RACSignalSupport.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveObjC/ReactiveObjC/UITableViewCell+RACSignalSupport.h -------------------------------------------------------------------------------- /Pods/Headers/Public/ReactiveObjC/UITableViewHeaderFooterView+RACSignalSupport.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveObjC/ReactiveObjC/UITableViewHeaderFooterView+RACSignalSupport.h -------------------------------------------------------------------------------- /Pods/Headers/Public/ReactiveObjC/UITextField+RACSignalSupport.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveObjC/ReactiveObjC/UITextField+RACSignalSupport.h -------------------------------------------------------------------------------- /Pods/Headers/Public/ReactiveObjC/UITextView+RACSignalSupport.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveObjC/ReactiveObjC/UITextView+RACSignalSupport.h -------------------------------------------------------------------------------- /Pods/Headers/Public/SDWebImage/NSData+ImageContentType.h: -------------------------------------------------------------------------------- 1 | ../../../SDWebImage/SDWebImage/NSData+ImageContentType.h -------------------------------------------------------------------------------- /Pods/Headers/Public/SDWebImage/NSImage+WebCache.h: -------------------------------------------------------------------------------- 1 | ../../../SDWebImage/SDWebImage/NSImage+WebCache.h -------------------------------------------------------------------------------- /Pods/Headers/Public/SDWebImage/SDImageCache.h: -------------------------------------------------------------------------------- 1 | ../../../SDWebImage/SDWebImage/SDImageCache.h -------------------------------------------------------------------------------- /Pods/Headers/Public/SDWebImage/SDImageCacheConfig.h: -------------------------------------------------------------------------------- 1 | ../../../SDWebImage/SDWebImage/SDImageCacheConfig.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+WebCache.h: -------------------------------------------------------------------------------- 1 | ../../../SDWebImage/SDWebImage/UIView+WebCache.h -------------------------------------------------------------------------------- /Pods/Headers/Public/SDWebImage/UIView+WebCacheOperation.h: -------------------------------------------------------------------------------- 1 | ../../../SDWebImage/SDWebImage/UIView+WebCacheOperation.h -------------------------------------------------------------------------------- /Pods/Local Podspecs/AFNetworkActivityLogger.podspec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fndppx/iOS11AppStoreTransition/HEAD/Pods/Local Podspecs/AFNetworkActivityLogger.podspec.json -------------------------------------------------------------------------------- /Pods/MJRefresh/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fndppx/iOS11AppStoreTransition/HEAD/Pods/MJRefresh/LICENSE -------------------------------------------------------------------------------- /Pods/MJRefresh/MJRefresh/Base/MJRefreshAutoFooter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fndppx/iOS11AppStoreTransition/HEAD/Pods/MJRefresh/MJRefresh/Base/MJRefreshAutoFooter.h -------------------------------------------------------------------------------- /Pods/MJRefresh/MJRefresh/Base/MJRefreshAutoFooter.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fndppx/iOS11AppStoreTransition/HEAD/Pods/MJRefresh/MJRefresh/Base/MJRefreshAutoFooter.m -------------------------------------------------------------------------------- /Pods/MJRefresh/MJRefresh/Base/MJRefreshBackFooter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fndppx/iOS11AppStoreTransition/HEAD/Pods/MJRefresh/MJRefresh/Base/MJRefreshBackFooter.h -------------------------------------------------------------------------------- /Pods/MJRefresh/MJRefresh/Base/MJRefreshBackFooter.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fndppx/iOS11AppStoreTransition/HEAD/Pods/MJRefresh/MJRefresh/Base/MJRefreshBackFooter.m -------------------------------------------------------------------------------- /Pods/MJRefresh/MJRefresh/Base/MJRefreshComponent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fndppx/iOS11AppStoreTransition/HEAD/Pods/MJRefresh/MJRefresh/Base/MJRefreshComponent.h -------------------------------------------------------------------------------- /Pods/MJRefresh/MJRefresh/Base/MJRefreshComponent.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fndppx/iOS11AppStoreTransition/HEAD/Pods/MJRefresh/MJRefresh/Base/MJRefreshComponent.m -------------------------------------------------------------------------------- /Pods/MJRefresh/MJRefresh/Base/MJRefreshFooter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fndppx/iOS11AppStoreTransition/HEAD/Pods/MJRefresh/MJRefresh/Base/MJRefreshFooter.h -------------------------------------------------------------------------------- /Pods/MJRefresh/MJRefresh/Base/MJRefreshFooter.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fndppx/iOS11AppStoreTransition/HEAD/Pods/MJRefresh/MJRefresh/Base/MJRefreshFooter.m -------------------------------------------------------------------------------- /Pods/MJRefresh/MJRefresh/Base/MJRefreshHeader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fndppx/iOS11AppStoreTransition/HEAD/Pods/MJRefresh/MJRefresh/Base/MJRefreshHeader.h -------------------------------------------------------------------------------- /Pods/MJRefresh/MJRefresh/Base/MJRefreshHeader.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fndppx/iOS11AppStoreTransition/HEAD/Pods/MJRefresh/MJRefresh/Base/MJRefreshHeader.m -------------------------------------------------------------------------------- /Pods/MJRefresh/MJRefresh/Custom/Footer/Auto/MJRefreshAutoGifFooter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fndppx/iOS11AppStoreTransition/HEAD/Pods/MJRefresh/MJRefresh/Custom/Footer/Auto/MJRefreshAutoGifFooter.h -------------------------------------------------------------------------------- /Pods/MJRefresh/MJRefresh/Custom/Footer/Auto/MJRefreshAutoGifFooter.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fndppx/iOS11AppStoreTransition/HEAD/Pods/MJRefresh/MJRefresh/Custom/Footer/Auto/MJRefreshAutoGifFooter.m -------------------------------------------------------------------------------- /Pods/MJRefresh/MJRefresh/Custom/Footer/Auto/MJRefreshAutoNormalFooter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fndppx/iOS11AppStoreTransition/HEAD/Pods/MJRefresh/MJRefresh/Custom/Footer/Auto/MJRefreshAutoNormalFooter.h -------------------------------------------------------------------------------- /Pods/MJRefresh/MJRefresh/Custom/Footer/Auto/MJRefreshAutoNormalFooter.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fndppx/iOS11AppStoreTransition/HEAD/Pods/MJRefresh/MJRefresh/Custom/Footer/Auto/MJRefreshAutoNormalFooter.m -------------------------------------------------------------------------------- /Pods/MJRefresh/MJRefresh/Custom/Footer/Auto/MJRefreshAutoStateFooter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fndppx/iOS11AppStoreTransition/HEAD/Pods/MJRefresh/MJRefresh/Custom/Footer/Auto/MJRefreshAutoStateFooter.h -------------------------------------------------------------------------------- /Pods/MJRefresh/MJRefresh/Custom/Footer/Auto/MJRefreshAutoStateFooter.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fndppx/iOS11AppStoreTransition/HEAD/Pods/MJRefresh/MJRefresh/Custom/Footer/Auto/MJRefreshAutoStateFooter.m -------------------------------------------------------------------------------- /Pods/MJRefresh/MJRefresh/Custom/Footer/Back/MJRefreshBackGifFooter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fndppx/iOS11AppStoreTransition/HEAD/Pods/MJRefresh/MJRefresh/Custom/Footer/Back/MJRefreshBackGifFooter.h -------------------------------------------------------------------------------- /Pods/MJRefresh/MJRefresh/Custom/Footer/Back/MJRefreshBackGifFooter.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fndppx/iOS11AppStoreTransition/HEAD/Pods/MJRefresh/MJRefresh/Custom/Footer/Back/MJRefreshBackGifFooter.m -------------------------------------------------------------------------------- /Pods/MJRefresh/MJRefresh/Custom/Footer/Back/MJRefreshBackNormalFooter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fndppx/iOS11AppStoreTransition/HEAD/Pods/MJRefresh/MJRefresh/Custom/Footer/Back/MJRefreshBackNormalFooter.h -------------------------------------------------------------------------------- /Pods/MJRefresh/MJRefresh/Custom/Footer/Back/MJRefreshBackNormalFooter.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fndppx/iOS11AppStoreTransition/HEAD/Pods/MJRefresh/MJRefresh/Custom/Footer/Back/MJRefreshBackNormalFooter.m -------------------------------------------------------------------------------- /Pods/MJRefresh/MJRefresh/Custom/Footer/Back/MJRefreshBackStateFooter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fndppx/iOS11AppStoreTransition/HEAD/Pods/MJRefresh/MJRefresh/Custom/Footer/Back/MJRefreshBackStateFooter.h -------------------------------------------------------------------------------- /Pods/MJRefresh/MJRefresh/Custom/Footer/Back/MJRefreshBackStateFooter.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fndppx/iOS11AppStoreTransition/HEAD/Pods/MJRefresh/MJRefresh/Custom/Footer/Back/MJRefreshBackStateFooter.m -------------------------------------------------------------------------------- /Pods/MJRefresh/MJRefresh/Custom/Header/MJRefreshGifHeader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fndppx/iOS11AppStoreTransition/HEAD/Pods/MJRefresh/MJRefresh/Custom/Header/MJRefreshGifHeader.h -------------------------------------------------------------------------------- /Pods/MJRefresh/MJRefresh/Custom/Header/MJRefreshGifHeader.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fndppx/iOS11AppStoreTransition/HEAD/Pods/MJRefresh/MJRefresh/Custom/Header/MJRefreshGifHeader.m -------------------------------------------------------------------------------- /Pods/MJRefresh/MJRefresh/Custom/Header/MJRefreshNormalHeader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fndppx/iOS11AppStoreTransition/HEAD/Pods/MJRefresh/MJRefresh/Custom/Header/MJRefreshNormalHeader.h -------------------------------------------------------------------------------- /Pods/MJRefresh/MJRefresh/Custom/Header/MJRefreshNormalHeader.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fndppx/iOS11AppStoreTransition/HEAD/Pods/MJRefresh/MJRefresh/Custom/Header/MJRefreshNormalHeader.m -------------------------------------------------------------------------------- /Pods/MJRefresh/MJRefresh/Custom/Header/MJRefreshStateHeader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fndppx/iOS11AppStoreTransition/HEAD/Pods/MJRefresh/MJRefresh/Custom/Header/MJRefreshStateHeader.h -------------------------------------------------------------------------------- /Pods/MJRefresh/MJRefresh/Custom/Header/MJRefreshStateHeader.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fndppx/iOS11AppStoreTransition/HEAD/Pods/MJRefresh/MJRefresh/Custom/Header/MJRefreshStateHeader.m -------------------------------------------------------------------------------- /Pods/MJRefresh/MJRefresh/MJRefresh.bundle/arrow@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fndppx/iOS11AppStoreTransition/HEAD/Pods/MJRefresh/MJRefresh/MJRefresh.bundle/arrow@2x.png -------------------------------------------------------------------------------- /Pods/MJRefresh/MJRefresh/MJRefresh.bundle/en.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fndppx/iOS11AppStoreTransition/HEAD/Pods/MJRefresh/MJRefresh/MJRefresh.bundle/en.lproj/Localizable.strings -------------------------------------------------------------------------------- /Pods/MJRefresh/MJRefresh/MJRefresh.bundle/zh-Hans.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fndppx/iOS11AppStoreTransition/HEAD/Pods/MJRefresh/MJRefresh/MJRefresh.bundle/zh-Hans.lproj/Localizable.strings -------------------------------------------------------------------------------- /Pods/MJRefresh/MJRefresh/MJRefresh.bundle/zh-Hant.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fndppx/iOS11AppStoreTransition/HEAD/Pods/MJRefresh/MJRefresh/MJRefresh.bundle/zh-Hant.lproj/Localizable.strings -------------------------------------------------------------------------------- /Pods/MJRefresh/MJRefresh/MJRefresh.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fndppx/iOS11AppStoreTransition/HEAD/Pods/MJRefresh/MJRefresh/MJRefresh.h -------------------------------------------------------------------------------- /Pods/MJRefresh/MJRefresh/MJRefreshConst.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fndppx/iOS11AppStoreTransition/HEAD/Pods/MJRefresh/MJRefresh/MJRefreshConst.h -------------------------------------------------------------------------------- /Pods/MJRefresh/MJRefresh/MJRefreshConst.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fndppx/iOS11AppStoreTransition/HEAD/Pods/MJRefresh/MJRefresh/MJRefreshConst.m -------------------------------------------------------------------------------- /Pods/MJRefresh/MJRefresh/NSBundle+MJRefresh.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fndppx/iOS11AppStoreTransition/HEAD/Pods/MJRefresh/MJRefresh/NSBundle+MJRefresh.h -------------------------------------------------------------------------------- /Pods/MJRefresh/MJRefresh/NSBundle+MJRefresh.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fndppx/iOS11AppStoreTransition/HEAD/Pods/MJRefresh/MJRefresh/NSBundle+MJRefresh.m -------------------------------------------------------------------------------- /Pods/MJRefresh/MJRefresh/UIScrollView+MJExtension.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fndppx/iOS11AppStoreTransition/HEAD/Pods/MJRefresh/MJRefresh/UIScrollView+MJExtension.h -------------------------------------------------------------------------------- /Pods/MJRefresh/MJRefresh/UIScrollView+MJExtension.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fndppx/iOS11AppStoreTransition/HEAD/Pods/MJRefresh/MJRefresh/UIScrollView+MJExtension.m -------------------------------------------------------------------------------- /Pods/MJRefresh/MJRefresh/UIScrollView+MJRefresh.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fndppx/iOS11AppStoreTransition/HEAD/Pods/MJRefresh/MJRefresh/UIScrollView+MJRefresh.h -------------------------------------------------------------------------------- /Pods/MJRefresh/MJRefresh/UIScrollView+MJRefresh.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fndppx/iOS11AppStoreTransition/HEAD/Pods/MJRefresh/MJRefresh/UIScrollView+MJRefresh.m -------------------------------------------------------------------------------- /Pods/MJRefresh/MJRefresh/UIView+MJExtension.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fndppx/iOS11AppStoreTransition/HEAD/Pods/MJRefresh/MJRefresh/UIView+MJExtension.h -------------------------------------------------------------------------------- /Pods/MJRefresh/MJRefresh/UIView+MJExtension.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fndppx/iOS11AppStoreTransition/HEAD/Pods/MJRefresh/MJRefresh/UIView+MJExtension.m -------------------------------------------------------------------------------- /Pods/MJRefresh/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fndppx/iOS11AppStoreTransition/HEAD/Pods/MJRefresh/README.md -------------------------------------------------------------------------------- /Pods/Manifest.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fndppx/iOS11AppStoreTransition/HEAD/Pods/Manifest.lock -------------------------------------------------------------------------------- /Pods/Masonry/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fndppx/iOS11AppStoreTransition/HEAD/Pods/Masonry/LICENSE -------------------------------------------------------------------------------- /Pods/Masonry/Masonry/MASCompositeConstraint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fndppx/iOS11AppStoreTransition/HEAD/Pods/Masonry/Masonry/MASCompositeConstraint.h -------------------------------------------------------------------------------- /Pods/Masonry/Masonry/MASCompositeConstraint.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fndppx/iOS11AppStoreTransition/HEAD/Pods/Masonry/Masonry/MASCompositeConstraint.m -------------------------------------------------------------------------------- /Pods/Masonry/Masonry/MASConstraint+Private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fndppx/iOS11AppStoreTransition/HEAD/Pods/Masonry/Masonry/MASConstraint+Private.h -------------------------------------------------------------------------------- /Pods/Masonry/Masonry/MASConstraint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fndppx/iOS11AppStoreTransition/HEAD/Pods/Masonry/Masonry/MASConstraint.h -------------------------------------------------------------------------------- /Pods/Masonry/Masonry/MASConstraint.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fndppx/iOS11AppStoreTransition/HEAD/Pods/Masonry/Masonry/MASConstraint.m -------------------------------------------------------------------------------- /Pods/Masonry/Masonry/MASConstraintMaker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fndppx/iOS11AppStoreTransition/HEAD/Pods/Masonry/Masonry/MASConstraintMaker.h -------------------------------------------------------------------------------- /Pods/Masonry/Masonry/MASConstraintMaker.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fndppx/iOS11AppStoreTransition/HEAD/Pods/Masonry/Masonry/MASConstraintMaker.m -------------------------------------------------------------------------------- /Pods/Masonry/Masonry/MASLayoutConstraint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fndppx/iOS11AppStoreTransition/HEAD/Pods/Masonry/Masonry/MASLayoutConstraint.h -------------------------------------------------------------------------------- /Pods/Masonry/Masonry/MASLayoutConstraint.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fndppx/iOS11AppStoreTransition/HEAD/Pods/Masonry/Masonry/MASLayoutConstraint.m -------------------------------------------------------------------------------- /Pods/Masonry/Masonry/MASUtilities.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fndppx/iOS11AppStoreTransition/HEAD/Pods/Masonry/Masonry/MASUtilities.h -------------------------------------------------------------------------------- /Pods/Masonry/Masonry/MASViewAttribute.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fndppx/iOS11AppStoreTransition/HEAD/Pods/Masonry/Masonry/MASViewAttribute.h -------------------------------------------------------------------------------- /Pods/Masonry/Masonry/MASViewAttribute.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fndppx/iOS11AppStoreTransition/HEAD/Pods/Masonry/Masonry/MASViewAttribute.m -------------------------------------------------------------------------------- /Pods/Masonry/Masonry/MASViewConstraint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fndppx/iOS11AppStoreTransition/HEAD/Pods/Masonry/Masonry/MASViewConstraint.h -------------------------------------------------------------------------------- /Pods/Masonry/Masonry/MASViewConstraint.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fndppx/iOS11AppStoreTransition/HEAD/Pods/Masonry/Masonry/MASViewConstraint.m -------------------------------------------------------------------------------- /Pods/Masonry/Masonry/Masonry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fndppx/iOS11AppStoreTransition/HEAD/Pods/Masonry/Masonry/Masonry.h -------------------------------------------------------------------------------- /Pods/Masonry/Masonry/NSArray+MASAdditions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fndppx/iOS11AppStoreTransition/HEAD/Pods/Masonry/Masonry/NSArray+MASAdditions.h -------------------------------------------------------------------------------- /Pods/Masonry/Masonry/NSArray+MASAdditions.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fndppx/iOS11AppStoreTransition/HEAD/Pods/Masonry/Masonry/NSArray+MASAdditions.m -------------------------------------------------------------------------------- /Pods/Masonry/Masonry/NSArray+MASShorthandAdditions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fndppx/iOS11AppStoreTransition/HEAD/Pods/Masonry/Masonry/NSArray+MASShorthandAdditions.h -------------------------------------------------------------------------------- /Pods/Masonry/Masonry/NSLayoutConstraint+MASDebugAdditions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fndppx/iOS11AppStoreTransition/HEAD/Pods/Masonry/Masonry/NSLayoutConstraint+MASDebugAdditions.h -------------------------------------------------------------------------------- /Pods/Masonry/Masonry/NSLayoutConstraint+MASDebugAdditions.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fndppx/iOS11AppStoreTransition/HEAD/Pods/Masonry/Masonry/NSLayoutConstraint+MASDebugAdditions.m -------------------------------------------------------------------------------- /Pods/Masonry/Masonry/View+MASAdditions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fndppx/iOS11AppStoreTransition/HEAD/Pods/Masonry/Masonry/View+MASAdditions.h -------------------------------------------------------------------------------- /Pods/Masonry/Masonry/View+MASAdditions.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fndppx/iOS11AppStoreTransition/HEAD/Pods/Masonry/Masonry/View+MASAdditions.m -------------------------------------------------------------------------------- /Pods/Masonry/Masonry/View+MASShorthandAdditions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fndppx/iOS11AppStoreTransition/HEAD/Pods/Masonry/Masonry/View+MASShorthandAdditions.h -------------------------------------------------------------------------------- /Pods/Masonry/Masonry/ViewController+MASAdditions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fndppx/iOS11AppStoreTransition/HEAD/Pods/Masonry/Masonry/ViewController+MASAdditions.h -------------------------------------------------------------------------------- /Pods/Masonry/Masonry/ViewController+MASAdditions.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fndppx/iOS11AppStoreTransition/HEAD/Pods/Masonry/Masonry/ViewController+MASAdditions.m -------------------------------------------------------------------------------- /Pods/Masonry/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fndppx/iOS11AppStoreTransition/HEAD/Pods/Masonry/README.md -------------------------------------------------------------------------------- /Pods/Pods.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fndppx/iOS11AppStoreTransition/HEAD/Pods/Pods.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Pods/Pods.xcodeproj/xcuserdata/k12.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fndppx/iOS11AppStoreTransition/HEAD/Pods/Pods.xcodeproj/xcuserdata/k12.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /Pods/Pods.xcodeproj/xcuserdata/weikeyan.xcuserdatad/xcschemes/AFNetworking.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fndppx/iOS11AppStoreTransition/HEAD/Pods/Pods.xcodeproj/xcuserdata/weikeyan.xcuserdatad/xcschemes/AFNetworking.xcscheme -------------------------------------------------------------------------------- /Pods/Pods.xcodeproj/xcuserdata/weikeyan.xcuserdatad/xcschemes/MJRefresh.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fndppx/iOS11AppStoreTransition/HEAD/Pods/Pods.xcodeproj/xcuserdata/weikeyan.xcuserdatad/xcschemes/MJRefresh.xcscheme -------------------------------------------------------------------------------- /Pods/Pods.xcodeproj/xcuserdata/weikeyan.xcuserdatad/xcschemes/Masonry.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fndppx/iOS11AppStoreTransition/HEAD/Pods/Pods.xcodeproj/xcuserdata/weikeyan.xcuserdatad/xcschemes/Masonry.xcscheme -------------------------------------------------------------------------------- /Pods/Pods.xcodeproj/xcuserdata/weikeyan.xcuserdatad/xcschemes/ReactiveObjC.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fndppx/iOS11AppStoreTransition/HEAD/Pods/Pods.xcodeproj/xcuserdata/weikeyan.xcuserdatad/xcschemes/ReactiveObjC.xcscheme -------------------------------------------------------------------------------- /Pods/Pods.xcodeproj/xcuserdata/weikeyan.xcuserdatad/xcschemes/SDWebImage.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fndppx/iOS11AppStoreTransition/HEAD/Pods/Pods.xcodeproj/xcuserdata/weikeyan.xcuserdatad/xcschemes/SDWebImage.xcscheme -------------------------------------------------------------------------------- /Pods/Pods.xcodeproj/xcuserdata/weikeyan.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fndppx/iOS11AppStoreTransition/HEAD/Pods/Pods.xcodeproj/xcuserdata/weikeyan.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /Pods/ReactiveObjC/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fndppx/iOS11AppStoreTransition/HEAD/Pods/ReactiveObjC/LICENSE.md -------------------------------------------------------------------------------- /Pods/ReactiveObjC/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fndppx/iOS11AppStoreTransition/HEAD/Pods/ReactiveObjC/README.md -------------------------------------------------------------------------------- /Pods/ReactiveObjC/ReactiveObjC/MKAnnotationView+RACSignalSupport.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fndppx/iOS11AppStoreTransition/HEAD/Pods/ReactiveObjC/ReactiveObjC/MKAnnotationView+RACSignalSupport.h -------------------------------------------------------------------------------- /Pods/ReactiveObjC/ReactiveObjC/MKAnnotationView+RACSignalSupport.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fndppx/iOS11AppStoreTransition/HEAD/Pods/ReactiveObjC/ReactiveObjC/MKAnnotationView+RACSignalSupport.m -------------------------------------------------------------------------------- /Pods/ReactiveObjC/ReactiveObjC/NSArray+RACSequenceAdditions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fndppx/iOS11AppStoreTransition/HEAD/Pods/ReactiveObjC/ReactiveObjC/NSArray+RACSequenceAdditions.h -------------------------------------------------------------------------------- /Pods/ReactiveObjC/ReactiveObjC/NSArray+RACSequenceAdditions.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fndppx/iOS11AppStoreTransition/HEAD/Pods/ReactiveObjC/ReactiveObjC/NSArray+RACSequenceAdditions.m -------------------------------------------------------------------------------- /Pods/ReactiveObjC/ReactiveObjC/NSData+RACSupport.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fndppx/iOS11AppStoreTransition/HEAD/Pods/ReactiveObjC/ReactiveObjC/NSData+RACSupport.h -------------------------------------------------------------------------------- /Pods/ReactiveObjC/ReactiveObjC/NSData+RACSupport.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fndppx/iOS11AppStoreTransition/HEAD/Pods/ReactiveObjC/ReactiveObjC/NSData+RACSupport.m -------------------------------------------------------------------------------- /Pods/ReactiveObjC/ReactiveObjC/NSDictionary+RACSequenceAdditions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fndppx/iOS11AppStoreTransition/HEAD/Pods/ReactiveObjC/ReactiveObjC/NSDictionary+RACSequenceAdditions.h -------------------------------------------------------------------------------- /Pods/ReactiveObjC/ReactiveObjC/NSDictionary+RACSequenceAdditions.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fndppx/iOS11AppStoreTransition/HEAD/Pods/ReactiveObjC/ReactiveObjC/NSDictionary+RACSequenceAdditions.m -------------------------------------------------------------------------------- /Pods/ReactiveObjC/ReactiveObjC/NSEnumerator+RACSequenceAdditions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fndppx/iOS11AppStoreTransition/HEAD/Pods/ReactiveObjC/ReactiveObjC/NSEnumerator+RACSequenceAdditions.h -------------------------------------------------------------------------------- /Pods/ReactiveObjC/ReactiveObjC/NSEnumerator+RACSequenceAdditions.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fndppx/iOS11AppStoreTransition/HEAD/Pods/ReactiveObjC/ReactiveObjC/NSEnumerator+RACSequenceAdditions.m -------------------------------------------------------------------------------- /Pods/ReactiveObjC/ReactiveObjC/NSFileHandle+RACSupport.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fndppx/iOS11AppStoreTransition/HEAD/Pods/ReactiveObjC/ReactiveObjC/NSFileHandle+RACSupport.h -------------------------------------------------------------------------------- /Pods/ReactiveObjC/ReactiveObjC/NSFileHandle+RACSupport.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fndppx/iOS11AppStoreTransition/HEAD/Pods/ReactiveObjC/ReactiveObjC/NSFileHandle+RACSupport.m -------------------------------------------------------------------------------- /Pods/ReactiveObjC/ReactiveObjC/NSIndexSet+RACSequenceAdditions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fndppx/iOS11AppStoreTransition/HEAD/Pods/ReactiveObjC/ReactiveObjC/NSIndexSet+RACSequenceAdditions.h -------------------------------------------------------------------------------- /Pods/ReactiveObjC/ReactiveObjC/NSIndexSet+RACSequenceAdditions.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fndppx/iOS11AppStoreTransition/HEAD/Pods/ReactiveObjC/ReactiveObjC/NSIndexSet+RACSequenceAdditions.m -------------------------------------------------------------------------------- /Pods/ReactiveObjC/ReactiveObjC/NSInvocation+RACTypeParsing.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fndppx/iOS11AppStoreTransition/HEAD/Pods/ReactiveObjC/ReactiveObjC/NSInvocation+RACTypeParsing.h -------------------------------------------------------------------------------- /Pods/ReactiveObjC/ReactiveObjC/NSInvocation+RACTypeParsing.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fndppx/iOS11AppStoreTransition/HEAD/Pods/ReactiveObjC/ReactiveObjC/NSInvocation+RACTypeParsing.m -------------------------------------------------------------------------------- /Pods/ReactiveObjC/ReactiveObjC/NSNotificationCenter+RACSupport.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fndppx/iOS11AppStoreTransition/HEAD/Pods/ReactiveObjC/ReactiveObjC/NSNotificationCenter+RACSupport.h -------------------------------------------------------------------------------- /Pods/ReactiveObjC/ReactiveObjC/NSNotificationCenter+RACSupport.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fndppx/iOS11AppStoreTransition/HEAD/Pods/ReactiveObjC/ReactiveObjC/NSNotificationCenter+RACSupport.m -------------------------------------------------------------------------------- /Pods/ReactiveObjC/ReactiveObjC/NSObject+RACDeallocating.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fndppx/iOS11AppStoreTransition/HEAD/Pods/ReactiveObjC/ReactiveObjC/NSObject+RACDeallocating.h -------------------------------------------------------------------------------- /Pods/ReactiveObjC/ReactiveObjC/NSObject+RACDeallocating.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fndppx/iOS11AppStoreTransition/HEAD/Pods/ReactiveObjC/ReactiveObjC/NSObject+RACDeallocating.m -------------------------------------------------------------------------------- /Pods/ReactiveObjC/ReactiveObjC/NSObject+RACDescription.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fndppx/iOS11AppStoreTransition/HEAD/Pods/ReactiveObjC/ReactiveObjC/NSObject+RACDescription.h -------------------------------------------------------------------------------- /Pods/ReactiveObjC/ReactiveObjC/NSObject+RACDescription.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fndppx/iOS11AppStoreTransition/HEAD/Pods/ReactiveObjC/ReactiveObjC/NSObject+RACDescription.m -------------------------------------------------------------------------------- /Pods/ReactiveObjC/ReactiveObjC/NSObject+RACKVOWrapper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fndppx/iOS11AppStoreTransition/HEAD/Pods/ReactiveObjC/ReactiveObjC/NSObject+RACKVOWrapper.h -------------------------------------------------------------------------------- /Pods/ReactiveObjC/ReactiveObjC/NSObject+RACKVOWrapper.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fndppx/iOS11AppStoreTransition/HEAD/Pods/ReactiveObjC/ReactiveObjC/NSObject+RACKVOWrapper.m -------------------------------------------------------------------------------- /Pods/ReactiveObjC/ReactiveObjC/NSObject+RACLifting.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fndppx/iOS11AppStoreTransition/HEAD/Pods/ReactiveObjC/ReactiveObjC/NSObject+RACLifting.h -------------------------------------------------------------------------------- /Pods/ReactiveObjC/ReactiveObjC/NSObject+RACLifting.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fndppx/iOS11AppStoreTransition/HEAD/Pods/ReactiveObjC/ReactiveObjC/NSObject+RACLifting.m -------------------------------------------------------------------------------- /Pods/ReactiveObjC/ReactiveObjC/NSObject+RACPropertySubscribing.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fndppx/iOS11AppStoreTransition/HEAD/Pods/ReactiveObjC/ReactiveObjC/NSObject+RACPropertySubscribing.h -------------------------------------------------------------------------------- /Pods/ReactiveObjC/ReactiveObjC/NSObject+RACPropertySubscribing.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fndppx/iOS11AppStoreTransition/HEAD/Pods/ReactiveObjC/ReactiveObjC/NSObject+RACPropertySubscribing.m -------------------------------------------------------------------------------- /Pods/ReactiveObjC/ReactiveObjC/NSObject+RACSelectorSignal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fndppx/iOS11AppStoreTransition/HEAD/Pods/ReactiveObjC/ReactiveObjC/NSObject+RACSelectorSignal.h -------------------------------------------------------------------------------- /Pods/ReactiveObjC/ReactiveObjC/NSObject+RACSelectorSignal.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fndppx/iOS11AppStoreTransition/HEAD/Pods/ReactiveObjC/ReactiveObjC/NSObject+RACSelectorSignal.m -------------------------------------------------------------------------------- /Pods/ReactiveObjC/ReactiveObjC/NSOrderedSet+RACSequenceAdditions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fndppx/iOS11AppStoreTransition/HEAD/Pods/ReactiveObjC/ReactiveObjC/NSOrderedSet+RACSequenceAdditions.h -------------------------------------------------------------------------------- /Pods/ReactiveObjC/ReactiveObjC/NSOrderedSet+RACSequenceAdditions.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fndppx/iOS11AppStoreTransition/HEAD/Pods/ReactiveObjC/ReactiveObjC/NSOrderedSet+RACSequenceAdditions.m -------------------------------------------------------------------------------- /Pods/ReactiveObjC/ReactiveObjC/NSSet+RACSequenceAdditions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fndppx/iOS11AppStoreTransition/HEAD/Pods/ReactiveObjC/ReactiveObjC/NSSet+RACSequenceAdditions.h -------------------------------------------------------------------------------- /Pods/ReactiveObjC/ReactiveObjC/NSSet+RACSequenceAdditions.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fndppx/iOS11AppStoreTransition/HEAD/Pods/ReactiveObjC/ReactiveObjC/NSSet+RACSequenceAdditions.m -------------------------------------------------------------------------------- /Pods/ReactiveObjC/ReactiveObjC/NSString+RACKeyPathUtilities.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fndppx/iOS11AppStoreTransition/HEAD/Pods/ReactiveObjC/ReactiveObjC/NSString+RACKeyPathUtilities.h -------------------------------------------------------------------------------- /Pods/ReactiveObjC/ReactiveObjC/NSString+RACKeyPathUtilities.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fndppx/iOS11AppStoreTransition/HEAD/Pods/ReactiveObjC/ReactiveObjC/NSString+RACKeyPathUtilities.m -------------------------------------------------------------------------------- /Pods/ReactiveObjC/ReactiveObjC/NSString+RACSequenceAdditions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fndppx/iOS11AppStoreTransition/HEAD/Pods/ReactiveObjC/ReactiveObjC/NSString+RACSequenceAdditions.h -------------------------------------------------------------------------------- /Pods/ReactiveObjC/ReactiveObjC/NSString+RACSequenceAdditions.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fndppx/iOS11AppStoreTransition/HEAD/Pods/ReactiveObjC/ReactiveObjC/NSString+RACSequenceAdditions.m -------------------------------------------------------------------------------- /Pods/ReactiveObjC/ReactiveObjC/NSString+RACSupport.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fndppx/iOS11AppStoreTransition/HEAD/Pods/ReactiveObjC/ReactiveObjC/NSString+RACSupport.h -------------------------------------------------------------------------------- /Pods/ReactiveObjC/ReactiveObjC/NSString+RACSupport.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fndppx/iOS11AppStoreTransition/HEAD/Pods/ReactiveObjC/ReactiveObjC/NSString+RACSupport.m -------------------------------------------------------------------------------- /Pods/ReactiveObjC/ReactiveObjC/NSURLConnection+RACSupport.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fndppx/iOS11AppStoreTransition/HEAD/Pods/ReactiveObjC/ReactiveObjC/NSURLConnection+RACSupport.h -------------------------------------------------------------------------------- /Pods/ReactiveObjC/ReactiveObjC/NSURLConnection+RACSupport.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fndppx/iOS11AppStoreTransition/HEAD/Pods/ReactiveObjC/ReactiveObjC/NSURLConnection+RACSupport.m -------------------------------------------------------------------------------- /Pods/ReactiveObjC/ReactiveObjC/NSUserDefaults+RACSupport.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fndppx/iOS11AppStoreTransition/HEAD/Pods/ReactiveObjC/ReactiveObjC/NSUserDefaults+RACSupport.h -------------------------------------------------------------------------------- /Pods/ReactiveObjC/ReactiveObjC/NSUserDefaults+RACSupport.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fndppx/iOS11AppStoreTransition/HEAD/Pods/ReactiveObjC/ReactiveObjC/NSUserDefaults+RACSupport.m -------------------------------------------------------------------------------- /Pods/ReactiveObjC/ReactiveObjC/RACAnnotations.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fndppx/iOS11AppStoreTransition/HEAD/Pods/ReactiveObjC/ReactiveObjC/RACAnnotations.h -------------------------------------------------------------------------------- /Pods/ReactiveObjC/ReactiveObjC/RACArraySequence.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fndppx/iOS11AppStoreTransition/HEAD/Pods/ReactiveObjC/ReactiveObjC/RACArraySequence.h -------------------------------------------------------------------------------- /Pods/ReactiveObjC/ReactiveObjC/RACArraySequence.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fndppx/iOS11AppStoreTransition/HEAD/Pods/ReactiveObjC/ReactiveObjC/RACArraySequence.m -------------------------------------------------------------------------------- /Pods/ReactiveObjC/ReactiveObjC/RACBehaviorSubject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fndppx/iOS11AppStoreTransition/HEAD/Pods/ReactiveObjC/ReactiveObjC/RACBehaviorSubject.h -------------------------------------------------------------------------------- /Pods/ReactiveObjC/ReactiveObjC/RACBehaviorSubject.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fndppx/iOS11AppStoreTransition/HEAD/Pods/ReactiveObjC/ReactiveObjC/RACBehaviorSubject.m -------------------------------------------------------------------------------- /Pods/ReactiveObjC/ReactiveObjC/RACBlockTrampoline.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fndppx/iOS11AppStoreTransition/HEAD/Pods/ReactiveObjC/ReactiveObjC/RACBlockTrampoline.h -------------------------------------------------------------------------------- /Pods/ReactiveObjC/ReactiveObjC/RACBlockTrampoline.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fndppx/iOS11AppStoreTransition/HEAD/Pods/ReactiveObjC/ReactiveObjC/RACBlockTrampoline.m -------------------------------------------------------------------------------- /Pods/ReactiveObjC/ReactiveObjC/RACChannel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fndppx/iOS11AppStoreTransition/HEAD/Pods/ReactiveObjC/ReactiveObjC/RACChannel.h -------------------------------------------------------------------------------- /Pods/ReactiveObjC/ReactiveObjC/RACChannel.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fndppx/iOS11AppStoreTransition/HEAD/Pods/ReactiveObjC/ReactiveObjC/RACChannel.m -------------------------------------------------------------------------------- /Pods/ReactiveObjC/ReactiveObjC/RACCommand.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fndppx/iOS11AppStoreTransition/HEAD/Pods/ReactiveObjC/ReactiveObjC/RACCommand.h -------------------------------------------------------------------------------- /Pods/ReactiveObjC/ReactiveObjC/RACCommand.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fndppx/iOS11AppStoreTransition/HEAD/Pods/ReactiveObjC/ReactiveObjC/RACCommand.m -------------------------------------------------------------------------------- /Pods/ReactiveObjC/ReactiveObjC/RACCompoundDisposable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fndppx/iOS11AppStoreTransition/HEAD/Pods/ReactiveObjC/ReactiveObjC/RACCompoundDisposable.h -------------------------------------------------------------------------------- /Pods/ReactiveObjC/ReactiveObjC/RACCompoundDisposable.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fndppx/iOS11AppStoreTransition/HEAD/Pods/ReactiveObjC/ReactiveObjC/RACCompoundDisposable.m -------------------------------------------------------------------------------- /Pods/ReactiveObjC/ReactiveObjC/RACCompoundDisposableProvider.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fndppx/iOS11AppStoreTransition/HEAD/Pods/ReactiveObjC/ReactiveObjC/RACCompoundDisposableProvider.d -------------------------------------------------------------------------------- /Pods/ReactiveObjC/ReactiveObjC/RACDelegateProxy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fndppx/iOS11AppStoreTransition/HEAD/Pods/ReactiveObjC/ReactiveObjC/RACDelegateProxy.h -------------------------------------------------------------------------------- /Pods/ReactiveObjC/ReactiveObjC/RACDelegateProxy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fndppx/iOS11AppStoreTransition/HEAD/Pods/ReactiveObjC/ReactiveObjC/RACDelegateProxy.m -------------------------------------------------------------------------------- /Pods/ReactiveObjC/ReactiveObjC/RACDisposable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fndppx/iOS11AppStoreTransition/HEAD/Pods/ReactiveObjC/ReactiveObjC/RACDisposable.h -------------------------------------------------------------------------------- /Pods/ReactiveObjC/ReactiveObjC/RACDisposable.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fndppx/iOS11AppStoreTransition/HEAD/Pods/ReactiveObjC/ReactiveObjC/RACDisposable.m -------------------------------------------------------------------------------- /Pods/ReactiveObjC/ReactiveObjC/RACDynamicSequence.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fndppx/iOS11AppStoreTransition/HEAD/Pods/ReactiveObjC/ReactiveObjC/RACDynamicSequence.h -------------------------------------------------------------------------------- /Pods/ReactiveObjC/ReactiveObjC/RACDynamicSequence.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fndppx/iOS11AppStoreTransition/HEAD/Pods/ReactiveObjC/ReactiveObjC/RACDynamicSequence.m -------------------------------------------------------------------------------- /Pods/ReactiveObjC/ReactiveObjC/RACDynamicSignal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fndppx/iOS11AppStoreTransition/HEAD/Pods/ReactiveObjC/ReactiveObjC/RACDynamicSignal.h -------------------------------------------------------------------------------- /Pods/ReactiveObjC/ReactiveObjC/RACDynamicSignal.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fndppx/iOS11AppStoreTransition/HEAD/Pods/ReactiveObjC/ReactiveObjC/RACDynamicSignal.m -------------------------------------------------------------------------------- /Pods/ReactiveObjC/ReactiveObjC/RACEagerSequence.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fndppx/iOS11AppStoreTransition/HEAD/Pods/ReactiveObjC/ReactiveObjC/RACEagerSequence.h -------------------------------------------------------------------------------- /Pods/ReactiveObjC/ReactiveObjC/RACEagerSequence.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fndppx/iOS11AppStoreTransition/HEAD/Pods/ReactiveObjC/ReactiveObjC/RACEagerSequence.m -------------------------------------------------------------------------------- /Pods/ReactiveObjC/ReactiveObjC/RACEmptySequence.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fndppx/iOS11AppStoreTransition/HEAD/Pods/ReactiveObjC/ReactiveObjC/RACEmptySequence.h -------------------------------------------------------------------------------- /Pods/ReactiveObjC/ReactiveObjC/RACEmptySequence.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fndppx/iOS11AppStoreTransition/HEAD/Pods/ReactiveObjC/ReactiveObjC/RACEmptySequence.m -------------------------------------------------------------------------------- /Pods/ReactiveObjC/ReactiveObjC/RACEmptySignal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fndppx/iOS11AppStoreTransition/HEAD/Pods/ReactiveObjC/ReactiveObjC/RACEmptySignal.h -------------------------------------------------------------------------------- /Pods/ReactiveObjC/ReactiveObjC/RACEmptySignal.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fndppx/iOS11AppStoreTransition/HEAD/Pods/ReactiveObjC/ReactiveObjC/RACEmptySignal.m -------------------------------------------------------------------------------- /Pods/ReactiveObjC/ReactiveObjC/RACErrorSignal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fndppx/iOS11AppStoreTransition/HEAD/Pods/ReactiveObjC/ReactiveObjC/RACErrorSignal.h -------------------------------------------------------------------------------- /Pods/ReactiveObjC/ReactiveObjC/RACErrorSignal.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fndppx/iOS11AppStoreTransition/HEAD/Pods/ReactiveObjC/ReactiveObjC/RACErrorSignal.m -------------------------------------------------------------------------------- /Pods/ReactiveObjC/ReactiveObjC/RACEvent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fndppx/iOS11AppStoreTransition/HEAD/Pods/ReactiveObjC/ReactiveObjC/RACEvent.h -------------------------------------------------------------------------------- /Pods/ReactiveObjC/ReactiveObjC/RACEvent.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fndppx/iOS11AppStoreTransition/HEAD/Pods/ReactiveObjC/ReactiveObjC/RACEvent.m -------------------------------------------------------------------------------- /Pods/ReactiveObjC/ReactiveObjC/RACGroupedSignal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fndppx/iOS11AppStoreTransition/HEAD/Pods/ReactiveObjC/ReactiveObjC/RACGroupedSignal.h -------------------------------------------------------------------------------- /Pods/ReactiveObjC/ReactiveObjC/RACGroupedSignal.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fndppx/iOS11AppStoreTransition/HEAD/Pods/ReactiveObjC/ReactiveObjC/RACGroupedSignal.m -------------------------------------------------------------------------------- /Pods/ReactiveObjC/ReactiveObjC/RACImmediateScheduler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fndppx/iOS11AppStoreTransition/HEAD/Pods/ReactiveObjC/ReactiveObjC/RACImmediateScheduler.h -------------------------------------------------------------------------------- /Pods/ReactiveObjC/ReactiveObjC/RACImmediateScheduler.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fndppx/iOS11AppStoreTransition/HEAD/Pods/ReactiveObjC/ReactiveObjC/RACImmediateScheduler.m -------------------------------------------------------------------------------- /Pods/ReactiveObjC/ReactiveObjC/RACIndexSetSequence.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fndppx/iOS11AppStoreTransition/HEAD/Pods/ReactiveObjC/ReactiveObjC/RACIndexSetSequence.h -------------------------------------------------------------------------------- /Pods/ReactiveObjC/ReactiveObjC/RACIndexSetSequence.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fndppx/iOS11AppStoreTransition/HEAD/Pods/ReactiveObjC/ReactiveObjC/RACIndexSetSequence.m -------------------------------------------------------------------------------- /Pods/ReactiveObjC/ReactiveObjC/RACKVOChannel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fndppx/iOS11AppStoreTransition/HEAD/Pods/ReactiveObjC/ReactiveObjC/RACKVOChannel.h -------------------------------------------------------------------------------- /Pods/ReactiveObjC/ReactiveObjC/RACKVOChannel.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fndppx/iOS11AppStoreTransition/HEAD/Pods/ReactiveObjC/ReactiveObjC/RACKVOChannel.m -------------------------------------------------------------------------------- /Pods/ReactiveObjC/ReactiveObjC/RACKVOProxy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fndppx/iOS11AppStoreTransition/HEAD/Pods/ReactiveObjC/ReactiveObjC/RACKVOProxy.h -------------------------------------------------------------------------------- /Pods/ReactiveObjC/ReactiveObjC/RACKVOProxy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fndppx/iOS11AppStoreTransition/HEAD/Pods/ReactiveObjC/ReactiveObjC/RACKVOProxy.m -------------------------------------------------------------------------------- /Pods/ReactiveObjC/ReactiveObjC/RACKVOTrampoline.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fndppx/iOS11AppStoreTransition/HEAD/Pods/ReactiveObjC/ReactiveObjC/RACKVOTrampoline.h -------------------------------------------------------------------------------- /Pods/ReactiveObjC/ReactiveObjC/RACKVOTrampoline.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fndppx/iOS11AppStoreTransition/HEAD/Pods/ReactiveObjC/ReactiveObjC/RACKVOTrampoline.m -------------------------------------------------------------------------------- /Pods/ReactiveObjC/ReactiveObjC/RACMulticastConnection+Private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fndppx/iOS11AppStoreTransition/HEAD/Pods/ReactiveObjC/ReactiveObjC/RACMulticastConnection+Private.h -------------------------------------------------------------------------------- /Pods/ReactiveObjC/ReactiveObjC/RACMulticastConnection.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fndppx/iOS11AppStoreTransition/HEAD/Pods/ReactiveObjC/ReactiveObjC/RACMulticastConnection.h -------------------------------------------------------------------------------- /Pods/ReactiveObjC/ReactiveObjC/RACMulticastConnection.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fndppx/iOS11AppStoreTransition/HEAD/Pods/ReactiveObjC/ReactiveObjC/RACMulticastConnection.m -------------------------------------------------------------------------------- /Pods/ReactiveObjC/ReactiveObjC/RACPassthroughSubscriber.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fndppx/iOS11AppStoreTransition/HEAD/Pods/ReactiveObjC/ReactiveObjC/RACPassthroughSubscriber.h -------------------------------------------------------------------------------- /Pods/ReactiveObjC/ReactiveObjC/RACPassthroughSubscriber.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fndppx/iOS11AppStoreTransition/HEAD/Pods/ReactiveObjC/ReactiveObjC/RACPassthroughSubscriber.m -------------------------------------------------------------------------------- /Pods/ReactiveObjC/ReactiveObjC/RACQueueScheduler+Subclass.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fndppx/iOS11AppStoreTransition/HEAD/Pods/ReactiveObjC/ReactiveObjC/RACQueueScheduler+Subclass.h -------------------------------------------------------------------------------- /Pods/ReactiveObjC/ReactiveObjC/RACQueueScheduler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fndppx/iOS11AppStoreTransition/HEAD/Pods/ReactiveObjC/ReactiveObjC/RACQueueScheduler.h -------------------------------------------------------------------------------- /Pods/ReactiveObjC/ReactiveObjC/RACQueueScheduler.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fndppx/iOS11AppStoreTransition/HEAD/Pods/ReactiveObjC/ReactiveObjC/RACQueueScheduler.m -------------------------------------------------------------------------------- /Pods/ReactiveObjC/ReactiveObjC/RACReplaySubject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fndppx/iOS11AppStoreTransition/HEAD/Pods/ReactiveObjC/ReactiveObjC/RACReplaySubject.h -------------------------------------------------------------------------------- /Pods/ReactiveObjC/ReactiveObjC/RACReplaySubject.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fndppx/iOS11AppStoreTransition/HEAD/Pods/ReactiveObjC/ReactiveObjC/RACReplaySubject.m -------------------------------------------------------------------------------- /Pods/ReactiveObjC/ReactiveObjC/RACReturnSignal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fndppx/iOS11AppStoreTransition/HEAD/Pods/ReactiveObjC/ReactiveObjC/RACReturnSignal.h -------------------------------------------------------------------------------- /Pods/ReactiveObjC/ReactiveObjC/RACReturnSignal.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fndppx/iOS11AppStoreTransition/HEAD/Pods/ReactiveObjC/ReactiveObjC/RACReturnSignal.m -------------------------------------------------------------------------------- /Pods/ReactiveObjC/ReactiveObjC/RACScheduler+Private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fndppx/iOS11AppStoreTransition/HEAD/Pods/ReactiveObjC/ReactiveObjC/RACScheduler+Private.h -------------------------------------------------------------------------------- /Pods/ReactiveObjC/ReactiveObjC/RACScheduler+Subclass.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fndppx/iOS11AppStoreTransition/HEAD/Pods/ReactiveObjC/ReactiveObjC/RACScheduler+Subclass.h -------------------------------------------------------------------------------- /Pods/ReactiveObjC/ReactiveObjC/RACScheduler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fndppx/iOS11AppStoreTransition/HEAD/Pods/ReactiveObjC/ReactiveObjC/RACScheduler.h -------------------------------------------------------------------------------- /Pods/ReactiveObjC/ReactiveObjC/RACScheduler.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fndppx/iOS11AppStoreTransition/HEAD/Pods/ReactiveObjC/ReactiveObjC/RACScheduler.m -------------------------------------------------------------------------------- /Pods/ReactiveObjC/ReactiveObjC/RACScopedDisposable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fndppx/iOS11AppStoreTransition/HEAD/Pods/ReactiveObjC/ReactiveObjC/RACScopedDisposable.h -------------------------------------------------------------------------------- /Pods/ReactiveObjC/ReactiveObjC/RACScopedDisposable.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fndppx/iOS11AppStoreTransition/HEAD/Pods/ReactiveObjC/ReactiveObjC/RACScopedDisposable.m -------------------------------------------------------------------------------- /Pods/ReactiveObjC/ReactiveObjC/RACSequence.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fndppx/iOS11AppStoreTransition/HEAD/Pods/ReactiveObjC/ReactiveObjC/RACSequence.h -------------------------------------------------------------------------------- /Pods/ReactiveObjC/ReactiveObjC/RACSequence.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fndppx/iOS11AppStoreTransition/HEAD/Pods/ReactiveObjC/ReactiveObjC/RACSequence.m -------------------------------------------------------------------------------- /Pods/ReactiveObjC/ReactiveObjC/RACSerialDisposable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fndppx/iOS11AppStoreTransition/HEAD/Pods/ReactiveObjC/ReactiveObjC/RACSerialDisposable.h -------------------------------------------------------------------------------- /Pods/ReactiveObjC/ReactiveObjC/RACSerialDisposable.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fndppx/iOS11AppStoreTransition/HEAD/Pods/ReactiveObjC/ReactiveObjC/RACSerialDisposable.m -------------------------------------------------------------------------------- /Pods/ReactiveObjC/ReactiveObjC/RACSignal+Operations.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fndppx/iOS11AppStoreTransition/HEAD/Pods/ReactiveObjC/ReactiveObjC/RACSignal+Operations.h -------------------------------------------------------------------------------- /Pods/ReactiveObjC/ReactiveObjC/RACSignal+Operations.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fndppx/iOS11AppStoreTransition/HEAD/Pods/ReactiveObjC/ReactiveObjC/RACSignal+Operations.m -------------------------------------------------------------------------------- /Pods/ReactiveObjC/ReactiveObjC/RACSignal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fndppx/iOS11AppStoreTransition/HEAD/Pods/ReactiveObjC/ReactiveObjC/RACSignal.h -------------------------------------------------------------------------------- /Pods/ReactiveObjC/ReactiveObjC/RACSignal.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fndppx/iOS11AppStoreTransition/HEAD/Pods/ReactiveObjC/ReactiveObjC/RACSignal.m -------------------------------------------------------------------------------- /Pods/ReactiveObjC/ReactiveObjC/RACSignalProvider.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fndppx/iOS11AppStoreTransition/HEAD/Pods/ReactiveObjC/ReactiveObjC/RACSignalProvider.d -------------------------------------------------------------------------------- /Pods/ReactiveObjC/ReactiveObjC/RACSignalSequence.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fndppx/iOS11AppStoreTransition/HEAD/Pods/ReactiveObjC/ReactiveObjC/RACSignalSequence.h -------------------------------------------------------------------------------- /Pods/ReactiveObjC/ReactiveObjC/RACSignalSequence.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fndppx/iOS11AppStoreTransition/HEAD/Pods/ReactiveObjC/ReactiveObjC/RACSignalSequence.m -------------------------------------------------------------------------------- /Pods/ReactiveObjC/ReactiveObjC/RACStream+Private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fndppx/iOS11AppStoreTransition/HEAD/Pods/ReactiveObjC/ReactiveObjC/RACStream+Private.h -------------------------------------------------------------------------------- /Pods/ReactiveObjC/ReactiveObjC/RACStream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fndppx/iOS11AppStoreTransition/HEAD/Pods/ReactiveObjC/ReactiveObjC/RACStream.h -------------------------------------------------------------------------------- /Pods/ReactiveObjC/ReactiveObjC/RACStream.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fndppx/iOS11AppStoreTransition/HEAD/Pods/ReactiveObjC/ReactiveObjC/RACStream.m -------------------------------------------------------------------------------- /Pods/ReactiveObjC/ReactiveObjC/RACStringSequence.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fndppx/iOS11AppStoreTransition/HEAD/Pods/ReactiveObjC/ReactiveObjC/RACStringSequence.h -------------------------------------------------------------------------------- /Pods/ReactiveObjC/ReactiveObjC/RACStringSequence.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fndppx/iOS11AppStoreTransition/HEAD/Pods/ReactiveObjC/ReactiveObjC/RACStringSequence.m -------------------------------------------------------------------------------- /Pods/ReactiveObjC/ReactiveObjC/RACSubject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fndppx/iOS11AppStoreTransition/HEAD/Pods/ReactiveObjC/ReactiveObjC/RACSubject.h -------------------------------------------------------------------------------- /Pods/ReactiveObjC/ReactiveObjC/RACSubject.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fndppx/iOS11AppStoreTransition/HEAD/Pods/ReactiveObjC/ReactiveObjC/RACSubject.m -------------------------------------------------------------------------------- /Pods/ReactiveObjC/ReactiveObjC/RACSubscriber+Private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fndppx/iOS11AppStoreTransition/HEAD/Pods/ReactiveObjC/ReactiveObjC/RACSubscriber+Private.h -------------------------------------------------------------------------------- /Pods/ReactiveObjC/ReactiveObjC/RACSubscriber.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fndppx/iOS11AppStoreTransition/HEAD/Pods/ReactiveObjC/ReactiveObjC/RACSubscriber.h -------------------------------------------------------------------------------- /Pods/ReactiveObjC/ReactiveObjC/RACSubscriber.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fndppx/iOS11AppStoreTransition/HEAD/Pods/ReactiveObjC/ReactiveObjC/RACSubscriber.m -------------------------------------------------------------------------------- /Pods/ReactiveObjC/ReactiveObjC/RACSubscriptingAssignmentTrampoline.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fndppx/iOS11AppStoreTransition/HEAD/Pods/ReactiveObjC/ReactiveObjC/RACSubscriptingAssignmentTrampoline.h -------------------------------------------------------------------------------- /Pods/ReactiveObjC/ReactiveObjC/RACSubscriptingAssignmentTrampoline.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fndppx/iOS11AppStoreTransition/HEAD/Pods/ReactiveObjC/ReactiveObjC/RACSubscriptingAssignmentTrampoline.m -------------------------------------------------------------------------------- /Pods/ReactiveObjC/ReactiveObjC/RACSubscriptionScheduler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fndppx/iOS11AppStoreTransition/HEAD/Pods/ReactiveObjC/ReactiveObjC/RACSubscriptionScheduler.h -------------------------------------------------------------------------------- /Pods/ReactiveObjC/ReactiveObjC/RACSubscriptionScheduler.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fndppx/iOS11AppStoreTransition/HEAD/Pods/ReactiveObjC/ReactiveObjC/RACSubscriptionScheduler.m -------------------------------------------------------------------------------- /Pods/ReactiveObjC/ReactiveObjC/RACTargetQueueScheduler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fndppx/iOS11AppStoreTransition/HEAD/Pods/ReactiveObjC/ReactiveObjC/RACTargetQueueScheduler.h -------------------------------------------------------------------------------- /Pods/ReactiveObjC/ReactiveObjC/RACTargetQueueScheduler.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fndppx/iOS11AppStoreTransition/HEAD/Pods/ReactiveObjC/ReactiveObjC/RACTargetQueueScheduler.m -------------------------------------------------------------------------------- /Pods/ReactiveObjC/ReactiveObjC/RACTestScheduler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fndppx/iOS11AppStoreTransition/HEAD/Pods/ReactiveObjC/ReactiveObjC/RACTestScheduler.h -------------------------------------------------------------------------------- /Pods/ReactiveObjC/ReactiveObjC/RACTestScheduler.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fndppx/iOS11AppStoreTransition/HEAD/Pods/ReactiveObjC/ReactiveObjC/RACTestScheduler.m -------------------------------------------------------------------------------- /Pods/ReactiveObjC/ReactiveObjC/RACTuple.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fndppx/iOS11AppStoreTransition/HEAD/Pods/ReactiveObjC/ReactiveObjC/RACTuple.h -------------------------------------------------------------------------------- /Pods/ReactiveObjC/ReactiveObjC/RACTuple.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fndppx/iOS11AppStoreTransition/HEAD/Pods/ReactiveObjC/ReactiveObjC/RACTuple.m -------------------------------------------------------------------------------- /Pods/ReactiveObjC/ReactiveObjC/RACTupleSequence.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fndppx/iOS11AppStoreTransition/HEAD/Pods/ReactiveObjC/ReactiveObjC/RACTupleSequence.h -------------------------------------------------------------------------------- /Pods/ReactiveObjC/ReactiveObjC/RACTupleSequence.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fndppx/iOS11AppStoreTransition/HEAD/Pods/ReactiveObjC/ReactiveObjC/RACTupleSequence.m -------------------------------------------------------------------------------- /Pods/ReactiveObjC/ReactiveObjC/RACUnarySequence.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fndppx/iOS11AppStoreTransition/HEAD/Pods/ReactiveObjC/ReactiveObjC/RACUnarySequence.h -------------------------------------------------------------------------------- /Pods/ReactiveObjC/ReactiveObjC/RACUnarySequence.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fndppx/iOS11AppStoreTransition/HEAD/Pods/ReactiveObjC/ReactiveObjC/RACUnarySequence.m -------------------------------------------------------------------------------- /Pods/ReactiveObjC/ReactiveObjC/RACUnit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fndppx/iOS11AppStoreTransition/HEAD/Pods/ReactiveObjC/ReactiveObjC/RACUnit.h -------------------------------------------------------------------------------- /Pods/ReactiveObjC/ReactiveObjC/RACUnit.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fndppx/iOS11AppStoreTransition/HEAD/Pods/ReactiveObjC/ReactiveObjC/RACUnit.m -------------------------------------------------------------------------------- /Pods/ReactiveObjC/ReactiveObjC/RACValueTransformer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fndppx/iOS11AppStoreTransition/HEAD/Pods/ReactiveObjC/ReactiveObjC/RACValueTransformer.h -------------------------------------------------------------------------------- /Pods/ReactiveObjC/ReactiveObjC/RACValueTransformer.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fndppx/iOS11AppStoreTransition/HEAD/Pods/ReactiveObjC/ReactiveObjC/RACValueTransformer.m -------------------------------------------------------------------------------- /Pods/ReactiveObjC/ReactiveObjC/ReactiveObjC.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fndppx/iOS11AppStoreTransition/HEAD/Pods/ReactiveObjC/ReactiveObjC/ReactiveObjC.h -------------------------------------------------------------------------------- /Pods/ReactiveObjC/ReactiveObjC/UIActionSheet+RACSignalSupport.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fndppx/iOS11AppStoreTransition/HEAD/Pods/ReactiveObjC/ReactiveObjC/UIActionSheet+RACSignalSupport.h -------------------------------------------------------------------------------- /Pods/ReactiveObjC/ReactiveObjC/UIActionSheet+RACSignalSupport.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fndppx/iOS11AppStoreTransition/HEAD/Pods/ReactiveObjC/ReactiveObjC/UIActionSheet+RACSignalSupport.m -------------------------------------------------------------------------------- /Pods/ReactiveObjC/ReactiveObjC/UIAlertView+RACSignalSupport.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fndppx/iOS11AppStoreTransition/HEAD/Pods/ReactiveObjC/ReactiveObjC/UIAlertView+RACSignalSupport.h -------------------------------------------------------------------------------- /Pods/ReactiveObjC/ReactiveObjC/UIAlertView+RACSignalSupport.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fndppx/iOS11AppStoreTransition/HEAD/Pods/ReactiveObjC/ReactiveObjC/UIAlertView+RACSignalSupport.m -------------------------------------------------------------------------------- /Pods/ReactiveObjC/ReactiveObjC/UIBarButtonItem+RACCommandSupport.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fndppx/iOS11AppStoreTransition/HEAD/Pods/ReactiveObjC/ReactiveObjC/UIBarButtonItem+RACCommandSupport.h -------------------------------------------------------------------------------- /Pods/ReactiveObjC/ReactiveObjC/UIBarButtonItem+RACCommandSupport.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fndppx/iOS11AppStoreTransition/HEAD/Pods/ReactiveObjC/ReactiveObjC/UIBarButtonItem+RACCommandSupport.m -------------------------------------------------------------------------------- /Pods/ReactiveObjC/ReactiveObjC/UIButton+RACCommandSupport.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fndppx/iOS11AppStoreTransition/HEAD/Pods/ReactiveObjC/ReactiveObjC/UIButton+RACCommandSupport.h -------------------------------------------------------------------------------- /Pods/ReactiveObjC/ReactiveObjC/UIButton+RACCommandSupport.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fndppx/iOS11AppStoreTransition/HEAD/Pods/ReactiveObjC/ReactiveObjC/UIButton+RACCommandSupport.m -------------------------------------------------------------------------------- /Pods/ReactiveObjC/ReactiveObjC/UICollectionReusableView+RACSignalSupport.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fndppx/iOS11AppStoreTransition/HEAD/Pods/ReactiveObjC/ReactiveObjC/UICollectionReusableView+RACSignalSupport.h -------------------------------------------------------------------------------- /Pods/ReactiveObjC/ReactiveObjC/UICollectionReusableView+RACSignalSupport.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fndppx/iOS11AppStoreTransition/HEAD/Pods/ReactiveObjC/ReactiveObjC/UICollectionReusableView+RACSignalSupport.m -------------------------------------------------------------------------------- /Pods/ReactiveObjC/ReactiveObjC/UIControl+RACSignalSupport.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fndppx/iOS11AppStoreTransition/HEAD/Pods/ReactiveObjC/ReactiveObjC/UIControl+RACSignalSupport.h -------------------------------------------------------------------------------- /Pods/ReactiveObjC/ReactiveObjC/UIControl+RACSignalSupport.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fndppx/iOS11AppStoreTransition/HEAD/Pods/ReactiveObjC/ReactiveObjC/UIControl+RACSignalSupport.m -------------------------------------------------------------------------------- /Pods/ReactiveObjC/ReactiveObjC/UIControl+RACSignalSupportPrivate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fndppx/iOS11AppStoreTransition/HEAD/Pods/ReactiveObjC/ReactiveObjC/UIControl+RACSignalSupportPrivate.h -------------------------------------------------------------------------------- /Pods/ReactiveObjC/ReactiveObjC/UIControl+RACSignalSupportPrivate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fndppx/iOS11AppStoreTransition/HEAD/Pods/ReactiveObjC/ReactiveObjC/UIControl+RACSignalSupportPrivate.m -------------------------------------------------------------------------------- /Pods/ReactiveObjC/ReactiveObjC/UIDatePicker+RACSignalSupport.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fndppx/iOS11AppStoreTransition/HEAD/Pods/ReactiveObjC/ReactiveObjC/UIDatePicker+RACSignalSupport.h -------------------------------------------------------------------------------- /Pods/ReactiveObjC/ReactiveObjC/UIDatePicker+RACSignalSupport.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fndppx/iOS11AppStoreTransition/HEAD/Pods/ReactiveObjC/ReactiveObjC/UIDatePicker+RACSignalSupport.m -------------------------------------------------------------------------------- /Pods/ReactiveObjC/ReactiveObjC/UIGestureRecognizer+RACSignalSupport.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fndppx/iOS11AppStoreTransition/HEAD/Pods/ReactiveObjC/ReactiveObjC/UIGestureRecognizer+RACSignalSupport.h -------------------------------------------------------------------------------- /Pods/ReactiveObjC/ReactiveObjC/UIGestureRecognizer+RACSignalSupport.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fndppx/iOS11AppStoreTransition/HEAD/Pods/ReactiveObjC/ReactiveObjC/UIGestureRecognizer+RACSignalSupport.m -------------------------------------------------------------------------------- /Pods/ReactiveObjC/ReactiveObjC/UIImagePickerController+RACSignalSupport.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fndppx/iOS11AppStoreTransition/HEAD/Pods/ReactiveObjC/ReactiveObjC/UIImagePickerController+RACSignalSupport.h -------------------------------------------------------------------------------- /Pods/ReactiveObjC/ReactiveObjC/UIImagePickerController+RACSignalSupport.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fndppx/iOS11AppStoreTransition/HEAD/Pods/ReactiveObjC/ReactiveObjC/UIImagePickerController+RACSignalSupport.m -------------------------------------------------------------------------------- /Pods/ReactiveObjC/ReactiveObjC/UIRefreshControl+RACCommandSupport.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fndppx/iOS11AppStoreTransition/HEAD/Pods/ReactiveObjC/ReactiveObjC/UIRefreshControl+RACCommandSupport.h -------------------------------------------------------------------------------- /Pods/ReactiveObjC/ReactiveObjC/UIRefreshControl+RACCommandSupport.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fndppx/iOS11AppStoreTransition/HEAD/Pods/ReactiveObjC/ReactiveObjC/UIRefreshControl+RACCommandSupport.m -------------------------------------------------------------------------------- /Pods/ReactiveObjC/ReactiveObjC/UISegmentedControl+RACSignalSupport.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fndppx/iOS11AppStoreTransition/HEAD/Pods/ReactiveObjC/ReactiveObjC/UISegmentedControl+RACSignalSupport.h -------------------------------------------------------------------------------- /Pods/ReactiveObjC/ReactiveObjC/UISegmentedControl+RACSignalSupport.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fndppx/iOS11AppStoreTransition/HEAD/Pods/ReactiveObjC/ReactiveObjC/UISegmentedControl+RACSignalSupport.m -------------------------------------------------------------------------------- /Pods/ReactiveObjC/ReactiveObjC/UISlider+RACSignalSupport.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fndppx/iOS11AppStoreTransition/HEAD/Pods/ReactiveObjC/ReactiveObjC/UISlider+RACSignalSupport.h -------------------------------------------------------------------------------- /Pods/ReactiveObjC/ReactiveObjC/UISlider+RACSignalSupport.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fndppx/iOS11AppStoreTransition/HEAD/Pods/ReactiveObjC/ReactiveObjC/UISlider+RACSignalSupport.m -------------------------------------------------------------------------------- /Pods/ReactiveObjC/ReactiveObjC/UIStepper+RACSignalSupport.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fndppx/iOS11AppStoreTransition/HEAD/Pods/ReactiveObjC/ReactiveObjC/UIStepper+RACSignalSupport.h -------------------------------------------------------------------------------- /Pods/ReactiveObjC/ReactiveObjC/UIStepper+RACSignalSupport.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fndppx/iOS11AppStoreTransition/HEAD/Pods/ReactiveObjC/ReactiveObjC/UIStepper+RACSignalSupport.m -------------------------------------------------------------------------------- /Pods/ReactiveObjC/ReactiveObjC/UISwitch+RACSignalSupport.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fndppx/iOS11AppStoreTransition/HEAD/Pods/ReactiveObjC/ReactiveObjC/UISwitch+RACSignalSupport.h -------------------------------------------------------------------------------- /Pods/ReactiveObjC/ReactiveObjC/UISwitch+RACSignalSupport.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fndppx/iOS11AppStoreTransition/HEAD/Pods/ReactiveObjC/ReactiveObjC/UISwitch+RACSignalSupport.m -------------------------------------------------------------------------------- /Pods/ReactiveObjC/ReactiveObjC/UITableViewCell+RACSignalSupport.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fndppx/iOS11AppStoreTransition/HEAD/Pods/ReactiveObjC/ReactiveObjC/UITableViewCell+RACSignalSupport.h -------------------------------------------------------------------------------- /Pods/ReactiveObjC/ReactiveObjC/UITableViewCell+RACSignalSupport.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fndppx/iOS11AppStoreTransition/HEAD/Pods/ReactiveObjC/ReactiveObjC/UITableViewCell+RACSignalSupport.m -------------------------------------------------------------------------------- /Pods/ReactiveObjC/ReactiveObjC/UITableViewHeaderFooterView+RACSignalSupport.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fndppx/iOS11AppStoreTransition/HEAD/Pods/ReactiveObjC/ReactiveObjC/UITableViewHeaderFooterView+RACSignalSupport.h -------------------------------------------------------------------------------- /Pods/ReactiveObjC/ReactiveObjC/UITableViewHeaderFooterView+RACSignalSupport.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fndppx/iOS11AppStoreTransition/HEAD/Pods/ReactiveObjC/ReactiveObjC/UITableViewHeaderFooterView+RACSignalSupport.m -------------------------------------------------------------------------------- /Pods/ReactiveObjC/ReactiveObjC/UITextField+RACSignalSupport.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fndppx/iOS11AppStoreTransition/HEAD/Pods/ReactiveObjC/ReactiveObjC/UITextField+RACSignalSupport.h -------------------------------------------------------------------------------- /Pods/ReactiveObjC/ReactiveObjC/UITextField+RACSignalSupport.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fndppx/iOS11AppStoreTransition/HEAD/Pods/ReactiveObjC/ReactiveObjC/UITextField+RACSignalSupport.m -------------------------------------------------------------------------------- /Pods/ReactiveObjC/ReactiveObjC/UITextView+RACSignalSupport.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fndppx/iOS11AppStoreTransition/HEAD/Pods/ReactiveObjC/ReactiveObjC/UITextView+RACSignalSupport.h -------------------------------------------------------------------------------- /Pods/ReactiveObjC/ReactiveObjC/UITextView+RACSignalSupport.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fndppx/iOS11AppStoreTransition/HEAD/Pods/ReactiveObjC/ReactiveObjC/UITextView+RACSignalSupport.m -------------------------------------------------------------------------------- /Pods/ReactiveObjC/ReactiveObjC/extobjc/RACEXTKeyPathCoding.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fndppx/iOS11AppStoreTransition/HEAD/Pods/ReactiveObjC/ReactiveObjC/extobjc/RACEXTKeyPathCoding.h -------------------------------------------------------------------------------- /Pods/ReactiveObjC/ReactiveObjC/extobjc/RACEXTRuntimeExtensions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fndppx/iOS11AppStoreTransition/HEAD/Pods/ReactiveObjC/ReactiveObjC/extobjc/RACEXTRuntimeExtensions.h -------------------------------------------------------------------------------- /Pods/ReactiveObjC/ReactiveObjC/extobjc/RACEXTRuntimeExtensions.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fndppx/iOS11AppStoreTransition/HEAD/Pods/ReactiveObjC/ReactiveObjC/extobjc/RACEXTRuntimeExtensions.m -------------------------------------------------------------------------------- /Pods/ReactiveObjC/ReactiveObjC/extobjc/RACEXTScope.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fndppx/iOS11AppStoreTransition/HEAD/Pods/ReactiveObjC/ReactiveObjC/extobjc/RACEXTScope.h -------------------------------------------------------------------------------- /Pods/ReactiveObjC/ReactiveObjC/extobjc/RACmetamacros.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fndppx/iOS11AppStoreTransition/HEAD/Pods/ReactiveObjC/ReactiveObjC/extobjc/RACmetamacros.h -------------------------------------------------------------------------------- /Pods/SDWebImage/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fndppx/iOS11AppStoreTransition/HEAD/Pods/SDWebImage/LICENSE -------------------------------------------------------------------------------- /Pods/SDWebImage/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fndppx/iOS11AppStoreTransition/HEAD/Pods/SDWebImage/README.md -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/NSData+ImageContentType.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fndppx/iOS11AppStoreTransition/HEAD/Pods/SDWebImage/SDWebImage/NSData+ImageContentType.h -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/NSData+ImageContentType.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fndppx/iOS11AppStoreTransition/HEAD/Pods/SDWebImage/SDWebImage/NSData+ImageContentType.m -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/NSImage+WebCache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fndppx/iOS11AppStoreTransition/HEAD/Pods/SDWebImage/SDWebImage/NSImage+WebCache.h -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/NSImage+WebCache.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fndppx/iOS11AppStoreTransition/HEAD/Pods/SDWebImage/SDWebImage/NSImage+WebCache.m -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/SDImageCache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fndppx/iOS11AppStoreTransition/HEAD/Pods/SDWebImage/SDWebImage/SDImageCache.h -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/SDImageCache.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fndppx/iOS11AppStoreTransition/HEAD/Pods/SDWebImage/SDWebImage/SDImageCache.m -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/SDImageCacheConfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fndppx/iOS11AppStoreTransition/HEAD/Pods/SDWebImage/SDWebImage/SDImageCacheConfig.h -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/SDImageCacheConfig.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fndppx/iOS11AppStoreTransition/HEAD/Pods/SDWebImage/SDWebImage/SDImageCacheConfig.m -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/SDWebImageCompat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fndppx/iOS11AppStoreTransition/HEAD/Pods/SDWebImage/SDWebImage/SDWebImageCompat.h -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/SDWebImageCompat.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fndppx/iOS11AppStoreTransition/HEAD/Pods/SDWebImage/SDWebImage/SDWebImageCompat.m -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/SDWebImageDecoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fndppx/iOS11AppStoreTransition/HEAD/Pods/SDWebImage/SDWebImage/SDWebImageDecoder.h -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/SDWebImageDecoder.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fndppx/iOS11AppStoreTransition/HEAD/Pods/SDWebImage/SDWebImage/SDWebImageDecoder.m -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/SDWebImageDownloader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fndppx/iOS11AppStoreTransition/HEAD/Pods/SDWebImage/SDWebImage/SDWebImageDownloader.h -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/SDWebImageDownloader.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fndppx/iOS11AppStoreTransition/HEAD/Pods/SDWebImage/SDWebImage/SDWebImageDownloader.m -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/SDWebImageDownloaderOperation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fndppx/iOS11AppStoreTransition/HEAD/Pods/SDWebImage/SDWebImage/SDWebImageDownloaderOperation.h -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/SDWebImageDownloaderOperation.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fndppx/iOS11AppStoreTransition/HEAD/Pods/SDWebImage/SDWebImage/SDWebImageDownloaderOperation.m -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/SDWebImageManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fndppx/iOS11AppStoreTransition/HEAD/Pods/SDWebImage/SDWebImage/SDWebImageManager.h -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/SDWebImageManager.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fndppx/iOS11AppStoreTransition/HEAD/Pods/SDWebImage/SDWebImage/SDWebImageManager.m -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/SDWebImageOperation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fndppx/iOS11AppStoreTransition/HEAD/Pods/SDWebImage/SDWebImage/SDWebImageOperation.h -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/SDWebImagePrefetcher.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fndppx/iOS11AppStoreTransition/HEAD/Pods/SDWebImage/SDWebImage/SDWebImagePrefetcher.h -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/SDWebImagePrefetcher.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fndppx/iOS11AppStoreTransition/HEAD/Pods/SDWebImage/SDWebImage/SDWebImagePrefetcher.m -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/UIButton+WebCache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fndppx/iOS11AppStoreTransition/HEAD/Pods/SDWebImage/SDWebImage/UIButton+WebCache.h -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/UIButton+WebCache.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fndppx/iOS11AppStoreTransition/HEAD/Pods/SDWebImage/SDWebImage/UIButton+WebCache.m -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/UIImage+GIF.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fndppx/iOS11AppStoreTransition/HEAD/Pods/SDWebImage/SDWebImage/UIImage+GIF.h -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/UIImage+GIF.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fndppx/iOS11AppStoreTransition/HEAD/Pods/SDWebImage/SDWebImage/UIImage+GIF.m -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/UIImage+MultiFormat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fndppx/iOS11AppStoreTransition/HEAD/Pods/SDWebImage/SDWebImage/UIImage+MultiFormat.h -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/UIImage+MultiFormat.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fndppx/iOS11AppStoreTransition/HEAD/Pods/SDWebImage/SDWebImage/UIImage+MultiFormat.m -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/UIImageView+HighlightedWebCache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fndppx/iOS11AppStoreTransition/HEAD/Pods/SDWebImage/SDWebImage/UIImageView+HighlightedWebCache.h -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/UIImageView+HighlightedWebCache.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fndppx/iOS11AppStoreTransition/HEAD/Pods/SDWebImage/SDWebImage/UIImageView+HighlightedWebCache.m -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/UIImageView+WebCache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fndppx/iOS11AppStoreTransition/HEAD/Pods/SDWebImage/SDWebImage/UIImageView+WebCache.h -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/UIImageView+WebCache.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fndppx/iOS11AppStoreTransition/HEAD/Pods/SDWebImage/SDWebImage/UIImageView+WebCache.m -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/UIView+WebCache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fndppx/iOS11AppStoreTransition/HEAD/Pods/SDWebImage/SDWebImage/UIView+WebCache.h -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/UIView+WebCache.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fndppx/iOS11AppStoreTransition/HEAD/Pods/SDWebImage/SDWebImage/UIView+WebCache.m -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/UIView+WebCacheOperation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fndppx/iOS11AppStoreTransition/HEAD/Pods/SDWebImage/SDWebImage/UIView+WebCacheOperation.h -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/UIView+WebCacheOperation.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fndppx/iOS11AppStoreTransition/HEAD/Pods/SDWebImage/SDWebImage/UIView+WebCacheOperation.m -------------------------------------------------------------------------------- /Pods/Target Support Files/AFNetworkActivityLogger/AFNetworkActivityLogger-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fndppx/iOS11AppStoreTransition/HEAD/Pods/Target Support Files/AFNetworkActivityLogger/AFNetworkActivityLogger-dummy.m -------------------------------------------------------------------------------- /Pods/Target Support Files/AFNetworkActivityLogger/AFNetworkActivityLogger-prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fndppx/iOS11AppStoreTransition/HEAD/Pods/Target Support Files/AFNetworkActivityLogger/AFNetworkActivityLogger-prefix.pch -------------------------------------------------------------------------------- /Pods/Target Support Files/AFNetworkActivityLogger/AFNetworkActivityLogger.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fndppx/iOS11AppStoreTransition/HEAD/Pods/Target Support Files/AFNetworkActivityLogger/AFNetworkActivityLogger.xcconfig -------------------------------------------------------------------------------- /Pods/Target Support Files/AFNetworking/AFNetworking-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fndppx/iOS11AppStoreTransition/HEAD/Pods/Target Support Files/AFNetworking/AFNetworking-dummy.m -------------------------------------------------------------------------------- /Pods/Target Support Files/AFNetworking/AFNetworking-prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fndppx/iOS11AppStoreTransition/HEAD/Pods/Target Support Files/AFNetworking/AFNetworking-prefix.pch -------------------------------------------------------------------------------- /Pods/Target Support Files/AFNetworking/AFNetworking.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fndppx/iOS11AppStoreTransition/HEAD/Pods/Target Support Files/AFNetworking/AFNetworking.xcconfig -------------------------------------------------------------------------------- /Pods/Target Support Files/MJRefresh/MJRefresh-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fndppx/iOS11AppStoreTransition/HEAD/Pods/Target Support Files/MJRefresh/MJRefresh-dummy.m -------------------------------------------------------------------------------- /Pods/Target Support Files/MJRefresh/MJRefresh-prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fndppx/iOS11AppStoreTransition/HEAD/Pods/Target Support Files/MJRefresh/MJRefresh-prefix.pch -------------------------------------------------------------------------------- /Pods/Target Support Files/MJRefresh/MJRefresh.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fndppx/iOS11AppStoreTransition/HEAD/Pods/Target Support Files/MJRefresh/MJRefresh.xcconfig -------------------------------------------------------------------------------- /Pods/Target Support Files/Masonry/Masonry-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fndppx/iOS11AppStoreTransition/HEAD/Pods/Target Support Files/Masonry/Masonry-dummy.m -------------------------------------------------------------------------------- /Pods/Target Support Files/Masonry/Masonry-prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fndppx/iOS11AppStoreTransition/HEAD/Pods/Target Support Files/Masonry/Masonry-prefix.pch -------------------------------------------------------------------------------- /Pods/Target Support Files/Masonry/Masonry.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fndppx/iOS11AppStoreTransition/HEAD/Pods/Target Support Files/Masonry/Masonry.xcconfig -------------------------------------------------------------------------------- /Pods/Target Support Files/ReactiveObjC/ReactiveObjC-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fndppx/iOS11AppStoreTransition/HEAD/Pods/Target Support Files/ReactiveObjC/ReactiveObjC-dummy.m -------------------------------------------------------------------------------- /Pods/Target Support Files/ReactiveObjC/ReactiveObjC-prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fndppx/iOS11AppStoreTransition/HEAD/Pods/Target Support Files/ReactiveObjC/ReactiveObjC-prefix.pch -------------------------------------------------------------------------------- /Pods/Target Support Files/ReactiveObjC/ReactiveObjC.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fndppx/iOS11AppStoreTransition/HEAD/Pods/Target Support Files/ReactiveObjC/ReactiveObjC.xcconfig -------------------------------------------------------------------------------- /Pods/Target Support Files/SDWebImage/SDWebImage-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fndppx/iOS11AppStoreTransition/HEAD/Pods/Target Support Files/SDWebImage/SDWebImage-dummy.m -------------------------------------------------------------------------------- /Pods/Target Support Files/SDWebImage/SDWebImage-prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fndppx/iOS11AppStoreTransition/HEAD/Pods/Target Support Files/SDWebImage/SDWebImage-prefix.pch -------------------------------------------------------------------------------- /Pods/Target Support Files/SDWebImage/SDWebImage.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fndppx/iOS11AppStoreTransition/HEAD/Pods/Target Support Files/SDWebImage/SDWebImage.xcconfig -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fndppx/iOS11AppStoreTransition/HEAD/README.md -------------------------------------------------------------------------------- /iOS11AppStoreTransition.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fndppx/iOS11AppStoreTransition/HEAD/iOS11AppStoreTransition.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /iOS11AppStoreTransition.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fndppx/iOS11AppStoreTransition/HEAD/iOS11AppStoreTransition.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /iOS11AppStoreTransition.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fndppx/iOS11AppStoreTransition/HEAD/iOS11AppStoreTransition.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /iOS11AppStoreTransition/All/AllSb.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fndppx/iOS11AppStoreTransition/HEAD/iOS11AppStoreTransition/All/AllSb.storyboard -------------------------------------------------------------------------------- /iOS11AppStoreTransition/All/QCAllViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fndppx/iOS11AppStoreTransition/HEAD/iOS11AppStoreTransition/All/QCAllViewController.h -------------------------------------------------------------------------------- /iOS11AppStoreTransition/All/QCAllViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fndppx/iOS11AppStoreTransition/HEAD/iOS11AppStoreTransition/All/QCAllViewController.m -------------------------------------------------------------------------------- /iOS11AppStoreTransition/All/QCCardTransition.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fndppx/iOS11AppStoreTransition/HEAD/iOS11AppStoreTransition/All/QCCardTransition.h -------------------------------------------------------------------------------- /iOS11AppStoreTransition/All/QCCardTransition.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fndppx/iOS11AppStoreTransition/HEAD/iOS11AppStoreTransition/All/QCCardTransition.m -------------------------------------------------------------------------------- /iOS11AppStoreTransition/All/QCCoursesDetailController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fndppx/iOS11AppStoreTransition/HEAD/iOS11AppStoreTransition/All/QCCoursesDetailController.h -------------------------------------------------------------------------------- /iOS11AppStoreTransition/All/QCCoursesDetailController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fndppx/iOS11AppStoreTransition/HEAD/iOS11AppStoreTransition/All/QCCoursesDetailController.m -------------------------------------------------------------------------------- /iOS11AppStoreTransition/All/QCTabBarController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fndppx/iOS11AppStoreTransition/HEAD/iOS11AppStoreTransition/All/QCTabBarController.h -------------------------------------------------------------------------------- /iOS11AppStoreTransition/All/QCTabBarController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fndppx/iOS11AppStoreTransition/HEAD/iOS11AppStoreTransition/All/QCTabBarController.m -------------------------------------------------------------------------------- /iOS11AppStoreTransition/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fndppx/iOS11AppStoreTransition/HEAD/iOS11AppStoreTransition/AppDelegate.h -------------------------------------------------------------------------------- /iOS11AppStoreTransition/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fndppx/iOS11AppStoreTransition/HEAD/iOS11AppStoreTransition/AppDelegate.m -------------------------------------------------------------------------------- /iOS11AppStoreTransition/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fndppx/iOS11AppStoreTransition/HEAD/iOS11AppStoreTransition/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /iOS11AppStoreTransition/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fndppx/iOS11AppStoreTransition/HEAD/iOS11AppStoreTransition/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /iOS11AppStoreTransition/Assets.xcassets/CourseList/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fndppx/iOS11AppStoreTransition/HEAD/iOS11AppStoreTransition/Assets.xcassets/CourseList/Contents.json -------------------------------------------------------------------------------- /iOS11AppStoreTransition/Assets.xcassets/CourseList/course_more.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fndppx/iOS11AppStoreTransition/HEAD/iOS11AppStoreTransition/Assets.xcassets/CourseList/course_more.imageset/Contents.json -------------------------------------------------------------------------------- /iOS11AppStoreTransition/Assets.xcassets/CourseList/course_more.imageset/more.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fndppx/iOS11AppStoreTransition/HEAD/iOS11AppStoreTransition/Assets.xcassets/CourseList/course_more.imageset/more.pdf -------------------------------------------------------------------------------- /iOS11AppStoreTransition/Assets.xcassets/CourseList/course_tag.imageset/tag.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fndppx/iOS11AppStoreTransition/HEAD/iOS11AppStoreTransition/Assets.xcassets/CourseList/course_tag.imageset/tag.pdf -------------------------------------------------------------------------------- /iOS11AppStoreTransition/Assets.xcassets/LiveProject/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fndppx/iOS11AppStoreTransition/HEAD/iOS11AppStoreTransition/Assets.xcassets/LiveProject/Contents.json -------------------------------------------------------------------------------- /iOS11AppStoreTransition/Assets.xcassets/User/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fndppx/iOS11AppStoreTransition/HEAD/iOS11AppStoreTransition/Assets.xcassets/User/Contents.json -------------------------------------------------------------------------------- /iOS11AppStoreTransition/Assets.xcassets/User/edit_clean.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fndppx/iOS11AppStoreTransition/HEAD/iOS11AppStoreTransition/Assets.xcassets/User/edit_clean.imageset/Contents.json -------------------------------------------------------------------------------- /iOS11AppStoreTransition/Assets.xcassets/User/edit_clean.imageset/clean.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fndppx/iOS11AppStoreTransition/HEAD/iOS11AppStoreTransition/Assets.xcassets/User/edit_clean.imageset/clean.pdf -------------------------------------------------------------------------------- /iOS11AppStoreTransition/Assets.xcassets/User/edit_down.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fndppx/iOS11AppStoreTransition/HEAD/iOS11AppStoreTransition/Assets.xcassets/User/edit_down.imageset/Contents.json -------------------------------------------------------------------------------- /iOS11AppStoreTransition/Assets.xcassets/User/edit_down.imageset/down.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fndppx/iOS11AppStoreTransition/HEAD/iOS11AppStoreTransition/Assets.xcassets/User/edit_down.imageset/down.pdf -------------------------------------------------------------------------------- /iOS11AppStoreTransition/Assets.xcassets/User/edit_edit.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fndppx/iOS11AppStoreTransition/HEAD/iOS11AppStoreTransition/Assets.xcassets/User/edit_edit.imageset/Contents.json -------------------------------------------------------------------------------- /iOS11AppStoreTransition/Assets.xcassets/User/edit_edit.imageset/edit.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fndppx/iOS11AppStoreTransition/HEAD/iOS11AppStoreTransition/Assets.xcassets/User/edit_edit.imageset/edit.pdf -------------------------------------------------------------------------------- /iOS11AppStoreTransition/Assets.xcassets/User/edit_next.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fndppx/iOS11AppStoreTransition/HEAD/iOS11AppStoreTransition/Assets.xcassets/User/edit_next.imageset/Contents.json -------------------------------------------------------------------------------- /iOS11AppStoreTransition/Assets.xcassets/User/edit_next.imageset/next.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fndppx/iOS11AppStoreTransition/HEAD/iOS11AppStoreTransition/Assets.xcassets/User/edit_next.imageset/next.pdf -------------------------------------------------------------------------------- /iOS11AppStoreTransition/Assets.xcassets/User/edit_photo.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fndppx/iOS11AppStoreTransition/HEAD/iOS11AppStoreTransition/Assets.xcassets/User/edit_photo.imageset/Contents.json -------------------------------------------------------------------------------- /iOS11AppStoreTransition/Assets.xcassets/User/edit_photo.imageset/camera.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fndppx/iOS11AppStoreTransition/HEAD/iOS11AppStoreTransition/Assets.xcassets/User/edit_photo.imageset/camera.pdf -------------------------------------------------------------------------------- /iOS11AppStoreTransition/Assets.xcassets/User/edit_prev.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fndppx/iOS11AppStoreTransition/HEAD/iOS11AppStoreTransition/Assets.xcassets/User/edit_prev.imageset/Contents.json -------------------------------------------------------------------------------- /iOS11AppStoreTransition/Assets.xcassets/User/edit_prev.imageset/prev.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fndppx/iOS11AppStoreTransition/HEAD/iOS11AppStoreTransition/Assets.xcassets/User/edit_prev.imageset/prev.pdf -------------------------------------------------------------------------------- /iOS11AppStoreTransition/Assets.xcassets/User/edit_wechat.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fndppx/iOS11AppStoreTransition/HEAD/iOS11AppStoreTransition/Assets.xcassets/User/edit_wechat.imageset/Contents.json -------------------------------------------------------------------------------- /iOS11AppStoreTransition/Assets.xcassets/User/edit_wechat.imageset/wechat.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fndppx/iOS11AppStoreTransition/HEAD/iOS11AppStoreTransition/Assets.xcassets/User/edit_wechat.imageset/wechat.pdf -------------------------------------------------------------------------------- /iOS11AppStoreTransition/Assets.xcassets/login/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fndppx/iOS11AppStoreTransition/HEAD/iOS11AppStoreTransition/Assets.xcassets/login/Contents.json -------------------------------------------------------------------------------- /iOS11AppStoreTransition/Assets.xcassets/login/login_Back.imageset/Back.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fndppx/iOS11AppStoreTransition/HEAD/iOS11AppStoreTransition/Assets.xcassets/login/login_Back.imageset/Back.pdf -------------------------------------------------------------------------------- /iOS11AppStoreTransition/Assets.xcassets/login/login_Back.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fndppx/iOS11AppStoreTransition/HEAD/iOS11AppStoreTransition/Assets.xcassets/login/login_Back.imageset/Contents.json -------------------------------------------------------------------------------- /iOS11AppStoreTransition/Assets.xcassets/login/login_icon_pin.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fndppx/iOS11AppStoreTransition/HEAD/iOS11AppStoreTransition/Assets.xcassets/login/login_icon_pin.imageset/Contents.json -------------------------------------------------------------------------------- /iOS11AppStoreTransition/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fndppx/iOS11AppStoreTransition/HEAD/iOS11AppStoreTransition/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /iOS11AppStoreTransition/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fndppx/iOS11AppStoreTransition/HEAD/iOS11AppStoreTransition/Info.plist -------------------------------------------------------------------------------- /iOS11AppStoreTransition/TableViewCell/QCBaseCell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fndppx/iOS11AppStoreTransition/HEAD/iOS11AppStoreTransition/TableViewCell/QCBaseCell.h -------------------------------------------------------------------------------- /iOS11AppStoreTransition/TableViewCell/QCBaseCell.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fndppx/iOS11AppStoreTransition/HEAD/iOS11AppStoreTransition/TableViewCell/QCBaseCell.m -------------------------------------------------------------------------------- /iOS11AppStoreTransition/TableViewCell/QCChoiceCourseCell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fndppx/iOS11AppStoreTransition/HEAD/iOS11AppStoreTransition/TableViewCell/QCChoiceCourseCell.h -------------------------------------------------------------------------------- /iOS11AppStoreTransition/TableViewCell/QCChoiceCourseCell.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fndppx/iOS11AppStoreTransition/HEAD/iOS11AppStoreTransition/TableViewCell/QCChoiceCourseCell.m -------------------------------------------------------------------------------- /iOS11AppStoreTransition/TableViewCell/QCChoiceCourseCell.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fndppx/iOS11AppStoreTransition/HEAD/iOS11AppStoreTransition/TableViewCell/QCChoiceCourseCell.xib -------------------------------------------------------------------------------- /iOS11AppStoreTransition/TableViewCell/QCCourseCell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fndppx/iOS11AppStoreTransition/HEAD/iOS11AppStoreTransition/TableViewCell/QCCourseCell.h -------------------------------------------------------------------------------- /iOS11AppStoreTransition/TableViewCell/QCCourseCell.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fndppx/iOS11AppStoreTransition/HEAD/iOS11AppStoreTransition/TableViewCell/QCCourseCell.m -------------------------------------------------------------------------------- /iOS11AppStoreTransition/TableViewCell/QCCourseCell.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fndppx/iOS11AppStoreTransition/HEAD/iOS11AppStoreTransition/TableViewCell/QCCourseCell.xib -------------------------------------------------------------------------------- /iOS11AppStoreTransition/TableViewCell/QCCoursesCategorySection.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fndppx/iOS11AppStoreTransition/HEAD/iOS11AppStoreTransition/TableViewCell/QCCoursesCategorySection.h -------------------------------------------------------------------------------- /iOS11AppStoreTransition/TableViewCell/QCCoursesCategorySection.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fndppx/iOS11AppStoreTransition/HEAD/iOS11AppStoreTransition/TableViewCell/QCCoursesCategorySection.m -------------------------------------------------------------------------------- /iOS11AppStoreTransition/TableViewCell/QCMoreCourseListCell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fndppx/iOS11AppStoreTransition/HEAD/iOS11AppStoreTransition/TableViewCell/QCMoreCourseListCell.h -------------------------------------------------------------------------------- /iOS11AppStoreTransition/TableViewCell/QCMoreCourseListCell.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fndppx/iOS11AppStoreTransition/HEAD/iOS11AppStoreTransition/TableViewCell/QCMoreCourseListCell.m -------------------------------------------------------------------------------- /iOS11AppStoreTransition/TableViewCell/QCMoreCourseListCell.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fndppx/iOS11AppStoreTransition/HEAD/iOS11AppStoreTransition/TableViewCell/QCMoreCourseListCell.xib -------------------------------------------------------------------------------- /iOS11AppStoreTransition/Utils/QCUIToobox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fndppx/iOS11AppStoreTransition/HEAD/iOS11AppStoreTransition/Utils/QCUIToobox.h -------------------------------------------------------------------------------- /iOS11AppStoreTransition/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fndppx/iOS11AppStoreTransition/HEAD/iOS11AppStoreTransition/main.m -------------------------------------------------------------------------------- /iOS11AppStoreTransitionTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fndppx/iOS11AppStoreTransition/HEAD/iOS11AppStoreTransitionTests/Info.plist -------------------------------------------------------------------------------- /iOS11AppStoreTransitionTests/iOS11AppStoreTransitionTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fndppx/iOS11AppStoreTransition/HEAD/iOS11AppStoreTransitionTests/iOS11AppStoreTransitionTests.m -------------------------------------------------------------------------------- /iOS11AppStoreTransitionUITests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fndppx/iOS11AppStoreTransition/HEAD/iOS11AppStoreTransitionUITests/Info.plist -------------------------------------------------------------------------------- /iOS11AppStoreTransitionUITests/iOS11AppStoreTransitionUITests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fndppx/iOS11AppStoreTransition/HEAD/iOS11AppStoreTransitionUITests/iOS11AppStoreTransitionUITests.m -------------------------------------------------------------------------------- /images/1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fndppx/iOS11AppStoreTransition/HEAD/images/1.gif -------------------------------------------------------------------------------- /images/2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fndppx/iOS11AppStoreTransition/HEAD/images/2.gif --------------------------------------------------------------------------------