├── .gitignore ├── AnimationDemo ├── AnimationDemo.xcodeproj │ ├── project.pbxproj │ └── project.xcworkspace │ │ ├── contents.xcworkspacedata │ │ └── xcshareddata │ │ └── IDEWorkspaceChecks.plist ├── AnimationDemo │ ├── AppDelegate.h │ ├── AppDelegate.m │ ├── Assets.xcassets │ │ ├── AccentColor.colorset │ │ │ └── Contents.json │ │ ├── AppIcon.appiconset │ │ │ └── Contents.json │ │ └── Contents.json │ ├── Base.lproj │ │ ├── LaunchScreen.storyboard │ │ └── Main.storyboard │ ├── Info.plist │ ├── SceneDelegate.h │ ├── SceneDelegate.m │ ├── ViewController.h │ ├── ViewController.m │ └── main.m ├── AnimationDemoTests │ └── AnimationDemoTests.m └── AnimationDemoUITests │ ├── AnimationDemoUITests.m │ └── AnimationDemoUITestsLaunchTests.m ├── BigAPP ├── BigAPP.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ ├── contents.xcworkspacedata │ │ └── xcshareddata │ │ │ └── IDEWorkspaceChecks.plist │ └── xcshareddata │ │ └── xcschemes │ │ └── BigAPP.xcscheme ├── BigAPP.xcworkspace │ ├── contents.xcworkspacedata │ └── xcshareddata │ │ └── IDEWorkspaceChecks.plist ├── BigAPP │ ├── AppDelegate.h │ ├── AppDelegate.m │ ├── Assets.xcassets │ │ ├── AppIcon.appiconset │ │ │ └── Contents.json │ │ └── Contents.json │ ├── BGView.h │ ├── BGView.m │ ├── Base.lproj │ │ ├── LaunchScreen.storyboard │ │ └── Main.storyboard │ ├── HTMLController.h │ ├── HTMLController.m │ ├── Info.plist │ ├── LCImageDownloadManager.h │ ├── LCImageDownloadManager.m │ ├── LCNetworkImageView.h │ ├── LCNetworkImageView.m │ ├── LayerController.h │ ├── LayerController.m │ ├── LoginController.h │ ├── LoginController.m │ ├── LoginController.xib │ ├── LoginViewModel.h │ ├── LoginViewModel.m │ ├── ModuleA.h │ ├── ModuleA.m │ ├── ModuleB.h │ ├── ModuleB.m │ ├── SceneDelegate.h │ ├── SceneDelegate.m │ ├── TaskController+ModuleA.h │ ├── TaskController+ModuleA.m │ ├── TaskController+ModuleB.h │ ├── TaskController+ModuleB.m │ ├── TaskController.h │ ├── TaskController.m │ ├── TaskManager.h │ ├── TaskManager.m │ ├── TaskProtocol.h │ ├── UIViewController+Logging.h │ ├── UIViewController+Logging.m │ ├── VCCell.h │ ├── VCCell.m │ ├── VCModel.h │ ├── VCModel.m │ ├── ViewController.h │ ├── ViewController.m │ ├── ZJImageManager.h │ ├── ZJImageManager.m │ ├── ZJLayer.h │ ├── ZJLayer.m │ ├── main.m │ └── 研究SD │ │ ├── SDController.h │ │ └── SDController.m ├── Podfile ├── Podfile.lock ├── Pods │ ├── Aspects │ │ ├── Aspects.h │ │ ├── Aspects.m │ │ ├── LICENSE │ │ └── README.md │ ├── BlocksKit │ │ ├── BlocksKit │ │ │ ├── BlocksKit+MessageUI.h │ │ │ ├── BlocksKit+UIKit.h │ │ │ ├── BlocksKit.h │ │ │ ├── Core │ │ │ │ ├── BKMacros.h │ │ │ │ ├── NSArray+BlocksKit.h │ │ │ │ ├── NSArray+BlocksKit.m │ │ │ │ ├── NSDictionary+BlocksKit.h │ │ │ │ ├── NSDictionary+BlocksKit.m │ │ │ │ ├── NSIndexSet+BlocksKit.h │ │ │ │ ├── NSIndexSet+BlocksKit.m │ │ │ │ ├── NSInvocation+BlocksKit.h │ │ │ │ ├── NSInvocation+BlocksKit.m │ │ │ │ ├── NSMutableArray+BlocksKit.h │ │ │ │ ├── NSMutableArray+BlocksKit.m │ │ │ │ ├── NSMutableDictionary+BlocksKit.h │ │ │ │ ├── NSMutableDictionary+BlocksKit.m │ │ │ │ ├── NSMutableIndexSet+BlocksKit.h │ │ │ │ ├── NSMutableIndexSet+BlocksKit.m │ │ │ │ ├── NSMutableOrderedSet+BlocksKit.h │ │ │ │ ├── NSMutableOrderedSet+BlocksKit.m │ │ │ │ ├── NSMutableSet+BlocksKit.h │ │ │ │ ├── NSMutableSet+BlocksKit.m │ │ │ │ ├── NSObject+BKAssociatedObjects.h │ │ │ │ ├── NSObject+BKAssociatedObjects.m │ │ │ │ ├── NSObject+BKBlockExecution.h │ │ │ │ ├── NSObject+BKBlockExecution.m │ │ │ │ ├── NSObject+BKBlockObservation.h │ │ │ │ ├── NSObject+BKBlockObservation.m │ │ │ │ ├── NSOrderedSet+BlocksKit.h │ │ │ │ ├── NSOrderedSet+BlocksKit.m │ │ │ │ ├── NSSet+BlocksKit.h │ │ │ │ ├── NSSet+BlocksKit.m │ │ │ │ ├── NSTimer+BlocksKit.h │ │ │ │ └── NSTimer+BlocksKit.m │ │ │ ├── DynamicDelegate │ │ │ │ ├── A2BlockInvocation.h │ │ │ │ ├── A2BlockInvocation.m │ │ │ │ ├── A2DynamicDelegate.h │ │ │ │ ├── A2DynamicDelegate.m │ │ │ │ ├── Foundation │ │ │ │ │ ├── NSCache+BlocksKit.h │ │ │ │ │ ├── NSCache+BlocksKit.m │ │ │ │ │ ├── NSURLConnection+BlocksKit.h │ │ │ │ │ └── NSURLConnection+BlocksKit.m │ │ │ │ ├── NSObject+A2BlockDelegate.h │ │ │ │ ├── NSObject+A2BlockDelegate.m │ │ │ │ ├── NSObject+A2DynamicDelegate.h │ │ │ │ └── NSObject+A2DynamicDelegate.m │ │ │ ├── MessageUI │ │ │ │ ├── MFMailComposeViewController+BlocksKit.h │ │ │ │ ├── MFMailComposeViewController+BlocksKit.m │ │ │ │ ├── MFMessageComposeViewController+BlocksKit.h │ │ │ │ └── MFMessageComposeViewController+BlocksKit.m │ │ │ └── UIKit │ │ │ │ ├── UIActionSheet+BlocksKit.h │ │ │ │ ├── UIActionSheet+BlocksKit.m │ │ │ │ ├── UIAlertView+BlocksKit.h │ │ │ │ ├── UIAlertView+BlocksKit.m │ │ │ │ ├── UIBarButtonItem+BlocksKit.h │ │ │ │ ├── UIBarButtonItem+BlocksKit.m │ │ │ │ ├── UIControl+BlocksKit.h │ │ │ │ ├── UIControl+BlocksKit.m │ │ │ │ ├── UIGestureRecognizer+BlocksKit.h │ │ │ │ ├── UIGestureRecognizer+BlocksKit.m │ │ │ │ ├── UIImagePickerController+BlocksKit.h │ │ │ │ ├── UIImagePickerController+BlocksKit.m │ │ │ │ ├── UIPopoverController+BlocksKit.h │ │ │ │ ├── UIPopoverController+BlocksKit.m │ │ │ │ ├── UITextField+BlocksKit.h │ │ │ │ ├── UITextField+BlocksKit.m │ │ │ │ ├── UIView+BlocksKit.h │ │ │ │ ├── UIView+BlocksKit.m │ │ │ │ ├── UIWebView+BlocksKit.h │ │ │ │ └── UIWebView+BlocksKit.m │ │ ├── LICENSE │ │ └── README.md │ ├── FDFullscreenPopGesture │ │ ├── FDFullscreenPopGesture │ │ │ ├── UINavigationController+FDFullscreenPopGesture.h │ │ │ └── UINavigationController+FDFullscreenPopGesture.m │ │ ├── LICENSE │ │ └── README.md │ ├── KMCGeigerCounter │ │ ├── KMCGeigerCounter │ │ │ ├── KMCGeigerCounter.h │ │ │ ├── KMCGeigerCounter.m │ │ │ └── KMCGeigerCounterTick.aiff │ │ ├── LICENSE │ │ └── 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 │ ├── ReactiveCocoa │ │ ├── LICENSE.md │ │ ├── README.md │ │ └── ReactiveCocoa │ │ │ ├── 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 │ │ │ ├── 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 │ │ │ ├── RACObjCRuntime.h │ │ │ ├── RACObjCRuntime.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 │ │ │ ├── ReactiveCocoa.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 │ │ │ ├── Core │ │ │ │ ├── NSButton+WebCache.h │ │ │ │ ├── NSButton+WebCache.m │ │ │ │ ├── NSData+ImageContentType.h │ │ │ │ ├── NSData+ImageContentType.m │ │ │ │ ├── NSImage+Compatibility.h │ │ │ │ ├── NSImage+Compatibility.m │ │ │ │ ├── SDAnimatedImage.h │ │ │ │ ├── SDAnimatedImage.m │ │ │ │ ├── SDAnimatedImagePlayer.h │ │ │ │ ├── SDAnimatedImagePlayer.m │ │ │ │ ├── SDAnimatedImageRep.h │ │ │ │ ├── SDAnimatedImageRep.m │ │ │ │ ├── SDAnimatedImageView+WebCache.h │ │ │ │ ├── SDAnimatedImageView+WebCache.m │ │ │ │ ├── SDAnimatedImageView.h │ │ │ │ ├── SDAnimatedImageView.m │ │ │ │ ├── SDDiskCache.h │ │ │ │ ├── SDDiskCache.m │ │ │ │ ├── SDGraphicsImageRenderer.h │ │ │ │ ├── SDGraphicsImageRenderer.m │ │ │ │ ├── SDImageAPNGCoder.h │ │ │ │ ├── SDImageAPNGCoder.m │ │ │ │ ├── SDImageAWebPCoder.h │ │ │ │ ├── SDImageAWebPCoder.m │ │ │ │ ├── SDImageCache.h │ │ │ │ ├── SDImageCache.m │ │ │ │ ├── SDImageCacheConfig.h │ │ │ │ ├── SDImageCacheConfig.m │ │ │ │ ├── SDImageCacheDefine.h │ │ │ │ ├── SDImageCacheDefine.m │ │ │ │ ├── SDImageCachesManager.h │ │ │ │ ├── SDImageCachesManager.m │ │ │ │ ├── SDImageCoder.h │ │ │ │ ├── SDImageCoder.m │ │ │ │ ├── SDImageCoderHelper.h │ │ │ │ ├── SDImageCoderHelper.m │ │ │ │ ├── SDImageCodersManager.h │ │ │ │ ├── SDImageCodersManager.m │ │ │ │ ├── SDImageFrame.h │ │ │ │ ├── SDImageFrame.m │ │ │ │ ├── SDImageGIFCoder.h │ │ │ │ ├── SDImageGIFCoder.m │ │ │ │ ├── SDImageGraphics.h │ │ │ │ ├── SDImageGraphics.m │ │ │ │ ├── SDImageHEICCoder.h │ │ │ │ ├── SDImageHEICCoder.m │ │ │ │ ├── SDImageIOAnimatedCoder.h │ │ │ │ ├── SDImageIOAnimatedCoder.m │ │ │ │ ├── SDImageIOCoder.h │ │ │ │ ├── SDImageIOCoder.m │ │ │ │ ├── SDImageLoader.h │ │ │ │ ├── SDImageLoader.m │ │ │ │ ├── SDImageLoadersManager.h │ │ │ │ ├── SDImageLoadersManager.m │ │ │ │ ├── SDImageTransformer.h │ │ │ │ ├── SDImageTransformer.m │ │ │ │ ├── SDMemoryCache.h │ │ │ │ ├── SDMemoryCache.m │ │ │ │ ├── SDWebImageCacheKeyFilter.h │ │ │ │ ├── SDWebImageCacheKeyFilter.m │ │ │ │ ├── SDWebImageCacheSerializer.h │ │ │ │ ├── SDWebImageCacheSerializer.m │ │ │ │ ├── SDWebImageCompat.h │ │ │ │ ├── SDWebImageCompat.m │ │ │ │ ├── SDWebImageDefine.h │ │ │ │ ├── SDWebImageDefine.m │ │ │ │ ├── SDWebImageDownloader.h │ │ │ │ ├── SDWebImageDownloader.m │ │ │ │ ├── SDWebImageDownloaderConfig.h │ │ │ │ ├── SDWebImageDownloaderConfig.m │ │ │ │ ├── SDWebImageDownloaderDecryptor.h │ │ │ │ ├── SDWebImageDownloaderDecryptor.m │ │ │ │ ├── SDWebImageDownloaderOperation.h │ │ │ │ ├── SDWebImageDownloaderOperation.m │ │ │ │ ├── SDWebImageDownloaderRequestModifier.h │ │ │ │ ├── SDWebImageDownloaderRequestModifier.m │ │ │ │ ├── SDWebImageDownloaderResponseModifier.h │ │ │ │ ├── SDWebImageDownloaderResponseModifier.m │ │ │ │ ├── SDWebImageError.h │ │ │ │ ├── SDWebImageError.m │ │ │ │ ├── SDWebImageIndicator.h │ │ │ │ ├── SDWebImageIndicator.m │ │ │ │ ├── SDWebImageManager.h │ │ │ │ ├── SDWebImageManager.m │ │ │ │ ├── SDWebImageOperation.h │ │ │ │ ├── SDWebImageOperation.m │ │ │ │ ├── SDWebImageOptionsProcessor.h │ │ │ │ ├── SDWebImageOptionsProcessor.m │ │ │ │ ├── SDWebImagePrefetcher.h │ │ │ │ ├── SDWebImagePrefetcher.m │ │ │ │ ├── SDWebImageTransition.h │ │ │ │ ├── SDWebImageTransition.m │ │ │ │ ├── UIButton+WebCache.h │ │ │ │ ├── UIButton+WebCache.m │ │ │ │ ├── UIImage+ExtendedCacheData.h │ │ │ │ ├── UIImage+ExtendedCacheData.m │ │ │ │ ├── UIImage+ForceDecode.h │ │ │ │ ├── UIImage+ForceDecode.m │ │ │ │ ├── UIImage+GIF.h │ │ │ │ ├── UIImage+GIF.m │ │ │ │ ├── UIImage+MemoryCacheCost.h │ │ │ │ ├── UIImage+MemoryCacheCost.m │ │ │ │ ├── UIImage+Metadata.h │ │ │ │ ├── UIImage+Metadata.m │ │ │ │ ├── UIImage+MultiFormat.h │ │ │ │ ├── UIImage+MultiFormat.m │ │ │ │ ├── UIImage+Transform.h │ │ │ │ ├── UIImage+Transform.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 │ │ │ └── Private │ │ │ │ ├── NSBezierPath+SDRoundedCorners.h │ │ │ │ ├── NSBezierPath+SDRoundedCorners.m │ │ │ │ ├── SDAssociatedObject.h │ │ │ │ ├── SDAssociatedObject.m │ │ │ │ ├── SDAsyncBlockOperation.h │ │ │ │ ├── SDAsyncBlockOperation.m │ │ │ │ ├── SDDeviceHelper.h │ │ │ │ ├── SDDeviceHelper.m │ │ │ │ ├── SDDisplayLink.h │ │ │ │ ├── SDDisplayLink.m │ │ │ │ ├── SDFileAttributeHelper.h │ │ │ │ ├── SDFileAttributeHelper.m │ │ │ │ ├── SDImageAssetManager.h │ │ │ │ ├── SDImageAssetManager.m │ │ │ │ ├── SDImageCachesManagerOperation.h │ │ │ │ ├── SDImageCachesManagerOperation.m │ │ │ │ ├── SDImageIOAnimatedCoderInternal.h │ │ │ │ ├── SDInternalMacros.h │ │ │ │ ├── SDInternalMacros.m │ │ │ │ ├── SDWeakProxy.h │ │ │ │ ├── SDWeakProxy.m │ │ │ │ ├── SDWebImageTransitionInternal.h │ │ │ │ ├── SDmetamacros.h │ │ │ │ ├── UIColor+SDHexString.h │ │ │ │ └── UIColor+SDHexString.m │ │ └── WebImage │ │ │ └── SDWebImage.h │ ├── SVProgressHUD │ │ ├── LICENSE │ │ ├── README.md │ │ └── SVProgressHUD │ │ │ ├── SVIndefiniteAnimatedView.h │ │ │ ├── SVIndefiniteAnimatedView.m │ │ │ ├── SVProgressAnimatedView.h │ │ │ ├── SVProgressAnimatedView.m │ │ │ ├── SVProgressHUD.bundle │ │ │ ├── angle-mask.png │ │ │ ├── angle-mask@2x.png │ │ │ ├── angle-mask@3x.png │ │ │ ├── error.png │ │ │ ├── error@2x.png │ │ │ ├── error@3x.png │ │ │ ├── info.png │ │ │ ├── info@2x.png │ │ │ ├── info@3x.png │ │ │ ├── success.png │ │ │ ├── success@2x.png │ │ │ └── success@3x.png │ │ │ ├── SVProgressHUD.h │ │ │ ├── SVProgressHUD.m │ │ │ ├── SVRadialGradientLayer.h │ │ │ └── SVRadialGradientLayer.m │ ├── Target Support Files │ │ ├── Aspects │ │ │ ├── Aspects-Info.plist │ │ │ ├── Aspects-dummy.m │ │ │ ├── Aspects-prefix.pch │ │ │ ├── Aspects-umbrella.h │ │ │ ├── Aspects.debug.xcconfig │ │ │ ├── Aspects.modulemap │ │ │ ├── Aspects.release.xcconfig │ │ │ ├── Aspects.xcconfig │ │ │ └── Info.plist │ │ ├── BlocksKit │ │ │ ├── BlocksKit-Info.plist │ │ │ ├── BlocksKit-dummy.m │ │ │ ├── BlocksKit-prefix.pch │ │ │ ├── BlocksKit-umbrella.h │ │ │ ├── BlocksKit.debug.xcconfig │ │ │ ├── BlocksKit.modulemap │ │ │ ├── BlocksKit.release.xcconfig │ │ │ ├── BlocksKit.xcconfig │ │ │ └── Info.plist │ │ ├── FDFullscreenPopGesture │ │ │ ├── FDFullscreenPopGesture-Info.plist │ │ │ ├── FDFullscreenPopGesture-dummy.m │ │ │ ├── FDFullscreenPopGesture-prefix.pch │ │ │ ├── FDFullscreenPopGesture-umbrella.h │ │ │ ├── FDFullscreenPopGesture.debug.xcconfig │ │ │ ├── FDFullscreenPopGesture.modulemap │ │ │ ├── FDFullscreenPopGesture.release.xcconfig │ │ │ ├── FDFullscreenPopGesture.xcconfig │ │ │ └── Info.plist │ │ ├── KMCGeigerCounter │ │ │ ├── Info.plist │ │ │ ├── KMCGeigerCounter-Info.plist │ │ │ ├── KMCGeigerCounter-dummy.m │ │ │ ├── KMCGeigerCounter-prefix.pch │ │ │ ├── KMCGeigerCounter-umbrella.h │ │ │ ├── KMCGeigerCounter.debug.xcconfig │ │ │ ├── KMCGeigerCounter.modulemap │ │ │ ├── KMCGeigerCounter.release.xcconfig │ │ │ └── KMCGeigerCounter.xcconfig │ │ ├── Masonry │ │ │ ├── Info.plist │ │ │ ├── Masonry-Info.plist │ │ │ ├── Masonry-dummy.m │ │ │ ├── Masonry-prefix.pch │ │ │ ├── Masonry-umbrella.h │ │ │ ├── Masonry.debug.xcconfig │ │ │ ├── Masonry.modulemap │ │ │ ├── Masonry.release.xcconfig │ │ │ └── Masonry.xcconfig │ │ ├── Pods-BigAPP │ │ │ ├── Info.plist │ │ │ ├── Pods-BigAPP-Info.plist │ │ │ ├── Pods-BigAPP-acknowledgements.markdown │ │ │ ├── Pods-BigAPP-acknowledgements.plist │ │ │ ├── Pods-BigAPP-dummy.m │ │ │ ├── Pods-BigAPP-frameworks-Debug-input-files.xcfilelist │ │ │ ├── Pods-BigAPP-frameworks-Debug-output-files.xcfilelist │ │ │ ├── Pods-BigAPP-frameworks-Release-input-files.xcfilelist │ │ │ ├── Pods-BigAPP-frameworks-Release-output-files.xcfilelist │ │ │ ├── Pods-BigAPP-frameworks.sh │ │ │ ├── Pods-BigAPP-resources.sh │ │ │ ├── Pods-BigAPP-umbrella.h │ │ │ ├── Pods-BigAPP.debug.xcconfig │ │ │ ├── Pods-BigAPP.modulemap │ │ │ └── Pods-BigAPP.release.xcconfig │ │ ├── ReactiveCocoa │ │ │ ├── Info.plist │ │ │ ├── ReactiveCocoa-Info.plist │ │ │ ├── ReactiveCocoa-dummy.m │ │ │ ├── ReactiveCocoa-prefix.pch │ │ │ ├── ReactiveCocoa-umbrella.h │ │ │ ├── ReactiveCocoa.debug.xcconfig │ │ │ ├── ReactiveCocoa.modulemap │ │ │ ├── ReactiveCocoa.release.xcconfig │ │ │ └── ReactiveCocoa.xcconfig │ │ ├── SDWebImage │ │ │ ├── SDWebImage-Info.plist │ │ │ ├── SDWebImage-dummy.m │ │ │ ├── SDWebImage-prefix.pch │ │ │ ├── SDWebImage-umbrella.h │ │ │ ├── SDWebImage.debug.xcconfig │ │ │ ├── SDWebImage.modulemap │ │ │ └── SDWebImage.release.xcconfig │ │ ├── SVProgressHUD │ │ │ ├── Info.plist │ │ │ ├── SVProgressHUD-Info.plist │ │ │ ├── SVProgressHUD-dummy.m │ │ │ ├── SVProgressHUD-prefix.pch │ │ │ ├── SVProgressHUD-umbrella.h │ │ │ ├── SVProgressHUD.debug.xcconfig │ │ │ ├── SVProgressHUD.modulemap │ │ │ ├── SVProgressHUD.release.xcconfig │ │ │ └── SVProgressHUD.xcconfig │ │ └── Toast │ │ │ ├── Info.plist │ │ │ ├── Toast-Info.plist │ │ │ ├── Toast-dummy.m │ │ │ ├── Toast-prefix.pch │ │ │ ├── Toast-umbrella.h │ │ │ ├── Toast.debug.xcconfig │ │ │ ├── Toast.modulemap │ │ │ ├── Toast.release.xcconfig │ │ │ └── Toast.xcconfig │ └── Toast │ │ ├── README.md │ │ ├── Toast-Framework │ │ └── Toast.h │ │ ├── Toast │ │ ├── UIView+Toast.h │ │ └── UIView+Toast.m │ │ └── license ├── Swift │ ├── BigAPP-Bridging-Header.h │ ├── FriendModel.swift │ └── FriendsController.swift ├── ThirdPart │ ├── AFNetworking │ │ ├── AFNetworking │ │ │ ├── AFCompatibilityMacros.h │ │ │ ├── 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 │ │ ├── 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 │ └── SDWebImage │ │ ├── README.md │ │ ├── SDWebImage │ │ ├── Core │ │ │ ├── Cache │ │ │ │ ├── SDDiskCache.h │ │ │ │ ├── SDDiskCache.m │ │ │ │ ├── SDImageCache.h │ │ │ │ ├── SDImageCache.m │ │ │ │ ├── SDImageCacheConfig.h │ │ │ │ ├── SDImageCacheConfig.m │ │ │ │ ├── SDImageCacheDefine.h │ │ │ │ ├── SDImageCacheDefine.m │ │ │ │ ├── SDImageCachesManager.h │ │ │ │ ├── SDImageCachesManager.m │ │ │ │ ├── SDMemoryCache.h │ │ │ │ └── SDMemoryCache.m │ │ │ ├── Coder │ │ │ │ ├── SDImageAPNGCoder.h │ │ │ │ ├── SDImageAPNGCoder.m │ │ │ │ ├── SDImageCoder.h │ │ │ │ ├── SDImageCoder.m │ │ │ │ ├── SDImageCoderHelper.h │ │ │ │ ├── SDImageCoderHelper.m │ │ │ │ ├── SDImageCodersManager.h │ │ │ │ ├── SDImageCodersManager.m │ │ │ │ ├── SDImageFrame.h │ │ │ │ ├── SDImageFrame.m │ │ │ │ ├── SDImageGIFCoder.h │ │ │ │ ├── SDImageGIFCoder.m │ │ │ │ ├── SDImageHEICCoder.h │ │ │ │ ├── SDImageHEICCoder.m │ │ │ │ ├── SDImageIOAnimatedCoder.h │ │ │ │ ├── SDImageIOAnimatedCoder.m │ │ │ │ ├── SDImageIOCoder.h │ │ │ │ └── SDImageIOCoder.m │ │ │ ├── Downloader │ │ │ │ ├── SDImageLoader.h │ │ │ │ ├── SDImageLoader.m │ │ │ │ ├── SDImageLoadersManager.h │ │ │ │ ├── SDImageLoadersManager.m │ │ │ │ ├── SDWebImageDownloader.h │ │ │ │ ├── SDWebImageDownloader.m │ │ │ │ ├── SDWebImageDownloaderConfig.h │ │ │ │ ├── SDWebImageDownloaderConfig.m │ │ │ │ ├── SDWebImageDownloaderDecryptor.h │ │ │ │ ├── SDWebImageDownloaderDecryptor.m │ │ │ │ ├── SDWebImageDownloaderOperation.h │ │ │ │ ├── SDWebImageDownloaderOperation.m │ │ │ │ ├── SDWebImageDownloaderRequestModifier.h │ │ │ │ ├── SDWebImageDownloaderRequestModifier.m │ │ │ │ ├── SDWebImageDownloaderResponseModifier.h │ │ │ │ └── SDWebImageDownloaderResponseModifier.m │ │ │ ├── NSButton+WebCache.h │ │ │ ├── NSButton+WebCache.m │ │ │ ├── NSData+ImageContentType.h │ │ │ ├── NSData+ImageContentType.m │ │ │ ├── NSImage+Compatibility.h │ │ │ ├── NSImage+Compatibility.m │ │ │ ├── SDAnimatedImage.h │ │ │ ├── SDAnimatedImage.m │ │ │ ├── SDAnimatedImagePlayer.h │ │ │ ├── SDAnimatedImagePlayer.m │ │ │ ├── SDAnimatedImageRep.h │ │ │ ├── SDAnimatedImageRep.m │ │ │ ├── SDAnimatedImageView+WebCache.h │ │ │ ├── SDAnimatedImageView+WebCache.m │ │ │ ├── SDAnimatedImageView.h │ │ │ ├── SDAnimatedImageView.m │ │ │ ├── SDGraphicsImageRenderer.h │ │ │ ├── SDGraphicsImageRenderer.m │ │ │ ├── SDImageGraphics.h │ │ │ ├── SDImageGraphics.m │ │ │ ├── SDImageTransformer.h │ │ │ ├── SDImageTransformer.m │ │ │ ├── SDWebImageCacheKeyFilter.h │ │ │ ├── SDWebImageCacheKeyFilter.m │ │ │ ├── SDWebImageCacheSerializer.h │ │ │ ├── SDWebImageCacheSerializer.m │ │ │ ├── SDWebImageCompat.h │ │ │ ├── SDWebImageCompat.m │ │ │ ├── SDWebImageDefine.h │ │ │ ├── SDWebImageDefine.m │ │ │ ├── SDWebImageError.h │ │ │ ├── SDWebImageError.m │ │ │ ├── SDWebImageIndicator.h │ │ │ ├── SDWebImageIndicator.m │ │ │ ├── SDWebImageManager.h │ │ │ ├── SDWebImageManager.m │ │ │ ├── SDWebImageOperation.h │ │ │ ├── SDWebImageOperation.m │ │ │ ├── SDWebImageOptionsProcessor.h │ │ │ ├── SDWebImageOptionsProcessor.m │ │ │ ├── SDWebImagePrefetcher.h │ │ │ ├── SDWebImagePrefetcher.m │ │ │ ├── SDWebImageTransition.h │ │ │ ├── SDWebImageTransition.m │ │ │ ├── UIButton+WebCache.h │ │ │ ├── UIButton+WebCache.m │ │ │ ├── UIImage+ExtendedCacheData.h │ │ │ ├── UIImage+ExtendedCacheData.m │ │ │ ├── UIImage+ForceDecode.h │ │ │ ├── UIImage+ForceDecode.m │ │ │ ├── UIImage+GIF.h │ │ │ ├── UIImage+GIF.m │ │ │ ├── UIImage+MemoryCacheCost.h │ │ │ ├── UIImage+MemoryCacheCost.m │ │ │ ├── UIImage+Metadata.h │ │ │ ├── UIImage+Metadata.m │ │ │ ├── UIImage+MultiFormat.h │ │ │ ├── UIImage+MultiFormat.m │ │ │ ├── UIImage+Transform.h │ │ │ ├── UIImage+Transform.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 │ │ └── Private │ │ │ ├── NSBezierPath+SDRoundedCorners.h │ │ │ ├── NSBezierPath+SDRoundedCorners.m │ │ │ ├── SDAssociatedObject.h │ │ │ ├── SDAssociatedObject.m │ │ │ ├── SDAsyncBlockOperation.h │ │ │ ├── SDAsyncBlockOperation.m │ │ │ ├── SDDeviceHelper.h │ │ │ ├── SDDeviceHelper.m │ │ │ ├── SDDisplayLink.h │ │ │ ├── SDDisplayLink.m │ │ │ ├── SDFileAttributeHelper.h │ │ │ ├── SDFileAttributeHelper.m │ │ │ ├── SDImageAssetManager.h │ │ │ ├── SDImageAssetManager.m │ │ │ ├── SDImageCachesManagerOperation.h │ │ │ ├── SDImageCachesManagerOperation.m │ │ │ ├── SDImageHEICCoderInternal.h │ │ │ ├── SDImageIOAnimatedCoderInternal.h │ │ │ ├── SDInternalMacros.h │ │ │ ├── SDInternalMacros.m │ │ │ ├── SDWeakProxy.h │ │ │ ├── SDWeakProxy.m │ │ │ ├── SDWebImageTransitionInternal.h │ │ │ ├── SDmetamacros.h │ │ │ ├── UIColor+SDHexString.h │ │ │ └── UIColor+SDHexString.m │ │ └── WebImage │ │ └── SDWebImage.h └── test.jpg ├── Calculator ├── Calculator.xcodeproj │ ├── project.pbxproj │ └── project.xcworkspace │ │ ├── contents.xcworkspacedata │ │ └── xcshareddata │ │ └── IDEWorkspaceChecks.plist └── Calculator │ ├── Add │ ├── AddFactory.h │ ├── AddFactory.m │ ├── AddOperation.h │ └── AddOperation.m │ ├── AppDelegate.h │ ├── AppDelegate.m │ ├── Assets.xcassets │ ├── AppIcon.appiconset │ │ └── Contents.json │ └── Contents.json │ ├── Base.lproj │ ├── LaunchScreen.storyboard │ └── Main.storyboard │ ├── Factory.h │ ├── Factory.m │ ├── Info.plist │ ├── Operation.h │ ├── Operation.m │ ├── SceneDelegate.h │ ├── SceneDelegate.m │ ├── Sub │ ├── SubFactory.h │ ├── SubFactory.m │ ├── SubOperation.h │ └── SubOperation.m │ ├── ViewController.h │ ├── ViewController.m │ └── main.m ├── CallPhoneDemo ├── CallPhoneDemo.xcodeproj │ ├── project.pbxproj │ └── project.xcworkspace │ │ ├── contents.xcworkspacedata │ │ └── xcshareddata │ │ └── IDEWorkspaceChecks.plist └── CallPhoneDemo │ ├── AppDelegate.h │ ├── AppDelegate.m │ ├── Assets.xcassets │ ├── AppIcon.appiconset │ │ └── Contents.json │ └── Contents.json │ ├── Base.lproj │ ├── LaunchScreen.storyboard │ └── Main.storyboard │ ├── Info.plist │ ├── ViewController.h │ ├── ViewController.m │ └── main.m ├── CircleDemo ├── CircleDemo.xcodeproj │ ├── project.pbxproj │ └── project.xcworkspace │ │ ├── contents.xcworkspacedata │ │ └── xcshareddata │ │ └── IDEWorkspaceChecks.plist └── CircleDemo │ ├── AppDelegate.swift │ ├── Assets.xcassets │ ├── AppIcon.appiconset │ │ └── Contents.json │ ├── Contents.json │ ├── lotus0.imageset │ │ ├── Contents.json │ │ └── lotus.jpeg │ ├── lotus1.imageset │ │ ├── Contents.json │ │ └── timg1.jpg │ ├── lotus2.imageset │ │ ├── Contents.json │ │ └── timg4.jpg │ └── lotus3.imageset │ │ ├── Contents.json │ │ └── timg3.jpg │ ├── Base.lproj │ ├── LaunchScreen.storyboard │ └── Main.storyboard │ ├── HeadFile.swift │ ├── Info.plist │ ├── UIView+.swift │ ├── ViewController.swift │ └── ZJCircleView.swift ├── CircularDemo ├── CircularDemo.xcodeproj │ ├── project.pbxproj │ └── project.xcworkspace │ │ ├── contents.xcworkspacedata │ │ └── xcshareddata │ │ └── IDEWorkspaceChecks.plist └── CircularDemo │ ├── AppDelegate.h │ ├── AppDelegate.m │ ├── Assets.xcassets │ ├── AppIcon.appiconset │ │ └── Contents.json │ └── Contents.json │ ├── Base.lproj │ ├── LaunchScreen.storyboard │ └── Main.storyboard │ ├── DetailController.h │ ├── DetailController.m │ ├── Info.plist │ ├── ViewController.h │ ├── ViewController.m │ ├── ZJHttpManager.h │ ├── ZJHttpManager.m │ └── main.m ├── GCD └── GCD_Demo │ ├── GCD_Demo.xcodeproj │ ├── project.pbxproj │ └── project.xcworkspace │ │ ├── contents.xcworkspacedata │ │ └── xcshareddata │ │ └── IDEWorkspaceChecks.plist │ └── GCD_Demo │ ├── AppDelegate.h │ ├── AppDelegate.m │ ├── Assets.xcassets │ ├── AppIcon.appiconset │ │ └── Contents.json │ └── Contents.json │ ├── Base.lproj │ ├── LaunchScreen.storyboard │ └── Main.storyboard │ ├── Info.plist │ ├── TextController.cpp │ ├── TextController.h │ ├── TextController.m │ ├── ViewController.h │ ├── ViewController.m │ ├── main.cpp │ └── main.m ├── GPUImage ├── CResources │ ├── 2222.mp4 │ ├── 2233.mp4 │ ├── WID-small.jpg │ └── 驾校视频.MOV ├── GPUImage-01 │ └── LearnGPUImage │ │ ├── LearnGPUImage.xcodeproj │ │ ├── project.pbxproj │ │ └── project.xcworkspace │ │ │ ├── contents.xcworkspacedata │ │ │ └── xcshareddata │ │ │ └── IDEWorkspaceChecks.plist │ │ └── LearnGPUImage │ │ ├── AppDelegate.h │ │ ├── AppDelegate.m │ │ ├── Assets.xcassets │ │ ├── AppIcon.appiconset │ │ │ └── Contents.json │ │ └── Contents.json │ │ ├── Base.lproj │ │ ├── LaunchScreen.storyboard │ │ └── Main.storyboard │ │ ├── Info.plist │ │ ├── ViewController.h │ │ ├── ViewController.m │ │ ├── ZJDisplayCropFilter.h │ │ ├── ZJDisplayCropFilter.m │ │ └── main.m ├── GPUImage-02 │ └── LearnGPUImage │ │ ├── LearnGPUImage.xcodeproj │ │ ├── project.pbxproj │ │ └── project.xcworkspace │ │ │ ├── contents.xcworkspacedata │ │ │ └── xcshareddata │ │ │ └── IDEWorkspaceChecks.plist │ │ └── LearnGPUImage │ │ ├── AppDelegate.h │ │ ├── AppDelegate.m │ │ ├── Assets.xcassets │ │ ├── AppIcon.appiconset │ │ │ └── Contents.json │ │ └── Contents.json │ │ ├── Base.lproj │ │ ├── LaunchScreen.storyboard │ │ └── Main.storyboard │ │ ├── Info.plist │ │ ├── ViewController.h │ │ ├── ViewController.m │ │ ├── ZJDisplayCropFilter.h │ │ ├── ZJDisplayCropFilter.m │ │ └── main.m ├── GPUImage-03 │ └── LearnGPUImage │ │ ├── LearnGPUImage.xcodeproj │ │ ├── project.pbxproj │ │ └── project.xcworkspace │ │ │ ├── contents.xcworkspacedata │ │ │ └── xcshareddata │ │ │ └── IDEWorkspaceChecks.plist │ │ └── LearnGPUImage │ │ ├── AppDelegate.h │ │ ├── AppDelegate.m │ │ ├── Assets.xcassets │ │ ├── AppIcon.appiconset │ │ │ └── Contents.json │ │ └── Contents.json │ │ ├── Base.lproj │ │ ├── LaunchScreen.storyboard │ │ └── Main.storyboard │ │ ├── Info.plist │ │ ├── OperationProportionView.h │ │ ├── OperationProportionView.m │ │ ├── UIControl+ZJBlocksKit.h │ │ ├── UIControl+ZJBlocksKit.m │ │ ├── UIView+Frame.h │ │ ├── UIView+Frame.m │ │ ├── ViewController.h │ │ ├── ViewController.m │ │ ├── ZJDisplayCropFilter.h │ │ ├── ZJDisplayCropFilter.m │ │ └── main.m ├── GPUImage-04 │ └── LearnGPUImage │ │ ├── LearnGPUImage.xcodeproj │ │ ├── project.pbxproj │ │ └── project.xcworkspace │ │ │ ├── contents.xcworkspacedata │ │ │ └── xcshareddata │ │ │ └── IDEWorkspaceChecks.plist │ │ └── LearnGPUImage │ │ ├── AppDelegate.h │ │ ├── AppDelegate.m │ │ ├── Assets.xcassets │ │ ├── AppIcon.appiconset │ │ │ └── Contents.json │ │ └── Contents.json │ │ ├── Base.lproj │ │ ├── LaunchScreen.storyboard │ │ └── Main.storyboard │ │ ├── Info.plist │ │ ├── LYMultiTextureFilter.h │ │ ├── LYMultiTextureFilter.m │ │ ├── ViewController.h │ │ ├── ViewController.m │ │ ├── ZJDisplayCropFilter.h │ │ ├── ZJDisplayCropFilter.m │ │ └── main.m ├── GPUImage-05 │ └── LearnGPUImage │ │ ├── LearnGPUImage.xcodeproj │ │ ├── project.pbxproj │ │ └── project.xcworkspace │ │ │ ├── contents.xcworkspacedata │ │ │ └── xcshareddata │ │ │ └── IDEWorkspaceChecks.plist │ │ └── LearnGPUImage │ │ ├── AppDelegate.h │ │ ├── AppDelegate.m │ │ ├── Assets.xcassets │ │ ├── AppIcon.appiconset │ │ │ └── Contents.json │ │ └── Contents.json │ │ ├── Base.lproj │ │ ├── LaunchScreen.storyboard │ │ └── Main.storyboard │ │ ├── Camera.h │ │ ├── Camera.m │ │ ├── CameraViewController.h │ │ ├── CameraViewController.m │ │ ├── Info.plist │ │ ├── LYMultiTextureFilter.h │ │ ├── LYMultiTextureFilter.m │ │ ├── ViewController.h │ │ ├── ViewController.m │ │ ├── ZJDisplayCropFilter.h │ │ ├── ZJDisplayCropFilter.m │ │ └── main.m └── framework │ ├── GPUImage.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ ├── contents.xcworkspacedata │ │ └── xcshareddata │ │ │ └── IDEWorkspaceChecks.plist │ └── xcshareddata │ │ └── xcschemes │ │ ├── Documentation.xcscheme │ │ ├── GPUImage.xcscheme │ │ └── GPUImageFramework.xcscheme │ └── Source │ ├── GLProgram.h │ ├── GLProgram.m │ ├── GPUImage.h │ ├── GPUImage3x3ConvolutionFilter.h │ ├── GPUImage3x3ConvolutionFilter.m │ ├── GPUImage3x3TextureSamplingFilter.h │ ├── GPUImage3x3TextureSamplingFilter.m │ ├── GPUImageAdaptiveThresholdFilter.h │ ├── GPUImageAdaptiveThresholdFilter.m │ ├── GPUImageAddBlendFilter.h │ ├── GPUImageAddBlendFilter.m │ ├── GPUImageAlphaBlendFilter.h │ ├── GPUImageAlphaBlendFilter.m │ ├── GPUImageAmatorkaFilter.h │ ├── GPUImageAmatorkaFilter.m │ ├── GPUImageAverageColor.h │ ├── GPUImageAverageColor.m │ ├── GPUImageAverageLuminanceThresholdFilter.h │ ├── GPUImageAverageLuminanceThresholdFilter.m │ ├── GPUImageBilateralFilter.h │ ├── GPUImageBilateralFilter.m │ ├── GPUImageBoxBlurFilter.h │ ├── GPUImageBoxBlurFilter.m │ ├── GPUImageBrightnessFilter.h │ ├── GPUImageBrightnessFilter.m │ ├── GPUImageBuffer.h │ ├── GPUImageBuffer.m │ ├── GPUImageBulgeDistortionFilter.h │ ├── GPUImageBulgeDistortionFilter.m │ ├── GPUImageCGAColorspaceFilter.h │ ├── GPUImageCGAColorspaceFilter.m │ ├── GPUImageCannyEdgeDetectionFilter.h │ ├── GPUImageCannyEdgeDetectionFilter.m │ ├── GPUImageChromaKeyBlendFilter.h │ ├── GPUImageChromaKeyBlendFilter.m │ ├── GPUImageChromaKeyFilter.h │ ├── GPUImageChromaKeyFilter.m │ ├── GPUImageClosingFilter.h │ ├── GPUImageClosingFilter.m │ ├── GPUImageColorBlendFilter.h │ ├── GPUImageColorBlendFilter.m │ ├── GPUImageColorBurnBlendFilter.h │ ├── GPUImageColorBurnBlendFilter.m │ ├── GPUImageColorConversion.h │ ├── GPUImageColorConversion.m │ ├── GPUImageColorDodgeBlendFilter.h │ ├── GPUImageColorDodgeBlendFilter.m │ ├── GPUImageColorInvertFilter.h │ ├── GPUImageColorInvertFilter.m │ ├── GPUImageColorLocalBinaryPatternFilter.h │ ├── GPUImageColorLocalBinaryPatternFilter.m │ ├── GPUImageColorMatrixFilter.h │ ├── GPUImageColorMatrixFilter.m │ ├── GPUImageColorPackingFilter.h │ ├── GPUImageColorPackingFilter.m │ ├── GPUImageColourFASTFeatureDetector.h │ ├── GPUImageColourFASTFeatureDetector.m │ ├── GPUImageColourFASTSamplingOperation.h │ ├── GPUImageColourFASTSamplingOperation.m │ ├── GPUImageContrastFilter.h │ ├── GPUImageContrastFilter.m │ ├── GPUImageCropFilter.h │ ├── GPUImageCropFilter.m │ ├── GPUImageCrosshairGenerator.h │ ├── GPUImageCrosshairGenerator.m │ ├── GPUImageCrosshatchFilter.h │ ├── GPUImageCrosshatchFilter.m │ ├── GPUImageDarkenBlendFilter.h │ ├── GPUImageDarkenBlendFilter.m │ ├── GPUImageDifferenceBlendFilter.h │ ├── GPUImageDifferenceBlendFilter.m │ ├── GPUImageDilationFilter.h │ ├── GPUImageDilationFilter.m │ ├── GPUImageDirectionalNonMaximumSuppressionFilter.h │ ├── GPUImageDirectionalNonMaximumSuppressionFilter.m │ ├── GPUImageDirectionalSobelEdgeDetectionFilter.h │ ├── GPUImageDirectionalSobelEdgeDetectionFilter.m │ ├── GPUImageDissolveBlendFilter.h │ ├── GPUImageDissolveBlendFilter.m │ ├── GPUImageDivideBlendFilter.h │ ├── GPUImageDivideBlendFilter.m │ ├── GPUImageEmbossFilter.h │ ├── GPUImageEmbossFilter.m │ ├── GPUImageErosionFilter.h │ ├── GPUImageErosionFilter.m │ ├── GPUImageExclusionBlendFilter.h │ ├── GPUImageExclusionBlendFilter.m │ ├── GPUImageExposureFilter.h │ ├── GPUImageExposureFilter.m │ ├── GPUImageFASTCornerDetectionFilter.h │ ├── GPUImageFASTCornerDetectionFilter.m │ ├── GPUImageFalseColorFilter.h │ ├── GPUImageFalseColorFilter.m │ ├── GPUImageFilter.h │ ├── GPUImageFilter.m │ ├── GPUImageFilterGroup.h │ ├── GPUImageFilterGroup.m │ ├── GPUImageFilterPipeline.h │ ├── GPUImageFilterPipeline.m │ ├── GPUImageFourInputFilter.h │ ├── GPUImageFourInputFilter.m │ ├── GPUImageFramebuffer.h │ ├── GPUImageFramebuffer.m │ ├── GPUImageFramebufferCache.h │ ├── GPUImageFramebufferCache.m │ ├── GPUImageGammaFilter.h │ ├── GPUImageGammaFilter.m │ ├── GPUImageGaussianBlurFilter.h │ ├── GPUImageGaussianBlurFilter.m │ ├── GPUImageGaussianBlurPositionFilter.h │ ├── GPUImageGaussianBlurPositionFilter.m │ ├── GPUImageGaussianSelectiveBlurFilter.h │ ├── GPUImageGaussianSelectiveBlurFilter.m │ ├── GPUImageGlassSphereFilter.h │ ├── GPUImageGlassSphereFilter.m │ ├── GPUImageGrayscaleFilter.h │ ├── GPUImageGrayscaleFilter.m │ ├── GPUImageHSBFilter.h │ ├── GPUImageHSBFilter.m │ ├── GPUImageHalftoneFilter.h │ ├── GPUImageHalftoneFilter.m │ ├── GPUImageHardLightBlendFilter.h │ ├── GPUImageHardLightBlendFilter.m │ ├── GPUImageHarrisCornerDetectionFilter.h │ ├── GPUImageHarrisCornerDetectionFilter.m │ ├── GPUImageHazeFilter.h │ ├── GPUImageHazeFilter.m │ ├── GPUImageHighPassFilter.h │ ├── GPUImageHighPassFilter.m │ ├── GPUImageHighlightShadowFilter.h │ ├── GPUImageHighlightShadowFilter.m │ ├── GPUImageHighlightShadowTintFilter.h │ ├── GPUImageHighlightShadowTintFilter.m │ ├── GPUImageHistogramEqualizationFilter.h │ ├── GPUImageHistogramEqualizationFilter.m │ ├── GPUImageHistogramFilter.h │ ├── GPUImageHistogramFilter.m │ ├── GPUImageHistogramGenerator.h │ ├── GPUImageHistogramGenerator.m │ ├── GPUImageHoughTransformLineDetector.h │ ├── GPUImageHoughTransformLineDetector.m │ ├── GPUImageHueBlendFilter.h │ ├── GPUImageHueBlendFilter.m │ ├── GPUImageHueFilter.h │ ├── GPUImageHueFilter.m │ ├── GPUImageJFAVoronoiFilter.h │ ├── GPUImageJFAVoronoiFilter.m │ ├── GPUImageKuwaharaFilter.h │ ├── GPUImageKuwaharaFilter.m │ ├── GPUImageKuwaharaRadius3Filter.h │ ├── GPUImageKuwaharaRadius3Filter.m │ ├── GPUImageLanczosResamplingFilter.h │ ├── GPUImageLanczosResamplingFilter.m │ ├── GPUImageLaplacianFilter.h │ ├── GPUImageLaplacianFilter.m │ ├── GPUImageLevelsFilter.h │ ├── GPUImageLevelsFilter.m │ ├── GPUImageLightenBlendFilter.h │ ├── GPUImageLightenBlendFilter.m │ ├── GPUImageLineGenerator.h │ ├── GPUImageLineGenerator.m │ ├── GPUImageLinearBurnBlendFilter.h │ ├── GPUImageLinearBurnBlendFilter.m │ ├── GPUImageLocalBinaryPatternFilter.h │ ├── GPUImageLocalBinaryPatternFilter.m │ ├── GPUImageLookupFilter.h │ ├── GPUImageLookupFilter.m │ ├── GPUImageLowPassFilter.h │ ├── GPUImageLowPassFilter.m │ ├── GPUImageLuminanceRangeFilter.h │ ├── GPUImageLuminanceRangeFilter.m │ ├── GPUImageLuminanceThresholdFilter.h │ ├── GPUImageLuminanceThresholdFilter.m │ ├── GPUImageLuminosity.h │ ├── GPUImageLuminosity.m │ ├── GPUImageLuminosityBlendFilter.h │ ├── GPUImageLuminosityBlendFilter.m │ ├── GPUImageMaskFilter.h │ ├── GPUImageMaskFilter.m │ ├── GPUImageMedianFilter.h │ ├── GPUImageMedianFilter.m │ ├── GPUImageMissEtikateFilter.h │ ├── GPUImageMissEtikateFilter.m │ ├── GPUImageMonochromeFilter.h │ ├── GPUImageMonochromeFilter.m │ ├── GPUImageMosaicFilter.h │ ├── GPUImageMosaicFilter.m │ ├── GPUImageMotionBlurFilter.h │ ├── GPUImageMotionBlurFilter.m │ ├── GPUImageMotionDetector.h │ ├── GPUImageMotionDetector.m │ ├── GPUImageMovie.h │ ├── GPUImageMovie.m │ ├── GPUImageMovieComposition.h │ ├── GPUImageMovieComposition.m │ ├── GPUImageMultiplyBlendFilter.h │ ├── GPUImageMultiplyBlendFilter.m │ ├── GPUImageNobleCornerDetectionFilter.h │ ├── GPUImageNobleCornerDetectionFilter.m │ ├── GPUImageNonMaximumSuppressionFilter.h │ ├── GPUImageNonMaximumSuppressionFilter.m │ ├── GPUImageNormalBlendFilter.h │ ├── GPUImageNormalBlendFilter.m │ ├── GPUImageOpacityFilter.h │ ├── GPUImageOpacityFilter.m │ ├── GPUImageOpeningFilter.h │ ├── GPUImageOpeningFilter.m │ ├── GPUImageOutput.h │ ├── GPUImageOutput.m │ ├── GPUImageOverlayBlendFilter.h │ ├── GPUImageOverlayBlendFilter.m │ ├── GPUImageParallelCoordinateLineTransformFilter.h │ ├── GPUImageParallelCoordinateLineTransformFilter.m │ ├── GPUImagePerlinNoiseFilter.h │ ├── GPUImagePerlinNoiseFilter.m │ ├── GPUImagePinchDistortionFilter.h │ ├── GPUImagePinchDistortionFilter.m │ ├── GPUImagePixellateFilter.h │ ├── GPUImagePixellateFilter.m │ ├── GPUImagePixellatePositionFilter.h │ ├── GPUImagePixellatePositionFilter.m │ ├── GPUImagePoissonBlendFilter.h │ ├── GPUImagePoissonBlendFilter.m │ ├── GPUImagePolarPixellateFilter.h │ ├── GPUImagePolarPixellateFilter.m │ ├── GPUImagePolkaDotFilter.h │ ├── GPUImagePolkaDotFilter.m │ ├── GPUImagePosterizeFilter.h │ ├── GPUImagePosterizeFilter.m │ ├── GPUImagePrewittEdgeDetectionFilter.h │ ├── GPUImagePrewittEdgeDetectionFilter.m │ ├── GPUImageRGBClosingFilter.h │ ├── GPUImageRGBClosingFilter.m │ ├── GPUImageRGBDilationFilter.h │ ├── GPUImageRGBDilationFilter.m │ ├── GPUImageRGBErosionFilter.h │ ├── GPUImageRGBErosionFilter.m │ ├── GPUImageRGBFilter.h │ ├── GPUImageRGBFilter.m │ ├── GPUImageRGBOpeningFilter.h │ ├── GPUImageRGBOpeningFilter.m │ ├── GPUImageRawDataInput.h │ ├── GPUImageRawDataInput.m │ ├── GPUImageRawDataOutput.h │ ├── GPUImageRawDataOutput.m │ ├── GPUImageSaturationBlendFilter.h │ ├── GPUImageSaturationBlendFilter.m │ ├── GPUImageSaturationFilter.h │ ├── GPUImageSaturationFilter.m │ ├── GPUImageScreenBlendFilter.h │ ├── GPUImageScreenBlendFilter.m │ ├── GPUImageSepiaFilter.h │ ├── GPUImageSepiaFilter.m │ ├── GPUImageSharpenFilter.h │ ├── GPUImageSharpenFilter.m │ ├── GPUImageShiTomasiFeatureDetectionFilter.h │ ├── GPUImageShiTomasiFeatureDetectionFilter.m │ ├── GPUImageSingleComponentGaussianBlurFilter.h │ ├── GPUImageSingleComponentGaussianBlurFilter.m │ ├── GPUImageSketchFilter.h │ ├── GPUImageSketchFilter.m │ ├── GPUImageSkinToneFilter.h │ ├── GPUImageSkinToneFilter.m │ ├── GPUImageSmoothToonFilter.h │ ├── GPUImageSmoothToonFilter.m │ ├── GPUImageSobelEdgeDetectionFilter.h │ ├── GPUImageSobelEdgeDetectionFilter.m │ ├── GPUImageSoftEleganceFilter.h │ ├── GPUImageSoftEleganceFilter.m │ ├── GPUImageSoftLightBlendFilter.h │ ├── GPUImageSoftLightBlendFilter.m │ ├── GPUImageSolarizeFilter.h │ ├── GPUImageSolarizeFilter.m │ ├── GPUImageSolidColorGenerator.h │ ├── GPUImageSolidColorGenerator.m │ ├── GPUImageSourceOverBlendFilter.h │ ├── GPUImageSourceOverBlendFilter.m │ ├── GPUImageSphereRefractionFilter.h │ ├── GPUImageSphereRefractionFilter.m │ ├── GPUImageStillCamera.h │ ├── GPUImageStillCamera.m │ ├── GPUImageStretchDistortionFilter.h │ ├── GPUImageStretchDistortionFilter.m │ ├── GPUImageSubtractBlendFilter.h │ ├── GPUImageSubtractBlendFilter.m │ ├── GPUImageSwirlFilter.h │ ├── GPUImageSwirlFilter.m │ ├── GPUImageTextureInput.h │ ├── GPUImageTextureInput.m │ ├── GPUImageTextureOutput.h │ ├── GPUImageTextureOutput.m │ ├── GPUImageThreeInputFilter.h │ ├── GPUImageThreeInputFilter.m │ ├── GPUImageThresholdEdgeDetectionFilter.h │ ├── GPUImageThresholdEdgeDetectionFilter.m │ ├── GPUImageThresholdSketchFilter.h │ ├── GPUImageThresholdSketchFilter.m │ ├── GPUImageThresholdedNonMaximumSuppressionFilter.h │ ├── GPUImageThresholdedNonMaximumSuppressionFilter.m │ ├── GPUImageTiltShiftFilter.h │ ├── GPUImageTiltShiftFilter.m │ ├── GPUImageToneCurveFilter.h │ ├── GPUImageToneCurveFilter.m │ ├── GPUImageToonFilter.h │ ├── GPUImageToonFilter.m │ ├── GPUImageTransformFilter.h │ ├── GPUImageTransformFilter.m │ ├── GPUImageTwoInputCrossTextureSamplingFilter.h │ ├── GPUImageTwoInputCrossTextureSamplingFilter.m │ ├── GPUImageTwoInputFilter.h │ ├── GPUImageTwoInputFilter.m │ ├── GPUImageTwoPassFilter.h │ ├── GPUImageTwoPassFilter.m │ ├── GPUImageTwoPassTextureSamplingFilter.h │ ├── GPUImageTwoPassTextureSamplingFilter.m │ ├── GPUImageUIElement.h │ ├── GPUImageUIElement.m │ ├── GPUImageUnsharpMaskFilter.h │ ├── GPUImageUnsharpMaskFilter.m │ ├── GPUImageVibranceFilter.h │ ├── GPUImageVibranceFilter.m │ ├── GPUImageVideoCamera.h │ ├── GPUImageVideoCamera.m │ ├── GPUImageVignetteFilter.h │ ├── GPUImageVignetteFilter.m │ ├── GPUImageVoronoiConsumerFilter.h │ ├── GPUImageVoronoiConsumerFilter.m │ ├── GPUImageWeakPixelInclusionFilter.h │ ├── GPUImageWeakPixelInclusionFilter.m │ ├── GPUImageWhiteBalanceFilter.h │ ├── GPUImageWhiteBalanceFilter.m │ ├── GPUImageXYDerivativeFilter.h │ ├── GPUImageXYDerivativeFilter.m │ ├── GPUImageZoomBlurFilter.h │ ├── GPUImageZoomBlurFilter.m │ ├── GPUImageiOSBlurFilter.h │ ├── GPUImageiOSBlurFilter.m │ ├── Mac │ ├── GPUImage.h │ ├── GPUImageAVCamera.h │ ├── GPUImageAVCamera.m │ ├── GPUImageMac-Info.plist │ ├── GPUImageMac-Prefix.pch │ ├── GPUImageMovieWriter.h │ ├── GPUImageMovieWriter.m │ └── en.lproj │ │ └── InfoPlist.strings │ └── iOS │ ├── Framework │ ├── GPUImageFramework.h │ ├── Info.plist │ └── module.modulemap │ ├── GPUImage-Prefix.pch │ ├── GPUImageContext.h │ ├── GPUImageContext.m │ ├── GPUImageMovieWriter.h │ ├── GPUImageMovieWriter.m │ ├── GPUImagePicture+TextureSubimage.h │ ├── GPUImagePicture+TextureSubimage.m │ ├── GPUImagePicture.h │ ├── GPUImagePicture.m │ ├── GPUImageView.h │ └── GPUImageView.m ├── LearnAVFoundation ├── AVFoundation01 │ ├── AVFoundation01.xcodeproj │ │ ├── project.pbxproj │ │ └── project.xcworkspace │ │ │ ├── contents.xcworkspacedata │ │ │ └── xcshareddata │ │ │ └── IDEWorkspaceChecks.plist │ └── AVFoundation01 │ │ ├── AppDelegate.h │ │ ├── AppDelegate.m │ │ ├── Assets.xcassets │ │ ├── AppIcon.appiconset │ │ │ └── Contents.json │ │ ├── Contents.json │ │ ├── Lotus01.imageset │ │ │ ├── Contents.json │ │ │ └── Lotus01.png │ │ ├── Lotus02.imageset │ │ │ ├── Contents.json │ │ │ └── Lotus02.png │ │ ├── Lotus03.imageset │ │ │ ├── Contents.json │ │ │ └── Lotus03.png │ │ └── Lotus04.imageset │ │ │ ├── Contents.json │ │ │ └── Lotus04.png │ │ ├── Base.lproj │ │ ├── LaunchScreen.storyboard │ │ └── Main.storyboard │ │ ├── Info.plist │ │ ├── ViewController.h │ │ ├── ViewController.m │ │ ├── ZJWriterManager.h │ │ ├── ZJWriterManager.m │ │ └── main.m ├── AVFoundation02 │ ├── AVFoundation02.xcodeproj │ │ ├── project.pbxproj │ │ └── project.xcworkspace │ │ │ ├── contents.xcworkspacedata │ │ │ └── xcshareddata │ │ │ └── IDEWorkspaceChecks.plist │ └── AVFoundation02 │ │ ├── AppDelegate.h │ │ ├── AppDelegate.m │ │ ├── Assets.xcassets │ │ ├── AppIcon.appiconset │ │ │ └── Contents.json │ │ └── Contents.json │ │ ├── Base.lproj │ │ ├── LaunchScreen.storyboard │ │ └── Main.storyboard │ │ ├── Info.plist │ │ ├── ViewController.h │ │ ├── ViewController.m │ │ ├── ZJSimpleEditor.h │ │ ├── ZJSimpleEditor.m │ │ └── main.m ├── AVFoundation03 │ ├── AVFoundation.xcodeproj │ │ ├── project.pbxproj │ │ └── project.xcworkspace │ │ │ ├── contents.xcworkspacedata │ │ │ └── xcshareddata │ │ │ └── IDEWorkspaceChecks.plist │ └── AVFoundation │ │ ├── AppDelegate.h │ │ ├── AppDelegate.m │ │ ├── Assets.xcassets │ │ ├── AppIcon.appiconset │ │ │ └── Contents.json │ │ └── Contents.json │ │ ├── Base.lproj │ │ ├── LaunchScreen.storyboard │ │ └── Main.storyboard │ │ ├── Info.plist │ │ ├── ViewController.h │ │ ├── ViewController.m │ │ └── main.m ├── AVFoundation04 │ ├── AVFoundation.xcodeproj │ │ ├── project.pbxproj │ │ └── project.xcworkspace │ │ │ ├── contents.xcworkspacedata │ │ │ └── xcshareddata │ │ │ └── IDEWorkspaceChecks.plist │ ├── AVFoundation.xcworkspace │ │ ├── contents.xcworkspacedata │ │ └── xcshareddata │ │ │ └── IDEWorkspaceChecks.plist │ ├── AVFoundation │ │ ├── AppDelegate.h │ │ ├── AppDelegate.m │ │ ├── Assets.xcassets │ │ │ ├── AppIcon.appiconset │ │ │ │ └── Contents.json │ │ │ ├── Contents.json │ │ │ └── 对勾.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── 对勾@2x.png │ │ │ │ └── 对勾@3x.png │ │ ├── Base.lproj │ │ │ ├── LaunchScreen.storyboard │ │ │ └── Main.storyboard │ │ ├── Info.plist │ │ ├── OperatioCrossingEffectView.h │ │ ├── OperatioCrossingEffectView.m │ │ ├── PrefixHeader.pch │ │ ├── UIView+Frame.h │ │ ├── UIView+Frame.m │ │ ├── ViewController.h │ │ ├── ViewController.m │ │ ├── ZJSimpleEditor.h │ │ ├── ZJSimpleEditor.m │ │ ├── ZJTransitionModel.h │ │ ├── ZJTransitionModel.m │ │ └── main.m │ ├── Podfile │ ├── Podfile.lock │ └── Pods │ │ ├── BlocksKit │ │ ├── BlocksKit │ │ │ ├── BlocksKit+MessageUI.h │ │ │ ├── BlocksKit+UIKit.h │ │ │ ├── BlocksKit.h │ │ │ ├── Core │ │ │ │ ├── BKMacros.h │ │ │ │ ├── NSArray+BlocksKit.h │ │ │ │ ├── NSArray+BlocksKit.m │ │ │ │ ├── NSDictionary+BlocksKit.h │ │ │ │ ├── NSDictionary+BlocksKit.m │ │ │ │ ├── NSIndexSet+BlocksKit.h │ │ │ │ ├── NSIndexSet+BlocksKit.m │ │ │ │ ├── NSInvocation+BlocksKit.h │ │ │ │ ├── NSInvocation+BlocksKit.m │ │ │ │ ├── NSMutableArray+BlocksKit.h │ │ │ │ ├── NSMutableArray+BlocksKit.m │ │ │ │ ├── NSMutableDictionary+BlocksKit.h │ │ │ │ ├── NSMutableDictionary+BlocksKit.m │ │ │ │ ├── NSMutableIndexSet+BlocksKit.h │ │ │ │ ├── NSMutableIndexSet+BlocksKit.m │ │ │ │ ├── NSMutableOrderedSet+BlocksKit.h │ │ │ │ ├── NSMutableOrderedSet+BlocksKit.m │ │ │ │ ├── NSMutableSet+BlocksKit.h │ │ │ │ ├── NSMutableSet+BlocksKit.m │ │ │ │ ├── NSObject+BKAssociatedObjects.h │ │ │ │ ├── NSObject+BKAssociatedObjects.m │ │ │ │ ├── NSObject+BKBlockExecution.h │ │ │ │ ├── NSObject+BKBlockExecution.m │ │ │ │ ├── NSObject+BKBlockObservation.h │ │ │ │ ├── NSObject+BKBlockObservation.m │ │ │ │ ├── NSOrderedSet+BlocksKit.h │ │ │ │ ├── NSOrderedSet+BlocksKit.m │ │ │ │ ├── NSSet+BlocksKit.h │ │ │ │ ├── NSSet+BlocksKit.m │ │ │ │ ├── NSTimer+BlocksKit.h │ │ │ │ └── NSTimer+BlocksKit.m │ │ │ ├── DynamicDelegate │ │ │ │ ├── A2BlockInvocation.h │ │ │ │ ├── A2BlockInvocation.m │ │ │ │ ├── A2DynamicDelegate.h │ │ │ │ ├── A2DynamicDelegate.m │ │ │ │ ├── Foundation │ │ │ │ │ ├── NSCache+BlocksKit.h │ │ │ │ │ ├── NSCache+BlocksKit.m │ │ │ │ │ ├── NSURLConnection+BlocksKit.h │ │ │ │ │ └── NSURLConnection+BlocksKit.m │ │ │ │ ├── NSObject+A2BlockDelegate.h │ │ │ │ ├── NSObject+A2BlockDelegate.m │ │ │ │ ├── NSObject+A2DynamicDelegate.h │ │ │ │ └── NSObject+A2DynamicDelegate.m │ │ │ ├── MessageUI │ │ │ │ ├── MFMailComposeViewController+BlocksKit.h │ │ │ │ ├── MFMailComposeViewController+BlocksKit.m │ │ │ │ ├── MFMessageComposeViewController+BlocksKit.h │ │ │ │ └── MFMessageComposeViewController+BlocksKit.m │ │ │ └── UIKit │ │ │ │ ├── UIActionSheet+BlocksKit.h │ │ │ │ ├── UIActionSheet+BlocksKit.m │ │ │ │ ├── UIAlertView+BlocksKit.h │ │ │ │ ├── UIAlertView+BlocksKit.m │ │ │ │ ├── UIBarButtonItem+BlocksKit.h │ │ │ │ ├── UIBarButtonItem+BlocksKit.m │ │ │ │ ├── UIControl+BlocksKit.h │ │ │ │ ├── UIControl+BlocksKit.m │ │ │ │ ├── UIGestureRecognizer+BlocksKit.h │ │ │ │ ├── UIGestureRecognizer+BlocksKit.m │ │ │ │ ├── UIImagePickerController+BlocksKit.h │ │ │ │ ├── UIImagePickerController+BlocksKit.m │ │ │ │ ├── UIPopoverController+BlocksKit.h │ │ │ │ ├── UIPopoverController+BlocksKit.m │ │ │ │ ├── UITextField+BlocksKit.h │ │ │ │ ├── UITextField+BlocksKit.m │ │ │ │ ├── UIView+BlocksKit.h │ │ │ │ ├── UIView+BlocksKit.m │ │ │ │ ├── UIWebView+BlocksKit.h │ │ │ │ └── UIWebView+BlocksKit.m │ │ ├── LICENSE │ │ └── README.md │ │ ├── Headers │ │ ├── Private │ │ │ ├── BlocksKit │ │ │ │ ├── A2BlockInvocation.h │ │ │ │ ├── A2DynamicDelegate.h │ │ │ │ ├── BKMacros.h │ │ │ │ ├── BlocksKit+MessageUI.h │ │ │ │ ├── BlocksKit+UIKit.h │ │ │ │ ├── BlocksKit.h │ │ │ │ ├── MFMailComposeViewController+BlocksKit.h │ │ │ │ ├── MFMessageComposeViewController+BlocksKit.h │ │ │ │ ├── NSArray+BlocksKit.h │ │ │ │ ├── NSCache+BlocksKit.h │ │ │ │ ├── NSDictionary+BlocksKit.h │ │ │ │ ├── NSIndexSet+BlocksKit.h │ │ │ │ ├── NSInvocation+BlocksKit.h │ │ │ │ ├── NSMutableArray+BlocksKit.h │ │ │ │ ├── NSMutableDictionary+BlocksKit.h │ │ │ │ ├── NSMutableIndexSet+BlocksKit.h │ │ │ │ ├── NSMutableOrderedSet+BlocksKit.h │ │ │ │ ├── NSMutableSet+BlocksKit.h │ │ │ │ ├── NSObject+A2BlockDelegate.h │ │ │ │ ├── NSObject+A2DynamicDelegate.h │ │ │ │ ├── NSObject+BKAssociatedObjects.h │ │ │ │ ├── NSObject+BKBlockExecution.h │ │ │ │ ├── NSObject+BKBlockObservation.h │ │ │ │ ├── NSOrderedSet+BlocksKit.h │ │ │ │ ├── NSSet+BlocksKit.h │ │ │ │ ├── NSTimer+BlocksKit.h │ │ │ │ ├── NSURLConnection+BlocksKit.h │ │ │ │ ├── UIActionSheet+BlocksKit.h │ │ │ │ ├── UIAlertView+BlocksKit.h │ │ │ │ ├── UIBarButtonItem+BlocksKit.h │ │ │ │ ├── UIControl+BlocksKit.h │ │ │ │ ├── UIGestureRecognizer+BlocksKit.h │ │ │ │ ├── UIImagePickerController+BlocksKit.h │ │ │ │ ├── UIPopoverController+BlocksKit.h │ │ │ │ ├── UITextField+BlocksKit.h │ │ │ │ ├── UIView+BlocksKit.h │ │ │ │ └── UIWebView+BlocksKit.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 │ │ └── Public │ │ │ ├── BlocksKit │ │ │ ├── A2BlockInvocation.h │ │ │ ├── A2DynamicDelegate.h │ │ │ ├── BKMacros.h │ │ │ ├── BlocksKit+MessageUI.h │ │ │ ├── BlocksKit+UIKit.h │ │ │ ├── BlocksKit.h │ │ │ ├── MFMailComposeViewController+BlocksKit.h │ │ │ ├── MFMessageComposeViewController+BlocksKit.h │ │ │ ├── NSArray+BlocksKit.h │ │ │ ├── NSCache+BlocksKit.h │ │ │ ├── NSDictionary+BlocksKit.h │ │ │ ├── NSIndexSet+BlocksKit.h │ │ │ ├── NSInvocation+BlocksKit.h │ │ │ ├── NSMutableArray+BlocksKit.h │ │ │ ├── NSMutableDictionary+BlocksKit.h │ │ │ ├── NSMutableIndexSet+BlocksKit.h │ │ │ ├── NSMutableOrderedSet+BlocksKit.h │ │ │ ├── NSMutableSet+BlocksKit.h │ │ │ ├── NSObject+A2BlockDelegate.h │ │ │ ├── NSObject+A2DynamicDelegate.h │ │ │ ├── NSObject+BKAssociatedObjects.h │ │ │ ├── NSObject+BKBlockExecution.h │ │ │ ├── NSObject+BKBlockObservation.h │ │ │ ├── NSOrderedSet+BlocksKit.h │ │ │ ├── NSSet+BlocksKit.h │ │ │ ├── NSTimer+BlocksKit.h │ │ │ ├── NSURLConnection+BlocksKit.h │ │ │ ├── UIActionSheet+BlocksKit.h │ │ │ ├── UIAlertView+BlocksKit.h │ │ │ ├── UIBarButtonItem+BlocksKit.h │ │ │ ├── UIControl+BlocksKit.h │ │ │ ├── UIGestureRecognizer+BlocksKit.h │ │ │ ├── UIImagePickerController+BlocksKit.h │ │ │ ├── UIPopoverController+BlocksKit.h │ │ │ ├── UITextField+BlocksKit.h │ │ │ ├── UIView+BlocksKit.h │ │ │ └── UIWebView+BlocksKit.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 │ │ ├── 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 │ │ └── Target Support Files │ │ ├── BlocksKit │ │ ├── BlocksKit-dummy.m │ │ ├── BlocksKit-prefix.pch │ │ └── BlocksKit.xcconfig │ │ ├── Masonry │ │ ├── Masonry-dummy.m │ │ ├── Masonry-prefix.pch │ │ └── Masonry.xcconfig │ │ └── Pods-AVFoundation │ │ ├── Pods-AVFoundation-acknowledgements.markdown │ │ ├── Pods-AVFoundation-acknowledgements.plist │ │ ├── Pods-AVFoundation-dummy.m │ │ ├── Pods-AVFoundation-frameworks.sh │ │ ├── Pods-AVFoundation-resources.sh │ │ ├── Pods-AVFoundation.debug.xcconfig │ │ └── Pods-AVFoundation.release.xcconfig ├── AVFoundation05 │ ├── AVFoundation.xcodeproj │ │ ├── project.pbxproj │ │ └── project.xcworkspace │ │ │ ├── contents.xcworkspacedata │ │ │ └── xcshareddata │ │ │ └── IDEWorkspaceChecks.plist │ ├── AVFoundation.xcworkspace │ │ ├── contents.xcworkspacedata │ │ └── xcshareddata │ │ │ └── IDEWorkspaceChecks.plist │ ├── AVFoundation │ │ ├── AppDelegate.h │ │ ├── AppDelegate.m │ │ ├── Assets.xcassets │ │ │ ├── AppIcon.appiconset │ │ │ │ └── Contents.json │ │ │ ├── Contents.json │ │ │ ├── icon_back.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── icon_back@2x.png │ │ │ │ └── icon_back@3x.png │ │ │ ├── slider_deselect.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── btn_n_cover@2x.png │ │ │ │ └── btn_n_cover@3x.png │ │ │ ├── slider_select.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── btn_p_cover@2x.png │ │ │ │ └── btn_p_cover@3x.png │ │ │ ├── 对勾.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── 对勾@2x.png │ │ │ │ └── 对勾@3x.png │ │ │ ├── 播放.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── btn_player_play@2x.png │ │ │ │ └── btn_player_play@3x.png │ │ │ └── 暂停.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── btn_player_pause@2x.png │ │ │ │ └── btn_player_pause@3x.png │ │ ├── Base.lproj │ │ │ ├── LaunchScreen.storyboard │ │ │ └── Main.storyboard │ │ ├── CZHChooseCover │ │ │ ├── CZHChooseCoverCell.h │ │ │ ├── CZHChooseCoverCell.m │ │ │ ├── CZHChooseCoverController.h │ │ │ ├── CZHChooseCoverController.m │ │ │ ├── CZHTool.h │ │ │ ├── CZHTool.m │ │ │ ├── Header.h │ │ │ ├── UIButton+Extension.h │ │ │ ├── UIButton+Extension.m │ │ │ ├── UILabel+Extension.h │ │ │ └── UILabel+Extension.m │ │ ├── Info.plist │ │ ├── MBProgressHUD │ │ │ ├── MBProgressHUD.h │ │ │ └── MBProgressHUD.m │ │ ├── PrefixHeader.pch │ │ ├── UIView+Frame.h │ │ ├── UIView+Frame.m │ │ ├── VideoAudioCompositionManager.h │ │ ├── VideoAudioCompositionManager.m │ │ ├── ViewController.h │ │ ├── ViewController.m │ │ ├── main.m │ │ └── temp.mp4 │ ├── Podfile │ ├── Podfile.lock │ └── Pods │ │ ├── BlocksKit │ │ ├── BlocksKit │ │ │ ├── BlocksKit+MessageUI.h │ │ │ ├── BlocksKit+UIKit.h │ │ │ ├── BlocksKit.h │ │ │ ├── Core │ │ │ │ ├── BKMacros.h │ │ │ │ ├── NSArray+BlocksKit.h │ │ │ │ ├── NSArray+BlocksKit.m │ │ │ │ ├── NSDictionary+BlocksKit.h │ │ │ │ ├── NSDictionary+BlocksKit.m │ │ │ │ ├── NSIndexSet+BlocksKit.h │ │ │ │ ├── NSIndexSet+BlocksKit.m │ │ │ │ ├── NSInvocation+BlocksKit.h │ │ │ │ ├── NSInvocation+BlocksKit.m │ │ │ │ ├── NSMutableArray+BlocksKit.h │ │ │ │ ├── NSMutableArray+BlocksKit.m │ │ │ │ ├── NSMutableDictionary+BlocksKit.h │ │ │ │ ├── NSMutableDictionary+BlocksKit.m │ │ │ │ ├── NSMutableIndexSet+BlocksKit.h │ │ │ │ ├── NSMutableIndexSet+BlocksKit.m │ │ │ │ ├── NSMutableOrderedSet+BlocksKit.h │ │ │ │ ├── NSMutableOrderedSet+BlocksKit.m │ │ │ │ ├── NSMutableSet+BlocksKit.h │ │ │ │ ├── NSMutableSet+BlocksKit.m │ │ │ │ ├── NSObject+BKAssociatedObjects.h │ │ │ │ ├── NSObject+BKAssociatedObjects.m │ │ │ │ ├── NSObject+BKBlockExecution.h │ │ │ │ ├── NSObject+BKBlockExecution.m │ │ │ │ ├── NSObject+BKBlockObservation.h │ │ │ │ ├── NSObject+BKBlockObservation.m │ │ │ │ ├── NSOrderedSet+BlocksKit.h │ │ │ │ ├── NSOrderedSet+BlocksKit.m │ │ │ │ ├── NSSet+BlocksKit.h │ │ │ │ ├── NSSet+BlocksKit.m │ │ │ │ ├── NSTimer+BlocksKit.h │ │ │ │ └── NSTimer+BlocksKit.m │ │ │ ├── DynamicDelegate │ │ │ │ ├── A2BlockInvocation.h │ │ │ │ ├── A2BlockInvocation.m │ │ │ │ ├── A2DynamicDelegate.h │ │ │ │ ├── A2DynamicDelegate.m │ │ │ │ ├── Foundation │ │ │ │ │ ├── NSCache+BlocksKit.h │ │ │ │ │ ├── NSCache+BlocksKit.m │ │ │ │ │ ├── NSURLConnection+BlocksKit.h │ │ │ │ │ └── NSURLConnection+BlocksKit.m │ │ │ │ ├── NSObject+A2BlockDelegate.h │ │ │ │ ├── NSObject+A2BlockDelegate.m │ │ │ │ ├── NSObject+A2DynamicDelegate.h │ │ │ │ └── NSObject+A2DynamicDelegate.m │ │ │ ├── MessageUI │ │ │ │ ├── MFMailComposeViewController+BlocksKit.h │ │ │ │ ├── MFMailComposeViewController+BlocksKit.m │ │ │ │ ├── MFMessageComposeViewController+BlocksKit.h │ │ │ │ └── MFMessageComposeViewController+BlocksKit.m │ │ │ └── UIKit │ │ │ │ ├── UIActionSheet+BlocksKit.h │ │ │ │ ├── UIActionSheet+BlocksKit.m │ │ │ │ ├── UIAlertView+BlocksKit.h │ │ │ │ ├── UIAlertView+BlocksKit.m │ │ │ │ ├── UIBarButtonItem+BlocksKit.h │ │ │ │ ├── UIBarButtonItem+BlocksKit.m │ │ │ │ ├── UIControl+BlocksKit.h │ │ │ │ ├── UIControl+BlocksKit.m │ │ │ │ ├── UIGestureRecognizer+BlocksKit.h │ │ │ │ ├── UIGestureRecognizer+BlocksKit.m │ │ │ │ ├── UIImagePickerController+BlocksKit.h │ │ │ │ ├── UIImagePickerController+BlocksKit.m │ │ │ │ ├── UIPopoverController+BlocksKit.h │ │ │ │ ├── UIPopoverController+BlocksKit.m │ │ │ │ ├── UITextField+BlocksKit.h │ │ │ │ ├── UITextField+BlocksKit.m │ │ │ │ ├── UIView+BlocksKit.h │ │ │ │ ├── UIView+BlocksKit.m │ │ │ │ ├── UIWebView+BlocksKit.h │ │ │ │ └── UIWebView+BlocksKit.m │ │ ├── LICENSE │ │ └── README.md │ │ ├── Headers │ │ ├── Private │ │ │ ├── BlocksKit │ │ │ │ ├── A2BlockInvocation.h │ │ │ │ ├── A2DynamicDelegate.h │ │ │ │ ├── BKMacros.h │ │ │ │ ├── BlocksKit+MessageUI.h │ │ │ │ ├── BlocksKit+UIKit.h │ │ │ │ ├── BlocksKit.h │ │ │ │ ├── MFMailComposeViewController+BlocksKit.h │ │ │ │ ├── MFMessageComposeViewController+BlocksKit.h │ │ │ │ ├── NSArray+BlocksKit.h │ │ │ │ ├── NSCache+BlocksKit.h │ │ │ │ ├── NSDictionary+BlocksKit.h │ │ │ │ ├── NSIndexSet+BlocksKit.h │ │ │ │ ├── NSInvocation+BlocksKit.h │ │ │ │ ├── NSMutableArray+BlocksKit.h │ │ │ │ ├── NSMutableDictionary+BlocksKit.h │ │ │ │ ├── NSMutableIndexSet+BlocksKit.h │ │ │ │ ├── NSMutableOrderedSet+BlocksKit.h │ │ │ │ ├── NSMutableSet+BlocksKit.h │ │ │ │ ├── NSObject+A2BlockDelegate.h │ │ │ │ ├── NSObject+A2DynamicDelegate.h │ │ │ │ ├── NSObject+BKAssociatedObjects.h │ │ │ │ ├── NSObject+BKBlockExecution.h │ │ │ │ ├── NSObject+BKBlockObservation.h │ │ │ │ ├── NSOrderedSet+BlocksKit.h │ │ │ │ ├── NSSet+BlocksKit.h │ │ │ │ ├── NSTimer+BlocksKit.h │ │ │ │ ├── NSURLConnection+BlocksKit.h │ │ │ │ ├── UIActionSheet+BlocksKit.h │ │ │ │ ├── UIAlertView+BlocksKit.h │ │ │ │ ├── UIBarButtonItem+BlocksKit.h │ │ │ │ ├── UIControl+BlocksKit.h │ │ │ │ ├── UIGestureRecognizer+BlocksKit.h │ │ │ │ ├── UIImagePickerController+BlocksKit.h │ │ │ │ ├── UIPopoverController+BlocksKit.h │ │ │ │ ├── UITextField+BlocksKit.h │ │ │ │ ├── UIView+BlocksKit.h │ │ │ │ └── UIWebView+BlocksKit.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 │ │ │ └── SVProgressHUD │ │ │ │ ├── SVIndefiniteAnimatedView.h │ │ │ │ ├── SVProgressAnimatedView.h │ │ │ │ ├── SVProgressHUD.h │ │ │ │ └── SVRadialGradientLayer.h │ │ └── Public │ │ │ ├── BlocksKit │ │ │ ├── A2BlockInvocation.h │ │ │ ├── A2DynamicDelegate.h │ │ │ ├── BKMacros.h │ │ │ ├── BlocksKit+MessageUI.h │ │ │ ├── BlocksKit+UIKit.h │ │ │ ├── BlocksKit.h │ │ │ ├── MFMailComposeViewController+BlocksKit.h │ │ │ ├── MFMessageComposeViewController+BlocksKit.h │ │ │ ├── NSArray+BlocksKit.h │ │ │ ├── NSCache+BlocksKit.h │ │ │ ├── NSDictionary+BlocksKit.h │ │ │ ├── NSIndexSet+BlocksKit.h │ │ │ ├── NSInvocation+BlocksKit.h │ │ │ ├── NSMutableArray+BlocksKit.h │ │ │ ├── NSMutableDictionary+BlocksKit.h │ │ │ ├── NSMutableIndexSet+BlocksKit.h │ │ │ ├── NSMutableOrderedSet+BlocksKit.h │ │ │ ├── NSMutableSet+BlocksKit.h │ │ │ ├── NSObject+A2BlockDelegate.h │ │ │ ├── NSObject+A2DynamicDelegate.h │ │ │ ├── NSObject+BKAssociatedObjects.h │ │ │ ├── NSObject+BKBlockExecution.h │ │ │ ├── NSObject+BKBlockObservation.h │ │ │ ├── NSOrderedSet+BlocksKit.h │ │ │ ├── NSSet+BlocksKit.h │ │ │ ├── NSTimer+BlocksKit.h │ │ │ ├── NSURLConnection+BlocksKit.h │ │ │ ├── UIActionSheet+BlocksKit.h │ │ │ ├── UIAlertView+BlocksKit.h │ │ │ ├── UIBarButtonItem+BlocksKit.h │ │ │ ├── UIControl+BlocksKit.h │ │ │ ├── UIGestureRecognizer+BlocksKit.h │ │ │ ├── UIImagePickerController+BlocksKit.h │ │ │ ├── UIPopoverController+BlocksKit.h │ │ │ ├── UITextField+BlocksKit.h │ │ │ ├── UIView+BlocksKit.h │ │ │ └── UIWebView+BlocksKit.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 │ │ │ └── SVProgressHUD │ │ │ ├── SVIndefiniteAnimatedView.h │ │ │ ├── SVProgressAnimatedView.h │ │ │ ├── SVProgressHUD.h │ │ │ └── SVRadialGradientLayer.h │ │ ├── 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 │ │ ├── SVProgressHUD │ │ ├── LICENSE │ │ ├── README.md │ │ └── SVProgressHUD │ │ │ ├── SVIndefiniteAnimatedView.h │ │ │ ├── SVIndefiniteAnimatedView.m │ │ │ ├── SVProgressAnimatedView.h │ │ │ ├── SVProgressAnimatedView.m │ │ │ ├── SVProgressHUD.bundle │ │ │ ├── angle-mask.png │ │ │ ├── angle-mask@2x.png │ │ │ ├── angle-mask@3x.png │ │ │ ├── error.png │ │ │ ├── error@2x.png │ │ │ ├── error@3x.png │ │ │ ├── info.png │ │ │ ├── info@2x.png │ │ │ ├── info@3x.png │ │ │ ├── success.png │ │ │ ├── success@2x.png │ │ │ └── success@3x.png │ │ │ ├── SVProgressHUD.h │ │ │ ├── SVProgressHUD.m │ │ │ ├── SVRadialGradientLayer.h │ │ │ └── SVRadialGradientLayer.m │ │ └── Target Support Files │ │ ├── BlocksKit │ │ ├── BlocksKit-dummy.m │ │ ├── BlocksKit-prefix.pch │ │ └── BlocksKit.xcconfig │ │ ├── Masonry │ │ ├── Masonry-dummy.m │ │ ├── Masonry-prefix.pch │ │ └── Masonry.xcconfig │ │ ├── Pods-AVFoundation │ │ ├── Pods-AVFoundation-acknowledgements.markdown │ │ ├── Pods-AVFoundation-acknowledgements.plist │ │ ├── Pods-AVFoundation-dummy.m │ │ ├── Pods-AVFoundation-frameworks.sh │ │ ├── Pods-AVFoundation-resources.sh │ │ ├── Pods-AVFoundation.debug.xcconfig │ │ └── Pods-AVFoundation.release.xcconfig │ │ └── SVProgressHUD │ │ ├── SVProgressHUD-dummy.m │ │ ├── SVProgressHUD-prefix.pch │ │ └── SVProgressHUD.xcconfig ├── README.md └── Resources │ ├── IMG_0067.mp4 │ └── 良品铺子.mp4 ├── Lock ├── Lock.xcodeproj │ ├── project.pbxproj │ └── project.xcworkspace │ │ ├── contents.xcworkspacedata │ │ └── xcshareddata │ │ └── IDEWorkspaceChecks.plist └── Lock │ ├── AppDelegate.h │ ├── AppDelegate.m │ ├── Assets.xcassets │ ├── AppIcon.appiconset │ │ └── Contents.json │ └── Contents.json │ ├── Base.lproj │ ├── LaunchScreen.storyboard │ └── Main.storyboard │ ├── Info.plist │ ├── SceneDelegate.h │ ├── SceneDelegate.m │ ├── ViewController.h │ ├── ViewController.m │ └── main.m ├── MergeImages ├── MergeImages.xcodeproj │ ├── project.pbxproj │ └── project.xcworkspace │ │ ├── contents.xcworkspacedata │ │ └── xcshareddata │ │ └── IDEWorkspaceChecks.plist ├── MergeImages │ ├── AppDelegate.h │ ├── AppDelegate.m │ ├── Assets.xcassets │ │ ├── AccentColor.colorset │ │ │ └── Contents.json │ │ ├── AppIcon.appiconset │ │ │ └── Contents.json │ │ ├── Contents.json │ │ ├── image_1.imageset │ │ │ ├── Contents.json │ │ │ └── image_1.png │ │ └── image_2.imageset │ │ │ ├── Contents.json │ │ │ └── image_2.png │ ├── Base.lproj │ │ ├── LaunchScreen.storyboard │ │ └── Main.storyboard │ ├── Info.plist │ ├── SceneDelegate.h │ ├── SceneDelegate.m │ ├── ViewController.h │ ├── ViewController.m │ └── main.m ├── MergeImagesTests │ └── MergeImagesTests.m └── MergeImagesUITests │ ├── MergeImagesUITests.m │ └── MergeImagesUITestsLaunchTests.m ├── NSOperationTest ├── NSOperationTest.xcodeproj │ ├── project.pbxproj │ └── project.xcworkspace │ │ ├── contents.xcworkspacedata │ │ └── xcshareddata │ │ └── IDEWorkspaceChecks.plist └── NSOperationTest │ ├── AppDelegate.h │ ├── AppDelegate.m │ ├── Assets.xcassets │ ├── AppIcon.appiconset │ │ └── Contents.json │ └── Contents.json │ ├── Base.lproj │ ├── LaunchScreen.storyboard │ └── Main.storyboard │ ├── Info.plist │ ├── NSOperationTest.xcdatamodeld │ ├── .xccurrentversion │ └── NSOperationTest.xcdatamodel │ │ └── contents │ ├── SceneDelegate.h │ ├── SceneDelegate.m │ ├── ViewController.h │ ├── ViewController.m │ └── main.m ├── NSTimerDemo ├── NSTimerDemo.xcodeproj │ ├── project.pbxproj │ └── project.xcworkspace │ │ ├── contents.xcworkspacedata │ │ └── xcshareddata │ │ └── IDEWorkspaceChecks.plist └── NSTimerDemo │ ├── AppDelegate.h │ ├── AppDelegate.m │ ├── Assets.xcassets │ ├── AppIcon.appiconset │ │ └── Contents.json │ └── Contents.json │ ├── Base.lproj │ ├── LaunchScreen.storyboard │ └── Main.storyboard │ ├── DetailController.h │ ├── DetailController.m │ ├── DetailView.h │ ├── DetailView.m │ ├── Info.plist │ ├── JTimer.h │ ├── JTimer.m │ ├── ViewController.h │ ├── ViewController.m │ ├── ZJWeakProxy.h │ ├── ZJWeakProxy.m │ └── main.m ├── OperationQueueDemo ├── OperationQueueDemo.xcodeproj │ ├── project.pbxproj │ └── project.xcworkspace │ │ └── contents.xcworkspacedata └── OperationQueueDemo │ ├── AppDelegate.h │ ├── AppDelegate.m │ ├── Assets.xcassets │ ├── AccentColor.colorset │ │ └── Contents.json │ ├── AppIcon.appiconset │ │ └── Contents.json │ └── Contents.json │ ├── Base.lproj │ ├── LaunchScreen.storyboard │ └── Main.storyboard │ ├── HttpNetwork.h │ ├── HttpNetwork.m │ ├── Info.plist │ ├── SceneDelegate.h │ ├── SceneDelegate.m │ ├── ViewController.h │ ├── ViewController.m │ └── main.m ├── README.md ├── RunLoooop ├── RunLoooop.xcodeproj │ ├── project.pbxproj │ └── project.xcworkspace │ │ ├── contents.xcworkspacedata │ │ └── xcshareddata │ │ └── IDEWorkspaceChecks.plist └── RunLoooop │ ├── AppDelegate.h │ ├── AppDelegate.m │ ├── Assets.xcassets │ ├── AppIcon.appiconset │ │ └── Contents.json │ └── Contents.json │ ├── Base.lproj │ ├── LaunchScreen.storyboard │ └── Main.storyboard │ ├── Info.plist │ ├── ViewController.h │ ├── ViewController.m │ └── main.m ├── SpringBox ├── SpringBox.xcodeproj │ ├── project.pbxproj │ └── project.xcworkspace │ │ ├── contents.xcworkspacedata │ │ └── xcshareddata │ │ └── IDEWorkspaceChecks.plist └── SpringBox │ ├── AlertManager.h │ ├── AlertManager.m │ ├── AppDelegate.h │ ├── AppDelegate.m │ ├── Assets.xcassets │ ├── AppIcon.appiconset │ │ └── Contents.json │ └── Contents.json │ ├── Base.lproj │ ├── LaunchScreen.storyboard │ └── Main.storyboard │ ├── Info.plist │ ├── SceneDelegate.h │ ├── SceneDelegate.m │ ├── SecondController.h │ ├── SecondController.m │ ├── SpringBoxManager.h │ ├── ViewController.h │ ├── ViewController.m │ └── main.m ├── WBCycleViewDemo ├── WBCycleViewDemo.xcodeproj │ ├── project.pbxproj │ └── project.xcworkspace │ │ ├── contents.xcworkspacedata │ │ └── xcshareddata │ │ └── IDEWorkspaceChecks.plist └── WBCycleViewDemo │ ├── AppDelegate.h │ ├── AppDelegate.m │ ├── Assets.xcassets │ ├── AccentColor.colorset │ │ └── Contents.json │ ├── AppIcon.appiconset │ │ └── Contents.json │ ├── Contents.json │ ├── icon1.imageset │ │ ├── Contents.json │ │ └── icon1.png │ ├── icon2.imageset │ │ ├── Contents.json │ │ └── icon2.png │ ├── icon3.imageset │ │ ├── Contents.json │ │ └── icon3.png │ └── icon4.imageset │ │ ├── Contents.json │ │ └── icon4.png │ ├── Base.lproj │ ├── LaunchScreen.storyboard │ └── Main.storyboard │ ├── Info.plist │ ├── MyCellView.h │ ├── MyCellView.m │ ├── MyCycleView.h │ ├── MyCycleView.m │ ├── MyTimer.h │ ├── MyTimer.m │ ├── SceneDelegate.h │ ├── SceneDelegate.m │ ├── ViewController.h │ ├── ViewController.m │ ├── WBJobBigCateCycleCellView.m │ └── main.m ├── 单例模式 ├── 单例模式.xcodeproj │ ├── project.pbxproj │ └── project.xcworkspace │ │ ├── contents.xcworkspacedata │ │ └── xcshareddata │ │ └── IDEWorkspaceChecks.plist └── 单例模式 │ ├── AppDelegate.h │ ├── AppDelegate.m │ ├── Assets.xcassets │ ├── AppIcon.appiconset │ │ └── Contents.json │ └── Contents.json │ ├── Base.lproj │ ├── LaunchScreen.storyboard │ └── Main.storyboard │ ├── Info.plist │ ├── SceneDelegate.h │ ├── SceneDelegate.m │ ├── Teacher.h │ ├── Teacher.m │ ├── ViewController.h │ ├── ViewController.m │ └── main.m ├── 深浅拷贝 ├── 深浅拷贝.xcodeproj │ ├── project.pbxproj │ └── project.xcworkspace │ │ ├── contents.xcworkspacedata │ │ └── xcshareddata │ │ └── IDEWorkspaceChecks.plist └── 深浅拷贝 │ ├── AppDelegate.h │ ├── AppDelegate.m │ ├── Assets.xcassets │ └── AppIcon.appiconset │ │ └── Contents.json │ ├── Base.lproj │ ├── LaunchScreen.storyboard │ └── Main.storyboard │ ├── Info.plist │ ├── MyObj.h │ ├── MyObj.m │ ├── ViewController.h │ ├── ViewController.m │ ├── ZJPerson.h │ ├── ZJPerson.m │ └── main.m └── 走马灯 ├── 走马灯.xcodeproj ├── project.pbxproj └── project.xcworkspace │ ├── contents.xcworkspacedata │ └── xcshareddata │ └── IDEWorkspaceChecks.plist └── 走马灯 ├── AppDelegate.h ├── AppDelegate.m ├── Assets.xcassets ├── AccentColor.colorset │ └── Contents.json ├── AppIcon.appiconset │ └── Contents.json └── Contents.json ├── Base.lproj ├── LaunchScreen.storyboard └── Main.storyboard ├── CircelView.h ├── CircelView.m ├── Info.plist ├── SceneDelegate.h ├── SceneDelegate.m ├── ViewController.h ├── ViewController.m └── main.m /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengju/iOSDemos/HEAD/.gitignore -------------------------------------------------------------------------------- /AnimationDemo/AnimationDemo.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengju/iOSDemos/HEAD/AnimationDemo/AnimationDemo.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /AnimationDemo/AnimationDemo/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengju/iOSDemos/HEAD/AnimationDemo/AnimationDemo/AppDelegate.h -------------------------------------------------------------------------------- /AnimationDemo/AnimationDemo/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengju/iOSDemos/HEAD/AnimationDemo/AnimationDemo/AppDelegate.m -------------------------------------------------------------------------------- /AnimationDemo/AnimationDemo/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengju/iOSDemos/HEAD/AnimationDemo/AnimationDemo/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /AnimationDemo/AnimationDemo/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengju/iOSDemos/HEAD/AnimationDemo/AnimationDemo/Info.plist -------------------------------------------------------------------------------- /AnimationDemo/AnimationDemo/SceneDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengju/iOSDemos/HEAD/AnimationDemo/AnimationDemo/SceneDelegate.h -------------------------------------------------------------------------------- /AnimationDemo/AnimationDemo/SceneDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengju/iOSDemos/HEAD/AnimationDemo/AnimationDemo/SceneDelegate.m -------------------------------------------------------------------------------- /AnimationDemo/AnimationDemo/ViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengju/iOSDemos/HEAD/AnimationDemo/AnimationDemo/ViewController.h -------------------------------------------------------------------------------- /AnimationDemo/AnimationDemo/ViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengju/iOSDemos/HEAD/AnimationDemo/AnimationDemo/ViewController.m -------------------------------------------------------------------------------- /AnimationDemo/AnimationDemo/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengju/iOSDemos/HEAD/AnimationDemo/AnimationDemo/main.m -------------------------------------------------------------------------------- /AnimationDemo/AnimationDemoTests/AnimationDemoTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengju/iOSDemos/HEAD/AnimationDemo/AnimationDemoTests/AnimationDemoTests.m -------------------------------------------------------------------------------- /BigAPP/BigAPP.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengju/iOSDemos/HEAD/BigAPP/BigAPP.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /BigAPP/BigAPP.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengju/iOSDemos/HEAD/BigAPP/BigAPP.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /BigAPP/BigAPP/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengju/iOSDemos/HEAD/BigAPP/BigAPP/AppDelegate.h -------------------------------------------------------------------------------- /BigAPP/BigAPP/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengju/iOSDemos/HEAD/BigAPP/BigAPP/AppDelegate.m -------------------------------------------------------------------------------- /BigAPP/BigAPP/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengju/iOSDemos/HEAD/BigAPP/BigAPP/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /BigAPP/BigAPP/BGView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengju/iOSDemos/HEAD/BigAPP/BigAPP/BGView.h -------------------------------------------------------------------------------- /BigAPP/BigAPP/BGView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengju/iOSDemos/HEAD/BigAPP/BigAPP/BGView.m -------------------------------------------------------------------------------- /BigAPP/BigAPP/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengju/iOSDemos/HEAD/BigAPP/BigAPP/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /BigAPP/BigAPP/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengju/iOSDemos/HEAD/BigAPP/BigAPP/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /BigAPP/BigAPP/HTMLController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengju/iOSDemos/HEAD/BigAPP/BigAPP/HTMLController.h -------------------------------------------------------------------------------- /BigAPP/BigAPP/HTMLController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengju/iOSDemos/HEAD/BigAPP/BigAPP/HTMLController.m -------------------------------------------------------------------------------- /BigAPP/BigAPP/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengju/iOSDemos/HEAD/BigAPP/BigAPP/Info.plist -------------------------------------------------------------------------------- /BigAPP/BigAPP/LCImageDownloadManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengju/iOSDemos/HEAD/BigAPP/BigAPP/LCImageDownloadManager.h -------------------------------------------------------------------------------- /BigAPP/BigAPP/LCImageDownloadManager.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengju/iOSDemos/HEAD/BigAPP/BigAPP/LCImageDownloadManager.m -------------------------------------------------------------------------------- /BigAPP/BigAPP/LCNetworkImageView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengju/iOSDemos/HEAD/BigAPP/BigAPP/LCNetworkImageView.h -------------------------------------------------------------------------------- /BigAPP/BigAPP/LCNetworkImageView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengju/iOSDemos/HEAD/BigAPP/BigAPP/LCNetworkImageView.m -------------------------------------------------------------------------------- /BigAPP/BigAPP/LayerController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengju/iOSDemos/HEAD/BigAPP/BigAPP/LayerController.h -------------------------------------------------------------------------------- /BigAPP/BigAPP/LayerController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengju/iOSDemos/HEAD/BigAPP/BigAPP/LayerController.m -------------------------------------------------------------------------------- /BigAPP/BigAPP/LoginController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengju/iOSDemos/HEAD/BigAPP/BigAPP/LoginController.h -------------------------------------------------------------------------------- /BigAPP/BigAPP/LoginController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengju/iOSDemos/HEAD/BigAPP/BigAPP/LoginController.m -------------------------------------------------------------------------------- /BigAPP/BigAPP/LoginController.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengju/iOSDemos/HEAD/BigAPP/BigAPP/LoginController.xib -------------------------------------------------------------------------------- /BigAPP/BigAPP/LoginViewModel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengju/iOSDemos/HEAD/BigAPP/BigAPP/LoginViewModel.h -------------------------------------------------------------------------------- /BigAPP/BigAPP/LoginViewModel.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengju/iOSDemos/HEAD/BigAPP/BigAPP/LoginViewModel.m -------------------------------------------------------------------------------- /BigAPP/BigAPP/ModuleA.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengju/iOSDemos/HEAD/BigAPP/BigAPP/ModuleA.h -------------------------------------------------------------------------------- /BigAPP/BigAPP/ModuleA.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengju/iOSDemos/HEAD/BigAPP/BigAPP/ModuleA.m -------------------------------------------------------------------------------- /BigAPP/BigAPP/ModuleB.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengju/iOSDemos/HEAD/BigAPP/BigAPP/ModuleB.h -------------------------------------------------------------------------------- /BigAPP/BigAPP/ModuleB.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengju/iOSDemos/HEAD/BigAPP/BigAPP/ModuleB.m -------------------------------------------------------------------------------- /BigAPP/BigAPP/SceneDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengju/iOSDemos/HEAD/BigAPP/BigAPP/SceneDelegate.h -------------------------------------------------------------------------------- /BigAPP/BigAPP/SceneDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengju/iOSDemos/HEAD/BigAPP/BigAPP/SceneDelegate.m -------------------------------------------------------------------------------- /BigAPP/BigAPP/TaskController+ModuleA.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengju/iOSDemos/HEAD/BigAPP/BigAPP/TaskController+ModuleA.h -------------------------------------------------------------------------------- /BigAPP/BigAPP/TaskController+ModuleA.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengju/iOSDemos/HEAD/BigAPP/BigAPP/TaskController+ModuleA.m -------------------------------------------------------------------------------- /BigAPP/BigAPP/TaskController+ModuleB.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengju/iOSDemos/HEAD/BigAPP/BigAPP/TaskController+ModuleB.h -------------------------------------------------------------------------------- /BigAPP/BigAPP/TaskController+ModuleB.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengju/iOSDemos/HEAD/BigAPP/BigAPP/TaskController+ModuleB.m -------------------------------------------------------------------------------- /BigAPP/BigAPP/TaskController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengju/iOSDemos/HEAD/BigAPP/BigAPP/TaskController.h -------------------------------------------------------------------------------- /BigAPP/BigAPP/TaskController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengju/iOSDemos/HEAD/BigAPP/BigAPP/TaskController.m -------------------------------------------------------------------------------- /BigAPP/BigAPP/TaskManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengju/iOSDemos/HEAD/BigAPP/BigAPP/TaskManager.h -------------------------------------------------------------------------------- /BigAPP/BigAPP/TaskManager.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengju/iOSDemos/HEAD/BigAPP/BigAPP/TaskManager.m -------------------------------------------------------------------------------- /BigAPP/BigAPP/TaskProtocol.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengju/iOSDemos/HEAD/BigAPP/BigAPP/TaskProtocol.h -------------------------------------------------------------------------------- /BigAPP/BigAPP/UIViewController+Logging.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengju/iOSDemos/HEAD/BigAPP/BigAPP/UIViewController+Logging.h -------------------------------------------------------------------------------- /BigAPP/BigAPP/UIViewController+Logging.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengju/iOSDemos/HEAD/BigAPP/BigAPP/UIViewController+Logging.m -------------------------------------------------------------------------------- /BigAPP/BigAPP/VCCell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengju/iOSDemos/HEAD/BigAPP/BigAPP/VCCell.h -------------------------------------------------------------------------------- /BigAPP/BigAPP/VCCell.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengju/iOSDemos/HEAD/BigAPP/BigAPP/VCCell.m -------------------------------------------------------------------------------- /BigAPP/BigAPP/VCModel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengju/iOSDemos/HEAD/BigAPP/BigAPP/VCModel.h -------------------------------------------------------------------------------- /BigAPP/BigAPP/VCModel.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengju/iOSDemos/HEAD/BigAPP/BigAPP/VCModel.m -------------------------------------------------------------------------------- /BigAPP/BigAPP/ViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengju/iOSDemos/HEAD/BigAPP/BigAPP/ViewController.h -------------------------------------------------------------------------------- /BigAPP/BigAPP/ViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengju/iOSDemos/HEAD/BigAPP/BigAPP/ViewController.m -------------------------------------------------------------------------------- /BigAPP/BigAPP/ZJImageManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengju/iOSDemos/HEAD/BigAPP/BigAPP/ZJImageManager.h -------------------------------------------------------------------------------- /BigAPP/BigAPP/ZJImageManager.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengju/iOSDemos/HEAD/BigAPP/BigAPP/ZJImageManager.m -------------------------------------------------------------------------------- /BigAPP/BigAPP/ZJLayer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengju/iOSDemos/HEAD/BigAPP/BigAPP/ZJLayer.h -------------------------------------------------------------------------------- /BigAPP/BigAPP/ZJLayer.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengju/iOSDemos/HEAD/BigAPP/BigAPP/ZJLayer.m -------------------------------------------------------------------------------- /BigAPP/BigAPP/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengju/iOSDemos/HEAD/BigAPP/BigAPP/main.m -------------------------------------------------------------------------------- /BigAPP/BigAPP/研究SD/SDController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengju/iOSDemos/HEAD/BigAPP/BigAPP/研究SD/SDController.h -------------------------------------------------------------------------------- /BigAPP/BigAPP/研究SD/SDController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengju/iOSDemos/HEAD/BigAPP/BigAPP/研究SD/SDController.m -------------------------------------------------------------------------------- /BigAPP/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengju/iOSDemos/HEAD/BigAPP/Podfile -------------------------------------------------------------------------------- /BigAPP/Podfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengju/iOSDemos/HEAD/BigAPP/Podfile.lock -------------------------------------------------------------------------------- /BigAPP/Pods/Aspects/Aspects.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengju/iOSDemos/HEAD/BigAPP/Pods/Aspects/Aspects.h -------------------------------------------------------------------------------- /BigAPP/Pods/Aspects/Aspects.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengju/iOSDemos/HEAD/BigAPP/Pods/Aspects/Aspects.m -------------------------------------------------------------------------------- /BigAPP/Pods/Aspects/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengju/iOSDemos/HEAD/BigAPP/Pods/Aspects/LICENSE -------------------------------------------------------------------------------- /BigAPP/Pods/Aspects/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengju/iOSDemos/HEAD/BigAPP/Pods/Aspects/README.md -------------------------------------------------------------------------------- /BigAPP/Pods/BlocksKit/BlocksKit/BlocksKit+MessageUI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengju/iOSDemos/HEAD/BigAPP/Pods/BlocksKit/BlocksKit/BlocksKit+MessageUI.h -------------------------------------------------------------------------------- /BigAPP/Pods/BlocksKit/BlocksKit/BlocksKit+UIKit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengju/iOSDemos/HEAD/BigAPP/Pods/BlocksKit/BlocksKit/BlocksKit+UIKit.h -------------------------------------------------------------------------------- /BigAPP/Pods/BlocksKit/BlocksKit/BlocksKit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengju/iOSDemos/HEAD/BigAPP/Pods/BlocksKit/BlocksKit/BlocksKit.h -------------------------------------------------------------------------------- /BigAPP/Pods/BlocksKit/BlocksKit/Core/BKMacros.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengju/iOSDemos/HEAD/BigAPP/Pods/BlocksKit/BlocksKit/Core/BKMacros.h -------------------------------------------------------------------------------- /BigAPP/Pods/BlocksKit/BlocksKit/Core/NSSet+BlocksKit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengju/iOSDemos/HEAD/BigAPP/Pods/BlocksKit/BlocksKit/Core/NSSet+BlocksKit.h -------------------------------------------------------------------------------- /BigAPP/Pods/BlocksKit/BlocksKit/Core/NSSet+BlocksKit.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengju/iOSDemos/HEAD/BigAPP/Pods/BlocksKit/BlocksKit/Core/NSSet+BlocksKit.m -------------------------------------------------------------------------------- /BigAPP/Pods/BlocksKit/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengju/iOSDemos/HEAD/BigAPP/Pods/BlocksKit/LICENSE -------------------------------------------------------------------------------- /BigAPP/Pods/BlocksKit/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengju/iOSDemos/HEAD/BigAPP/Pods/BlocksKit/README.md -------------------------------------------------------------------------------- /BigAPP/Pods/FDFullscreenPopGesture/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengju/iOSDemos/HEAD/BigAPP/Pods/FDFullscreenPopGesture/LICENSE -------------------------------------------------------------------------------- /BigAPP/Pods/FDFullscreenPopGesture/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengju/iOSDemos/HEAD/BigAPP/Pods/FDFullscreenPopGesture/README.md -------------------------------------------------------------------------------- /BigAPP/Pods/KMCGeigerCounter/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengju/iOSDemos/HEAD/BigAPP/Pods/KMCGeigerCounter/LICENSE -------------------------------------------------------------------------------- /BigAPP/Pods/KMCGeigerCounter/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengju/iOSDemos/HEAD/BigAPP/Pods/KMCGeigerCounter/README.md -------------------------------------------------------------------------------- /BigAPP/Pods/Manifest.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengju/iOSDemos/HEAD/BigAPP/Pods/Manifest.lock -------------------------------------------------------------------------------- /BigAPP/Pods/Masonry/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengju/iOSDemos/HEAD/BigAPP/Pods/Masonry/LICENSE -------------------------------------------------------------------------------- /BigAPP/Pods/Masonry/Masonry/MASCompositeConstraint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengju/iOSDemos/HEAD/BigAPP/Pods/Masonry/Masonry/MASCompositeConstraint.h -------------------------------------------------------------------------------- /BigAPP/Pods/Masonry/Masonry/MASCompositeConstraint.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengju/iOSDemos/HEAD/BigAPP/Pods/Masonry/Masonry/MASCompositeConstraint.m -------------------------------------------------------------------------------- /BigAPP/Pods/Masonry/Masonry/MASConstraint+Private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengju/iOSDemos/HEAD/BigAPP/Pods/Masonry/Masonry/MASConstraint+Private.h -------------------------------------------------------------------------------- /BigAPP/Pods/Masonry/Masonry/MASConstraint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengju/iOSDemos/HEAD/BigAPP/Pods/Masonry/Masonry/MASConstraint.h -------------------------------------------------------------------------------- /BigAPP/Pods/Masonry/Masonry/MASConstraint.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengju/iOSDemos/HEAD/BigAPP/Pods/Masonry/Masonry/MASConstraint.m -------------------------------------------------------------------------------- /BigAPP/Pods/Masonry/Masonry/MASConstraintMaker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengju/iOSDemos/HEAD/BigAPP/Pods/Masonry/Masonry/MASConstraintMaker.h -------------------------------------------------------------------------------- /BigAPP/Pods/Masonry/Masonry/MASConstraintMaker.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengju/iOSDemos/HEAD/BigAPP/Pods/Masonry/Masonry/MASConstraintMaker.m -------------------------------------------------------------------------------- /BigAPP/Pods/Masonry/Masonry/MASLayoutConstraint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengju/iOSDemos/HEAD/BigAPP/Pods/Masonry/Masonry/MASLayoutConstraint.h -------------------------------------------------------------------------------- /BigAPP/Pods/Masonry/Masonry/MASLayoutConstraint.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengju/iOSDemos/HEAD/BigAPP/Pods/Masonry/Masonry/MASLayoutConstraint.m -------------------------------------------------------------------------------- /BigAPP/Pods/Masonry/Masonry/MASUtilities.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengju/iOSDemos/HEAD/BigAPP/Pods/Masonry/Masonry/MASUtilities.h -------------------------------------------------------------------------------- /BigAPP/Pods/Masonry/Masonry/MASViewAttribute.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengju/iOSDemos/HEAD/BigAPP/Pods/Masonry/Masonry/MASViewAttribute.h -------------------------------------------------------------------------------- /BigAPP/Pods/Masonry/Masonry/MASViewAttribute.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengju/iOSDemos/HEAD/BigAPP/Pods/Masonry/Masonry/MASViewAttribute.m -------------------------------------------------------------------------------- /BigAPP/Pods/Masonry/Masonry/MASViewConstraint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengju/iOSDemos/HEAD/BigAPP/Pods/Masonry/Masonry/MASViewConstraint.h -------------------------------------------------------------------------------- /BigAPP/Pods/Masonry/Masonry/MASViewConstraint.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengju/iOSDemos/HEAD/BigAPP/Pods/Masonry/Masonry/MASViewConstraint.m -------------------------------------------------------------------------------- /BigAPP/Pods/Masonry/Masonry/Masonry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengju/iOSDemos/HEAD/BigAPP/Pods/Masonry/Masonry/Masonry.h -------------------------------------------------------------------------------- /BigAPP/Pods/Masonry/Masonry/NSArray+MASAdditions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengju/iOSDemos/HEAD/BigAPP/Pods/Masonry/Masonry/NSArray+MASAdditions.h -------------------------------------------------------------------------------- /BigAPP/Pods/Masonry/Masonry/NSArray+MASAdditions.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengju/iOSDemos/HEAD/BigAPP/Pods/Masonry/Masonry/NSArray+MASAdditions.m -------------------------------------------------------------------------------- /BigAPP/Pods/Masonry/Masonry/View+MASAdditions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengju/iOSDemos/HEAD/BigAPP/Pods/Masonry/Masonry/View+MASAdditions.h -------------------------------------------------------------------------------- /BigAPP/Pods/Masonry/Masonry/View+MASAdditions.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengju/iOSDemos/HEAD/BigAPP/Pods/Masonry/Masonry/View+MASAdditions.m -------------------------------------------------------------------------------- /BigAPP/Pods/Masonry/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengju/iOSDemos/HEAD/BigAPP/Pods/Masonry/README.md -------------------------------------------------------------------------------- /BigAPP/Pods/Pods.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengju/iOSDemos/HEAD/BigAPP/Pods/Pods.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /BigAPP/Pods/ReactiveCocoa/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengju/iOSDemos/HEAD/BigAPP/Pods/ReactiveCocoa/LICENSE.md -------------------------------------------------------------------------------- /BigAPP/Pods/ReactiveCocoa/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengju/iOSDemos/HEAD/BigAPP/Pods/ReactiveCocoa/README.md -------------------------------------------------------------------------------- /BigAPP/Pods/ReactiveCocoa/ReactiveCocoa/RACChannel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengju/iOSDemos/HEAD/BigAPP/Pods/ReactiveCocoa/ReactiveCocoa/RACChannel.h -------------------------------------------------------------------------------- /BigAPP/Pods/ReactiveCocoa/ReactiveCocoa/RACChannel.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengju/iOSDemos/HEAD/BigAPP/Pods/ReactiveCocoa/ReactiveCocoa/RACChannel.m -------------------------------------------------------------------------------- /BigAPP/Pods/ReactiveCocoa/ReactiveCocoa/RACCommand.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengju/iOSDemos/HEAD/BigAPP/Pods/ReactiveCocoa/ReactiveCocoa/RACCommand.h -------------------------------------------------------------------------------- /BigAPP/Pods/ReactiveCocoa/ReactiveCocoa/RACCommand.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengju/iOSDemos/HEAD/BigAPP/Pods/ReactiveCocoa/ReactiveCocoa/RACCommand.m -------------------------------------------------------------------------------- /BigAPP/Pods/ReactiveCocoa/ReactiveCocoa/RACDisposable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengju/iOSDemos/HEAD/BigAPP/Pods/ReactiveCocoa/ReactiveCocoa/RACDisposable.h -------------------------------------------------------------------------------- /BigAPP/Pods/ReactiveCocoa/ReactiveCocoa/RACDisposable.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengju/iOSDemos/HEAD/BigAPP/Pods/ReactiveCocoa/ReactiveCocoa/RACDisposable.m -------------------------------------------------------------------------------- /BigAPP/Pods/ReactiveCocoa/ReactiveCocoa/RACEvent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengju/iOSDemos/HEAD/BigAPP/Pods/ReactiveCocoa/ReactiveCocoa/RACEvent.h -------------------------------------------------------------------------------- /BigAPP/Pods/ReactiveCocoa/ReactiveCocoa/RACEvent.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengju/iOSDemos/HEAD/BigAPP/Pods/ReactiveCocoa/ReactiveCocoa/RACEvent.m -------------------------------------------------------------------------------- /BigAPP/Pods/ReactiveCocoa/ReactiveCocoa/RACKVOChannel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengju/iOSDemos/HEAD/BigAPP/Pods/ReactiveCocoa/ReactiveCocoa/RACKVOChannel.h -------------------------------------------------------------------------------- /BigAPP/Pods/ReactiveCocoa/ReactiveCocoa/RACKVOChannel.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengju/iOSDemos/HEAD/BigAPP/Pods/ReactiveCocoa/ReactiveCocoa/RACKVOChannel.m -------------------------------------------------------------------------------- /BigAPP/Pods/ReactiveCocoa/ReactiveCocoa/RACKVOProxy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengju/iOSDemos/HEAD/BigAPP/Pods/ReactiveCocoa/ReactiveCocoa/RACKVOProxy.h -------------------------------------------------------------------------------- /BigAPP/Pods/ReactiveCocoa/ReactiveCocoa/RACKVOProxy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengju/iOSDemos/HEAD/BigAPP/Pods/ReactiveCocoa/ReactiveCocoa/RACKVOProxy.m -------------------------------------------------------------------------------- /BigAPP/Pods/ReactiveCocoa/ReactiveCocoa/RACScheduler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengju/iOSDemos/HEAD/BigAPP/Pods/ReactiveCocoa/ReactiveCocoa/RACScheduler.h -------------------------------------------------------------------------------- /BigAPP/Pods/ReactiveCocoa/ReactiveCocoa/RACScheduler.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengju/iOSDemos/HEAD/BigAPP/Pods/ReactiveCocoa/ReactiveCocoa/RACScheduler.m -------------------------------------------------------------------------------- /BigAPP/Pods/ReactiveCocoa/ReactiveCocoa/RACSequence.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengju/iOSDemos/HEAD/BigAPP/Pods/ReactiveCocoa/ReactiveCocoa/RACSequence.h -------------------------------------------------------------------------------- /BigAPP/Pods/ReactiveCocoa/ReactiveCocoa/RACSequence.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengju/iOSDemos/HEAD/BigAPP/Pods/ReactiveCocoa/ReactiveCocoa/RACSequence.m -------------------------------------------------------------------------------- /BigAPP/Pods/ReactiveCocoa/ReactiveCocoa/RACSignal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengju/iOSDemos/HEAD/BigAPP/Pods/ReactiveCocoa/ReactiveCocoa/RACSignal.h -------------------------------------------------------------------------------- /BigAPP/Pods/ReactiveCocoa/ReactiveCocoa/RACSignal.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengju/iOSDemos/HEAD/BigAPP/Pods/ReactiveCocoa/ReactiveCocoa/RACSignal.m -------------------------------------------------------------------------------- /BigAPP/Pods/ReactiveCocoa/ReactiveCocoa/RACStream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengju/iOSDemos/HEAD/BigAPP/Pods/ReactiveCocoa/ReactiveCocoa/RACStream.h -------------------------------------------------------------------------------- /BigAPP/Pods/ReactiveCocoa/ReactiveCocoa/RACStream.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengju/iOSDemos/HEAD/BigAPP/Pods/ReactiveCocoa/ReactiveCocoa/RACStream.m -------------------------------------------------------------------------------- /BigAPP/Pods/ReactiveCocoa/ReactiveCocoa/RACSubject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengju/iOSDemos/HEAD/BigAPP/Pods/ReactiveCocoa/ReactiveCocoa/RACSubject.h -------------------------------------------------------------------------------- /BigAPP/Pods/ReactiveCocoa/ReactiveCocoa/RACSubject.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengju/iOSDemos/HEAD/BigAPP/Pods/ReactiveCocoa/ReactiveCocoa/RACSubject.m -------------------------------------------------------------------------------- /BigAPP/Pods/ReactiveCocoa/ReactiveCocoa/RACSubscriber.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengju/iOSDemos/HEAD/BigAPP/Pods/ReactiveCocoa/ReactiveCocoa/RACSubscriber.h -------------------------------------------------------------------------------- /BigAPP/Pods/ReactiveCocoa/ReactiveCocoa/RACSubscriber.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengju/iOSDemos/HEAD/BigAPP/Pods/ReactiveCocoa/ReactiveCocoa/RACSubscriber.m -------------------------------------------------------------------------------- /BigAPP/Pods/ReactiveCocoa/ReactiveCocoa/RACTuple.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengju/iOSDemos/HEAD/BigAPP/Pods/ReactiveCocoa/ReactiveCocoa/RACTuple.h -------------------------------------------------------------------------------- /BigAPP/Pods/ReactiveCocoa/ReactiveCocoa/RACTuple.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengju/iOSDemos/HEAD/BigAPP/Pods/ReactiveCocoa/ReactiveCocoa/RACTuple.m -------------------------------------------------------------------------------- /BigAPP/Pods/ReactiveCocoa/ReactiveCocoa/RACUnit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengju/iOSDemos/HEAD/BigAPP/Pods/ReactiveCocoa/ReactiveCocoa/RACUnit.h -------------------------------------------------------------------------------- /BigAPP/Pods/ReactiveCocoa/ReactiveCocoa/RACUnit.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengju/iOSDemos/HEAD/BigAPP/Pods/ReactiveCocoa/ReactiveCocoa/RACUnit.m -------------------------------------------------------------------------------- /BigAPP/Pods/ReactiveCocoa/ReactiveCocoa/ReactiveCocoa.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengju/iOSDemos/HEAD/BigAPP/Pods/ReactiveCocoa/ReactiveCocoa/ReactiveCocoa.h -------------------------------------------------------------------------------- /BigAPP/Pods/SDWebImage/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengju/iOSDemos/HEAD/BigAPP/Pods/SDWebImage/LICENSE -------------------------------------------------------------------------------- /BigAPP/Pods/SDWebImage/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengju/iOSDemos/HEAD/BigAPP/Pods/SDWebImage/README.md -------------------------------------------------------------------------------- /BigAPP/Pods/SDWebImage/SDWebImage/Core/SDDiskCache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengju/iOSDemos/HEAD/BigAPP/Pods/SDWebImage/SDWebImage/Core/SDDiskCache.h -------------------------------------------------------------------------------- /BigAPP/Pods/SDWebImage/SDWebImage/Core/SDDiskCache.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengju/iOSDemos/HEAD/BigAPP/Pods/SDWebImage/SDWebImage/Core/SDDiskCache.m -------------------------------------------------------------------------------- /BigAPP/Pods/SDWebImage/SDWebImage/Core/SDImageCache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengju/iOSDemos/HEAD/BigAPP/Pods/SDWebImage/SDWebImage/Core/SDImageCache.h -------------------------------------------------------------------------------- /BigAPP/Pods/SDWebImage/SDWebImage/Core/SDImageCache.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengju/iOSDemos/HEAD/BigAPP/Pods/SDWebImage/SDWebImage/Core/SDImageCache.m -------------------------------------------------------------------------------- /BigAPP/Pods/SDWebImage/SDWebImage/Core/SDImageCoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengju/iOSDemos/HEAD/BigAPP/Pods/SDWebImage/SDWebImage/Core/SDImageCoder.h -------------------------------------------------------------------------------- /BigAPP/Pods/SDWebImage/SDWebImage/Core/SDImageCoder.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengju/iOSDemos/HEAD/BigAPP/Pods/SDWebImage/SDWebImage/Core/SDImageCoder.m -------------------------------------------------------------------------------- /BigAPP/Pods/SDWebImage/SDWebImage/Core/SDImageFrame.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengju/iOSDemos/HEAD/BigAPP/Pods/SDWebImage/SDWebImage/Core/SDImageFrame.h -------------------------------------------------------------------------------- /BigAPP/Pods/SDWebImage/SDWebImage/Core/SDImageFrame.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengju/iOSDemos/HEAD/BigAPP/Pods/SDWebImage/SDWebImage/Core/SDImageFrame.m -------------------------------------------------------------------------------- /BigAPP/Pods/SDWebImage/SDWebImage/Core/SDImageIOCoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengju/iOSDemos/HEAD/BigAPP/Pods/SDWebImage/SDWebImage/Core/SDImageIOCoder.h -------------------------------------------------------------------------------- /BigAPP/Pods/SDWebImage/SDWebImage/Core/SDImageIOCoder.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengju/iOSDemos/HEAD/BigAPP/Pods/SDWebImage/SDWebImage/Core/SDImageIOCoder.m -------------------------------------------------------------------------------- /BigAPP/Pods/SDWebImage/SDWebImage/Core/SDImageLoader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengju/iOSDemos/HEAD/BigAPP/Pods/SDWebImage/SDWebImage/Core/SDImageLoader.h -------------------------------------------------------------------------------- /BigAPP/Pods/SDWebImage/SDWebImage/Core/SDImageLoader.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengju/iOSDemos/HEAD/BigAPP/Pods/SDWebImage/SDWebImage/Core/SDImageLoader.m -------------------------------------------------------------------------------- /BigAPP/Pods/SDWebImage/SDWebImage/Core/SDMemoryCache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengju/iOSDemos/HEAD/BigAPP/Pods/SDWebImage/SDWebImage/Core/SDMemoryCache.h -------------------------------------------------------------------------------- /BigAPP/Pods/SDWebImage/SDWebImage/Core/SDMemoryCache.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengju/iOSDemos/HEAD/BigAPP/Pods/SDWebImage/SDWebImage/Core/SDMemoryCache.m -------------------------------------------------------------------------------- /BigAPP/Pods/SDWebImage/SDWebImage/Core/UIImage+GIF.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengju/iOSDemos/HEAD/BigAPP/Pods/SDWebImage/SDWebImage/Core/UIImage+GIF.h -------------------------------------------------------------------------------- /BigAPP/Pods/SDWebImage/SDWebImage/Core/UIImage+GIF.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengju/iOSDemos/HEAD/BigAPP/Pods/SDWebImage/SDWebImage/Core/UIImage+GIF.m -------------------------------------------------------------------------------- /BigAPP/Pods/SDWebImage/SDWebImage/Private/SDWeakProxy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengju/iOSDemos/HEAD/BigAPP/Pods/SDWebImage/SDWebImage/Private/SDWeakProxy.h -------------------------------------------------------------------------------- /BigAPP/Pods/SDWebImage/SDWebImage/Private/SDWeakProxy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengju/iOSDemos/HEAD/BigAPP/Pods/SDWebImage/SDWebImage/Private/SDWeakProxy.m -------------------------------------------------------------------------------- /BigAPP/Pods/SDWebImage/WebImage/SDWebImage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengju/iOSDemos/HEAD/BigAPP/Pods/SDWebImage/WebImage/SDWebImage.h -------------------------------------------------------------------------------- /BigAPP/Pods/SVProgressHUD/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengju/iOSDemos/HEAD/BigAPP/Pods/SVProgressHUD/LICENSE -------------------------------------------------------------------------------- /BigAPP/Pods/SVProgressHUD/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengju/iOSDemos/HEAD/BigAPP/Pods/SVProgressHUD/README.md -------------------------------------------------------------------------------- /BigAPP/Pods/SVProgressHUD/SVProgressHUD/SVProgressHUD.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengju/iOSDemos/HEAD/BigAPP/Pods/SVProgressHUD/SVProgressHUD/SVProgressHUD.h -------------------------------------------------------------------------------- /BigAPP/Pods/SVProgressHUD/SVProgressHUD/SVProgressHUD.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengju/iOSDemos/HEAD/BigAPP/Pods/SVProgressHUD/SVProgressHUD/SVProgressHUD.m -------------------------------------------------------------------------------- /BigAPP/Pods/Target Support Files/Aspects/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengju/iOSDemos/HEAD/BigAPP/Pods/Target Support Files/Aspects/Info.plist -------------------------------------------------------------------------------- /BigAPP/Pods/Target Support Files/BlocksKit/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengju/iOSDemos/HEAD/BigAPP/Pods/Target Support Files/BlocksKit/Info.plist -------------------------------------------------------------------------------- /BigAPP/Pods/Target Support Files/Masonry/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengju/iOSDemos/HEAD/BigAPP/Pods/Target Support Files/Masonry/Info.plist -------------------------------------------------------------------------------- /BigAPP/Pods/Target Support Files/Pods-BigAPP/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengju/iOSDemos/HEAD/BigAPP/Pods/Target Support Files/Pods-BigAPP/Info.plist -------------------------------------------------------------------------------- /BigAPP/Pods/Target Support Files/Toast/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengju/iOSDemos/HEAD/BigAPP/Pods/Target Support Files/Toast/Info.plist -------------------------------------------------------------------------------- /BigAPP/Pods/Target Support Files/Toast/Toast-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengju/iOSDemos/HEAD/BigAPP/Pods/Target Support Files/Toast/Toast-Info.plist -------------------------------------------------------------------------------- /BigAPP/Pods/Target Support Files/Toast/Toast-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengju/iOSDemos/HEAD/BigAPP/Pods/Target Support Files/Toast/Toast-dummy.m -------------------------------------------------------------------------------- /BigAPP/Pods/Target Support Files/Toast/Toast-prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengju/iOSDemos/HEAD/BigAPP/Pods/Target Support Files/Toast/Toast-prefix.pch -------------------------------------------------------------------------------- /BigAPP/Pods/Target Support Files/Toast/Toast-umbrella.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengju/iOSDemos/HEAD/BigAPP/Pods/Target Support Files/Toast/Toast-umbrella.h -------------------------------------------------------------------------------- /BigAPP/Pods/Target Support Files/Toast/Toast.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengju/iOSDemos/HEAD/BigAPP/Pods/Target Support Files/Toast/Toast.modulemap -------------------------------------------------------------------------------- /BigAPP/Pods/Target Support Files/Toast/Toast.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengju/iOSDemos/HEAD/BigAPP/Pods/Target Support Files/Toast/Toast.xcconfig -------------------------------------------------------------------------------- /BigAPP/Pods/Toast/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengju/iOSDemos/HEAD/BigAPP/Pods/Toast/README.md -------------------------------------------------------------------------------- /BigAPP/Pods/Toast/Toast-Framework/Toast.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengju/iOSDemos/HEAD/BigAPP/Pods/Toast/Toast-Framework/Toast.h -------------------------------------------------------------------------------- /BigAPP/Pods/Toast/Toast/UIView+Toast.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengju/iOSDemos/HEAD/BigAPP/Pods/Toast/Toast/UIView+Toast.h -------------------------------------------------------------------------------- /BigAPP/Pods/Toast/Toast/UIView+Toast.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengju/iOSDemos/HEAD/BigAPP/Pods/Toast/Toast/UIView+Toast.m -------------------------------------------------------------------------------- /BigAPP/Pods/Toast/license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengju/iOSDemos/HEAD/BigAPP/Pods/Toast/license -------------------------------------------------------------------------------- /BigAPP/Swift/BigAPP-Bridging-Header.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengju/iOSDemos/HEAD/BigAPP/Swift/BigAPP-Bridging-Header.h -------------------------------------------------------------------------------- /BigAPP/Swift/FriendModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengju/iOSDemos/HEAD/BigAPP/Swift/FriendModel.swift -------------------------------------------------------------------------------- /BigAPP/Swift/FriendsController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengju/iOSDemos/HEAD/BigAPP/Swift/FriendsController.swift -------------------------------------------------------------------------------- /BigAPP/ThirdPart/AFNetworking/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengju/iOSDemos/HEAD/BigAPP/ThirdPart/AFNetworking/README.md -------------------------------------------------------------------------------- /BigAPP/ThirdPart/SDWebImage/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengju/iOSDemos/HEAD/BigAPP/ThirdPart/SDWebImage/README.md -------------------------------------------------------------------------------- /BigAPP/ThirdPart/SDWebImage/WebImage/SDWebImage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengju/iOSDemos/HEAD/BigAPP/ThirdPart/SDWebImage/WebImage/SDWebImage.h -------------------------------------------------------------------------------- /BigAPP/test.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengju/iOSDemos/HEAD/BigAPP/test.jpg -------------------------------------------------------------------------------- /Calculator/Calculator.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengju/iOSDemos/HEAD/Calculator/Calculator.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Calculator/Calculator/Add/AddFactory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengju/iOSDemos/HEAD/Calculator/Calculator/Add/AddFactory.h -------------------------------------------------------------------------------- /Calculator/Calculator/Add/AddFactory.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengju/iOSDemos/HEAD/Calculator/Calculator/Add/AddFactory.m -------------------------------------------------------------------------------- /Calculator/Calculator/Add/AddOperation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengju/iOSDemos/HEAD/Calculator/Calculator/Add/AddOperation.h -------------------------------------------------------------------------------- /Calculator/Calculator/Add/AddOperation.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengju/iOSDemos/HEAD/Calculator/Calculator/Add/AddOperation.m -------------------------------------------------------------------------------- /Calculator/Calculator/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengju/iOSDemos/HEAD/Calculator/Calculator/AppDelegate.h -------------------------------------------------------------------------------- /Calculator/Calculator/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengju/iOSDemos/HEAD/Calculator/Calculator/AppDelegate.m -------------------------------------------------------------------------------- /Calculator/Calculator/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengju/iOSDemos/HEAD/Calculator/Calculator/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /Calculator/Calculator/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengju/iOSDemos/HEAD/Calculator/Calculator/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /Calculator/Calculator/Factory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengju/iOSDemos/HEAD/Calculator/Calculator/Factory.h -------------------------------------------------------------------------------- /Calculator/Calculator/Factory.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengju/iOSDemos/HEAD/Calculator/Calculator/Factory.m -------------------------------------------------------------------------------- /Calculator/Calculator/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengju/iOSDemos/HEAD/Calculator/Calculator/Info.plist -------------------------------------------------------------------------------- /Calculator/Calculator/Operation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengju/iOSDemos/HEAD/Calculator/Calculator/Operation.h -------------------------------------------------------------------------------- /Calculator/Calculator/Operation.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengju/iOSDemos/HEAD/Calculator/Calculator/Operation.m -------------------------------------------------------------------------------- /Calculator/Calculator/SceneDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengju/iOSDemos/HEAD/Calculator/Calculator/SceneDelegate.h -------------------------------------------------------------------------------- /Calculator/Calculator/SceneDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengju/iOSDemos/HEAD/Calculator/Calculator/SceneDelegate.m -------------------------------------------------------------------------------- /Calculator/Calculator/Sub/SubFactory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengju/iOSDemos/HEAD/Calculator/Calculator/Sub/SubFactory.h -------------------------------------------------------------------------------- /Calculator/Calculator/Sub/SubFactory.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengju/iOSDemos/HEAD/Calculator/Calculator/Sub/SubFactory.m -------------------------------------------------------------------------------- /Calculator/Calculator/Sub/SubOperation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengju/iOSDemos/HEAD/Calculator/Calculator/Sub/SubOperation.h -------------------------------------------------------------------------------- /Calculator/Calculator/Sub/SubOperation.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengju/iOSDemos/HEAD/Calculator/Calculator/Sub/SubOperation.m -------------------------------------------------------------------------------- /Calculator/Calculator/ViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengju/iOSDemos/HEAD/Calculator/Calculator/ViewController.h -------------------------------------------------------------------------------- /Calculator/Calculator/ViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengju/iOSDemos/HEAD/Calculator/Calculator/ViewController.m -------------------------------------------------------------------------------- /Calculator/Calculator/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengju/iOSDemos/HEAD/Calculator/Calculator/main.m -------------------------------------------------------------------------------- /CallPhoneDemo/CallPhoneDemo.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengju/iOSDemos/HEAD/CallPhoneDemo/CallPhoneDemo.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /CallPhoneDemo/CallPhoneDemo/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengju/iOSDemos/HEAD/CallPhoneDemo/CallPhoneDemo/AppDelegate.h -------------------------------------------------------------------------------- /CallPhoneDemo/CallPhoneDemo/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengju/iOSDemos/HEAD/CallPhoneDemo/CallPhoneDemo/AppDelegate.m -------------------------------------------------------------------------------- /CallPhoneDemo/CallPhoneDemo/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengju/iOSDemos/HEAD/CallPhoneDemo/CallPhoneDemo/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /CallPhoneDemo/CallPhoneDemo/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengju/iOSDemos/HEAD/CallPhoneDemo/CallPhoneDemo/Info.plist -------------------------------------------------------------------------------- /CallPhoneDemo/CallPhoneDemo/ViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengju/iOSDemos/HEAD/CallPhoneDemo/CallPhoneDemo/ViewController.h -------------------------------------------------------------------------------- /CallPhoneDemo/CallPhoneDemo/ViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengju/iOSDemos/HEAD/CallPhoneDemo/CallPhoneDemo/ViewController.m -------------------------------------------------------------------------------- /CallPhoneDemo/CallPhoneDemo/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengju/iOSDemos/HEAD/CallPhoneDemo/CallPhoneDemo/main.m -------------------------------------------------------------------------------- /CircleDemo/CircleDemo.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengju/iOSDemos/HEAD/CircleDemo/CircleDemo.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /CircleDemo/CircleDemo/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengju/iOSDemos/HEAD/CircleDemo/CircleDemo/AppDelegate.swift -------------------------------------------------------------------------------- /CircleDemo/CircleDemo/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengju/iOSDemos/HEAD/CircleDemo/CircleDemo/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /CircleDemo/CircleDemo/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengju/iOSDemos/HEAD/CircleDemo/CircleDemo/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /CircleDemo/CircleDemo/HeadFile.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengju/iOSDemos/HEAD/CircleDemo/CircleDemo/HeadFile.swift -------------------------------------------------------------------------------- /CircleDemo/CircleDemo/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengju/iOSDemos/HEAD/CircleDemo/CircleDemo/Info.plist -------------------------------------------------------------------------------- /CircleDemo/CircleDemo/UIView+.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengju/iOSDemos/HEAD/CircleDemo/CircleDemo/UIView+.swift -------------------------------------------------------------------------------- /CircleDemo/CircleDemo/ViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengju/iOSDemos/HEAD/CircleDemo/CircleDemo/ViewController.swift -------------------------------------------------------------------------------- /CircleDemo/CircleDemo/ZJCircleView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengju/iOSDemos/HEAD/CircleDemo/CircleDemo/ZJCircleView.swift -------------------------------------------------------------------------------- /CircularDemo/CircularDemo.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengju/iOSDemos/HEAD/CircularDemo/CircularDemo.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /CircularDemo/CircularDemo/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengju/iOSDemos/HEAD/CircularDemo/CircularDemo/AppDelegate.h -------------------------------------------------------------------------------- /CircularDemo/CircularDemo/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengju/iOSDemos/HEAD/CircularDemo/CircularDemo/AppDelegate.m -------------------------------------------------------------------------------- /CircularDemo/CircularDemo/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengju/iOSDemos/HEAD/CircularDemo/CircularDemo/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /CircularDemo/CircularDemo/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengju/iOSDemos/HEAD/CircularDemo/CircularDemo/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /CircularDemo/CircularDemo/DetailController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengju/iOSDemos/HEAD/CircularDemo/CircularDemo/DetailController.h -------------------------------------------------------------------------------- /CircularDemo/CircularDemo/DetailController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengju/iOSDemos/HEAD/CircularDemo/CircularDemo/DetailController.m -------------------------------------------------------------------------------- /CircularDemo/CircularDemo/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengju/iOSDemos/HEAD/CircularDemo/CircularDemo/Info.plist -------------------------------------------------------------------------------- /CircularDemo/CircularDemo/ViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengju/iOSDemos/HEAD/CircularDemo/CircularDemo/ViewController.h -------------------------------------------------------------------------------- /CircularDemo/CircularDemo/ViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengju/iOSDemos/HEAD/CircularDemo/CircularDemo/ViewController.m -------------------------------------------------------------------------------- /CircularDemo/CircularDemo/ZJHttpManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengju/iOSDemos/HEAD/CircularDemo/CircularDemo/ZJHttpManager.h -------------------------------------------------------------------------------- /CircularDemo/CircularDemo/ZJHttpManager.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengju/iOSDemos/HEAD/CircularDemo/CircularDemo/ZJHttpManager.m -------------------------------------------------------------------------------- /CircularDemo/CircularDemo/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengju/iOSDemos/HEAD/CircularDemo/CircularDemo/main.m -------------------------------------------------------------------------------- /GCD/GCD_Demo/GCD_Demo.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengju/iOSDemos/HEAD/GCD/GCD_Demo/GCD_Demo.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /GCD/GCD_Demo/GCD_Demo/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengju/iOSDemos/HEAD/GCD/GCD_Demo/GCD_Demo/AppDelegate.h -------------------------------------------------------------------------------- /GCD/GCD_Demo/GCD_Demo/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengju/iOSDemos/HEAD/GCD/GCD_Demo/GCD_Demo/AppDelegate.m -------------------------------------------------------------------------------- /GCD/GCD_Demo/GCD_Demo/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengju/iOSDemos/HEAD/GCD/GCD_Demo/GCD_Demo/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /GCD/GCD_Demo/GCD_Demo/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengju/iOSDemos/HEAD/GCD/GCD_Demo/GCD_Demo/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /GCD/GCD_Demo/GCD_Demo/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengju/iOSDemos/HEAD/GCD/GCD_Demo/GCD_Demo/Info.plist -------------------------------------------------------------------------------- /GCD/GCD_Demo/GCD_Demo/TextController.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengju/iOSDemos/HEAD/GCD/GCD_Demo/GCD_Demo/TextController.cpp -------------------------------------------------------------------------------- /GCD/GCD_Demo/GCD_Demo/TextController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengju/iOSDemos/HEAD/GCD/GCD_Demo/GCD_Demo/TextController.h -------------------------------------------------------------------------------- /GCD/GCD_Demo/GCD_Demo/TextController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengju/iOSDemos/HEAD/GCD/GCD_Demo/GCD_Demo/TextController.m -------------------------------------------------------------------------------- /GCD/GCD_Demo/GCD_Demo/ViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengju/iOSDemos/HEAD/GCD/GCD_Demo/GCD_Demo/ViewController.h -------------------------------------------------------------------------------- /GCD/GCD_Demo/GCD_Demo/ViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengju/iOSDemos/HEAD/GCD/GCD_Demo/GCD_Demo/ViewController.m -------------------------------------------------------------------------------- /GCD/GCD_Demo/GCD_Demo/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengju/iOSDemos/HEAD/GCD/GCD_Demo/GCD_Demo/main.cpp -------------------------------------------------------------------------------- /GCD/GCD_Demo/GCD_Demo/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengju/iOSDemos/HEAD/GCD/GCD_Demo/GCD_Demo/main.m -------------------------------------------------------------------------------- /GPUImage/CResources/2222.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengju/iOSDemos/HEAD/GPUImage/CResources/2222.mp4 -------------------------------------------------------------------------------- /GPUImage/CResources/2233.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengju/iOSDemos/HEAD/GPUImage/CResources/2233.mp4 -------------------------------------------------------------------------------- /GPUImage/CResources/WID-small.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengju/iOSDemos/HEAD/GPUImage/CResources/WID-small.jpg -------------------------------------------------------------------------------- /GPUImage/CResources/驾校视频.MOV: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengju/iOSDemos/HEAD/GPUImage/CResources/驾校视频.MOV -------------------------------------------------------------------------------- /GPUImage/GPUImage-01/LearnGPUImage/LearnGPUImage/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengju/iOSDemos/HEAD/GPUImage/GPUImage-01/LearnGPUImage/LearnGPUImage/main.m -------------------------------------------------------------------------------- /GPUImage/GPUImage-02/LearnGPUImage/LearnGPUImage/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengju/iOSDemos/HEAD/GPUImage/GPUImage-02/LearnGPUImage/LearnGPUImage/main.m -------------------------------------------------------------------------------- /GPUImage/GPUImage-03/LearnGPUImage/LearnGPUImage/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengju/iOSDemos/HEAD/GPUImage/GPUImage-03/LearnGPUImage/LearnGPUImage/main.m -------------------------------------------------------------------------------- /GPUImage/GPUImage-04/LearnGPUImage/LearnGPUImage/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengju/iOSDemos/HEAD/GPUImage/GPUImage-04/LearnGPUImage/LearnGPUImage/main.m -------------------------------------------------------------------------------- /GPUImage/framework/GPUImage.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengju/iOSDemos/HEAD/GPUImage/framework/GPUImage.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /GPUImage/framework/Source/GLProgram.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengju/iOSDemos/HEAD/GPUImage/framework/Source/GLProgram.h -------------------------------------------------------------------------------- /GPUImage/framework/Source/GLProgram.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengju/iOSDemos/HEAD/GPUImage/framework/Source/GLProgram.m -------------------------------------------------------------------------------- /GPUImage/framework/Source/GPUImage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengju/iOSDemos/HEAD/GPUImage/framework/Source/GPUImage.h -------------------------------------------------------------------------------- /GPUImage/framework/Source/GPUImageAddBlendFilter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengju/iOSDemos/HEAD/GPUImage/framework/Source/GPUImageAddBlendFilter.h -------------------------------------------------------------------------------- /GPUImage/framework/Source/GPUImageAddBlendFilter.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengju/iOSDemos/HEAD/GPUImage/framework/Source/GPUImageAddBlendFilter.m -------------------------------------------------------------------------------- /GPUImage/framework/Source/GPUImageAlphaBlendFilter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengju/iOSDemos/HEAD/GPUImage/framework/Source/GPUImageAlphaBlendFilter.h -------------------------------------------------------------------------------- /GPUImage/framework/Source/GPUImageAlphaBlendFilter.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengju/iOSDemos/HEAD/GPUImage/framework/Source/GPUImageAlphaBlendFilter.m -------------------------------------------------------------------------------- /GPUImage/framework/Source/GPUImageAmatorkaFilter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengju/iOSDemos/HEAD/GPUImage/framework/Source/GPUImageAmatorkaFilter.h -------------------------------------------------------------------------------- /GPUImage/framework/Source/GPUImageAmatorkaFilter.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengju/iOSDemos/HEAD/GPUImage/framework/Source/GPUImageAmatorkaFilter.m -------------------------------------------------------------------------------- /GPUImage/framework/Source/GPUImageAverageColor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengju/iOSDemos/HEAD/GPUImage/framework/Source/GPUImageAverageColor.h -------------------------------------------------------------------------------- /GPUImage/framework/Source/GPUImageAverageColor.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengju/iOSDemos/HEAD/GPUImage/framework/Source/GPUImageAverageColor.m -------------------------------------------------------------------------------- /GPUImage/framework/Source/GPUImageBilateralFilter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengju/iOSDemos/HEAD/GPUImage/framework/Source/GPUImageBilateralFilter.h -------------------------------------------------------------------------------- /GPUImage/framework/Source/GPUImageBilateralFilter.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengju/iOSDemos/HEAD/GPUImage/framework/Source/GPUImageBilateralFilter.m -------------------------------------------------------------------------------- /GPUImage/framework/Source/GPUImageBoxBlurFilter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengju/iOSDemos/HEAD/GPUImage/framework/Source/GPUImageBoxBlurFilter.h -------------------------------------------------------------------------------- /GPUImage/framework/Source/GPUImageBoxBlurFilter.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengju/iOSDemos/HEAD/GPUImage/framework/Source/GPUImageBoxBlurFilter.m -------------------------------------------------------------------------------- /GPUImage/framework/Source/GPUImageBrightnessFilter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengju/iOSDemos/HEAD/GPUImage/framework/Source/GPUImageBrightnessFilter.h -------------------------------------------------------------------------------- /GPUImage/framework/Source/GPUImageBrightnessFilter.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengju/iOSDemos/HEAD/GPUImage/framework/Source/GPUImageBrightnessFilter.m -------------------------------------------------------------------------------- /GPUImage/framework/Source/GPUImageBuffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengju/iOSDemos/HEAD/GPUImage/framework/Source/GPUImageBuffer.h -------------------------------------------------------------------------------- /GPUImage/framework/Source/GPUImageBuffer.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengju/iOSDemos/HEAD/GPUImage/framework/Source/GPUImageBuffer.m -------------------------------------------------------------------------------- /GPUImage/framework/Source/GPUImageChromaKeyFilter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengju/iOSDemos/HEAD/GPUImage/framework/Source/GPUImageChromaKeyFilter.h -------------------------------------------------------------------------------- /GPUImage/framework/Source/GPUImageChromaKeyFilter.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengju/iOSDemos/HEAD/GPUImage/framework/Source/GPUImageChromaKeyFilter.m -------------------------------------------------------------------------------- /GPUImage/framework/Source/GPUImageClosingFilter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengju/iOSDemos/HEAD/GPUImage/framework/Source/GPUImageClosingFilter.h -------------------------------------------------------------------------------- /GPUImage/framework/Source/GPUImageClosingFilter.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengju/iOSDemos/HEAD/GPUImage/framework/Source/GPUImageClosingFilter.m -------------------------------------------------------------------------------- /GPUImage/framework/Source/GPUImageColorBlendFilter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengju/iOSDemos/HEAD/GPUImage/framework/Source/GPUImageColorBlendFilter.h -------------------------------------------------------------------------------- /GPUImage/framework/Source/GPUImageColorBlendFilter.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengju/iOSDemos/HEAD/GPUImage/framework/Source/GPUImageColorBlendFilter.m -------------------------------------------------------------------------------- /GPUImage/framework/Source/GPUImageColorConversion.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengju/iOSDemos/HEAD/GPUImage/framework/Source/GPUImageColorConversion.h -------------------------------------------------------------------------------- /GPUImage/framework/Source/GPUImageColorConversion.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengju/iOSDemos/HEAD/GPUImage/framework/Source/GPUImageColorConversion.m -------------------------------------------------------------------------------- /GPUImage/framework/Source/GPUImageColorInvertFilter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengju/iOSDemos/HEAD/GPUImage/framework/Source/GPUImageColorInvertFilter.h -------------------------------------------------------------------------------- /GPUImage/framework/Source/GPUImageColorInvertFilter.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengju/iOSDemos/HEAD/GPUImage/framework/Source/GPUImageColorInvertFilter.m -------------------------------------------------------------------------------- /GPUImage/framework/Source/GPUImageColorMatrixFilter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengju/iOSDemos/HEAD/GPUImage/framework/Source/GPUImageColorMatrixFilter.h -------------------------------------------------------------------------------- /GPUImage/framework/Source/GPUImageColorMatrixFilter.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengju/iOSDemos/HEAD/GPUImage/framework/Source/GPUImageColorMatrixFilter.m -------------------------------------------------------------------------------- /GPUImage/framework/Source/GPUImageContrastFilter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengju/iOSDemos/HEAD/GPUImage/framework/Source/GPUImageContrastFilter.h -------------------------------------------------------------------------------- /GPUImage/framework/Source/GPUImageContrastFilter.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengju/iOSDemos/HEAD/GPUImage/framework/Source/GPUImageContrastFilter.m -------------------------------------------------------------------------------- /GPUImage/framework/Source/GPUImageCropFilter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengju/iOSDemos/HEAD/GPUImage/framework/Source/GPUImageCropFilter.h -------------------------------------------------------------------------------- /GPUImage/framework/Source/GPUImageCropFilter.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengju/iOSDemos/HEAD/GPUImage/framework/Source/GPUImageCropFilter.m -------------------------------------------------------------------------------- /GPUImage/framework/Source/GPUImageCrosshatchFilter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengju/iOSDemos/HEAD/GPUImage/framework/Source/GPUImageCrosshatchFilter.h -------------------------------------------------------------------------------- /GPUImage/framework/Source/GPUImageCrosshatchFilter.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengju/iOSDemos/HEAD/GPUImage/framework/Source/GPUImageCrosshatchFilter.m -------------------------------------------------------------------------------- /GPUImage/framework/Source/GPUImageDarkenBlendFilter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengju/iOSDemos/HEAD/GPUImage/framework/Source/GPUImageDarkenBlendFilter.h -------------------------------------------------------------------------------- /GPUImage/framework/Source/GPUImageDarkenBlendFilter.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengju/iOSDemos/HEAD/GPUImage/framework/Source/GPUImageDarkenBlendFilter.m -------------------------------------------------------------------------------- /GPUImage/framework/Source/GPUImageDilationFilter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengju/iOSDemos/HEAD/GPUImage/framework/Source/GPUImageDilationFilter.h -------------------------------------------------------------------------------- /GPUImage/framework/Source/GPUImageDilationFilter.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengju/iOSDemos/HEAD/GPUImage/framework/Source/GPUImageDilationFilter.m -------------------------------------------------------------------------------- /GPUImage/framework/Source/GPUImageDivideBlendFilter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengju/iOSDemos/HEAD/GPUImage/framework/Source/GPUImageDivideBlendFilter.h -------------------------------------------------------------------------------- /GPUImage/framework/Source/GPUImageDivideBlendFilter.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengju/iOSDemos/HEAD/GPUImage/framework/Source/GPUImageDivideBlendFilter.m -------------------------------------------------------------------------------- /GPUImage/framework/Source/GPUImageEmbossFilter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengju/iOSDemos/HEAD/GPUImage/framework/Source/GPUImageEmbossFilter.h -------------------------------------------------------------------------------- /GPUImage/framework/Source/GPUImageEmbossFilter.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengju/iOSDemos/HEAD/GPUImage/framework/Source/GPUImageEmbossFilter.m -------------------------------------------------------------------------------- /GPUImage/framework/Source/GPUImageErosionFilter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengju/iOSDemos/HEAD/GPUImage/framework/Source/GPUImageErosionFilter.h -------------------------------------------------------------------------------- /GPUImage/framework/Source/GPUImageErosionFilter.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengju/iOSDemos/HEAD/GPUImage/framework/Source/GPUImageErosionFilter.m -------------------------------------------------------------------------------- /GPUImage/framework/Source/GPUImageExposureFilter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengju/iOSDemos/HEAD/GPUImage/framework/Source/GPUImageExposureFilter.h -------------------------------------------------------------------------------- /GPUImage/framework/Source/GPUImageExposureFilter.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengju/iOSDemos/HEAD/GPUImage/framework/Source/GPUImageExposureFilter.m -------------------------------------------------------------------------------- /GPUImage/framework/Source/GPUImageFalseColorFilter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengju/iOSDemos/HEAD/GPUImage/framework/Source/GPUImageFalseColorFilter.h -------------------------------------------------------------------------------- /GPUImage/framework/Source/GPUImageFalseColorFilter.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengju/iOSDemos/HEAD/GPUImage/framework/Source/GPUImageFalseColorFilter.m -------------------------------------------------------------------------------- /GPUImage/framework/Source/GPUImageFilter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengju/iOSDemos/HEAD/GPUImage/framework/Source/GPUImageFilter.h -------------------------------------------------------------------------------- /GPUImage/framework/Source/GPUImageFilter.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengju/iOSDemos/HEAD/GPUImage/framework/Source/GPUImageFilter.m -------------------------------------------------------------------------------- /GPUImage/framework/Source/GPUImageFilterGroup.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengju/iOSDemos/HEAD/GPUImage/framework/Source/GPUImageFilterGroup.h -------------------------------------------------------------------------------- /GPUImage/framework/Source/GPUImageFilterGroup.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengju/iOSDemos/HEAD/GPUImage/framework/Source/GPUImageFilterGroup.m -------------------------------------------------------------------------------- /GPUImage/framework/Source/GPUImageFilterPipeline.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengju/iOSDemos/HEAD/GPUImage/framework/Source/GPUImageFilterPipeline.h -------------------------------------------------------------------------------- /GPUImage/framework/Source/GPUImageFilterPipeline.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengju/iOSDemos/HEAD/GPUImage/framework/Source/GPUImageFilterPipeline.m -------------------------------------------------------------------------------- /GPUImage/framework/Source/GPUImageFourInputFilter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengju/iOSDemos/HEAD/GPUImage/framework/Source/GPUImageFourInputFilter.h -------------------------------------------------------------------------------- /GPUImage/framework/Source/GPUImageFourInputFilter.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengju/iOSDemos/HEAD/GPUImage/framework/Source/GPUImageFourInputFilter.m -------------------------------------------------------------------------------- /GPUImage/framework/Source/GPUImageFramebuffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengju/iOSDemos/HEAD/GPUImage/framework/Source/GPUImageFramebuffer.h -------------------------------------------------------------------------------- /GPUImage/framework/Source/GPUImageFramebuffer.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengju/iOSDemos/HEAD/GPUImage/framework/Source/GPUImageFramebuffer.m -------------------------------------------------------------------------------- /GPUImage/framework/Source/GPUImageFramebufferCache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengju/iOSDemos/HEAD/GPUImage/framework/Source/GPUImageFramebufferCache.h -------------------------------------------------------------------------------- /GPUImage/framework/Source/GPUImageFramebufferCache.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengju/iOSDemos/HEAD/GPUImage/framework/Source/GPUImageFramebufferCache.m -------------------------------------------------------------------------------- /GPUImage/framework/Source/GPUImageGammaFilter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengju/iOSDemos/HEAD/GPUImage/framework/Source/GPUImageGammaFilter.h -------------------------------------------------------------------------------- /GPUImage/framework/Source/GPUImageGammaFilter.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengju/iOSDemos/HEAD/GPUImage/framework/Source/GPUImageGammaFilter.m -------------------------------------------------------------------------------- /GPUImage/framework/Source/GPUImageGlassSphereFilter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengju/iOSDemos/HEAD/GPUImage/framework/Source/GPUImageGlassSphereFilter.h -------------------------------------------------------------------------------- /GPUImage/framework/Source/GPUImageGlassSphereFilter.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengju/iOSDemos/HEAD/GPUImage/framework/Source/GPUImageGlassSphereFilter.m -------------------------------------------------------------------------------- /GPUImage/framework/Source/GPUImageGrayscaleFilter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengju/iOSDemos/HEAD/GPUImage/framework/Source/GPUImageGrayscaleFilter.h -------------------------------------------------------------------------------- /GPUImage/framework/Source/GPUImageGrayscaleFilter.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengju/iOSDemos/HEAD/GPUImage/framework/Source/GPUImageGrayscaleFilter.m -------------------------------------------------------------------------------- /GPUImage/framework/Source/GPUImageHSBFilter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengju/iOSDemos/HEAD/GPUImage/framework/Source/GPUImageHSBFilter.h -------------------------------------------------------------------------------- /GPUImage/framework/Source/GPUImageHSBFilter.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengju/iOSDemos/HEAD/GPUImage/framework/Source/GPUImageHSBFilter.m -------------------------------------------------------------------------------- /GPUImage/framework/Source/GPUImageHalftoneFilter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengju/iOSDemos/HEAD/GPUImage/framework/Source/GPUImageHalftoneFilter.h -------------------------------------------------------------------------------- /GPUImage/framework/Source/GPUImageHalftoneFilter.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengju/iOSDemos/HEAD/GPUImage/framework/Source/GPUImageHalftoneFilter.m -------------------------------------------------------------------------------- /GPUImage/framework/Source/GPUImageHazeFilter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengju/iOSDemos/HEAD/GPUImage/framework/Source/GPUImageHazeFilter.h -------------------------------------------------------------------------------- /GPUImage/framework/Source/GPUImageHazeFilter.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengju/iOSDemos/HEAD/GPUImage/framework/Source/GPUImageHazeFilter.m -------------------------------------------------------------------------------- /GPUImage/framework/Source/GPUImageHighPassFilter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengju/iOSDemos/HEAD/GPUImage/framework/Source/GPUImageHighPassFilter.h -------------------------------------------------------------------------------- /GPUImage/framework/Source/GPUImageHighPassFilter.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengju/iOSDemos/HEAD/GPUImage/framework/Source/GPUImageHighPassFilter.m -------------------------------------------------------------------------------- /GPUImage/framework/Source/GPUImageHistogramFilter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengju/iOSDemos/HEAD/GPUImage/framework/Source/GPUImageHistogramFilter.h -------------------------------------------------------------------------------- /GPUImage/framework/Source/GPUImageHistogramFilter.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengju/iOSDemos/HEAD/GPUImage/framework/Source/GPUImageHistogramFilter.m -------------------------------------------------------------------------------- /GPUImage/framework/Source/GPUImageHueBlendFilter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengju/iOSDemos/HEAD/GPUImage/framework/Source/GPUImageHueBlendFilter.h -------------------------------------------------------------------------------- /GPUImage/framework/Source/GPUImageHueBlendFilter.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengju/iOSDemos/HEAD/GPUImage/framework/Source/GPUImageHueBlendFilter.m -------------------------------------------------------------------------------- /GPUImage/framework/Source/GPUImageHueFilter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengju/iOSDemos/HEAD/GPUImage/framework/Source/GPUImageHueFilter.h -------------------------------------------------------------------------------- /GPUImage/framework/Source/GPUImageHueFilter.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengju/iOSDemos/HEAD/GPUImage/framework/Source/GPUImageHueFilter.m -------------------------------------------------------------------------------- /GPUImage/framework/Source/GPUImageJFAVoronoiFilter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengju/iOSDemos/HEAD/GPUImage/framework/Source/GPUImageJFAVoronoiFilter.h -------------------------------------------------------------------------------- /GPUImage/framework/Source/GPUImageJFAVoronoiFilter.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengju/iOSDemos/HEAD/GPUImage/framework/Source/GPUImageJFAVoronoiFilter.m -------------------------------------------------------------------------------- /GPUImage/framework/Source/GPUImageKuwaharaFilter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengju/iOSDemos/HEAD/GPUImage/framework/Source/GPUImageKuwaharaFilter.h -------------------------------------------------------------------------------- /GPUImage/framework/Source/GPUImageKuwaharaFilter.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengju/iOSDemos/HEAD/GPUImage/framework/Source/GPUImageKuwaharaFilter.m -------------------------------------------------------------------------------- /GPUImage/framework/Source/GPUImageLaplacianFilter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengju/iOSDemos/HEAD/GPUImage/framework/Source/GPUImageLaplacianFilter.h -------------------------------------------------------------------------------- /GPUImage/framework/Source/GPUImageLaplacianFilter.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengju/iOSDemos/HEAD/GPUImage/framework/Source/GPUImageLaplacianFilter.m -------------------------------------------------------------------------------- /GPUImage/framework/Source/GPUImageLevelsFilter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengju/iOSDemos/HEAD/GPUImage/framework/Source/GPUImageLevelsFilter.h -------------------------------------------------------------------------------- /GPUImage/framework/Source/GPUImageLevelsFilter.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengju/iOSDemos/HEAD/GPUImage/framework/Source/GPUImageLevelsFilter.m -------------------------------------------------------------------------------- /GPUImage/framework/Source/GPUImageLineGenerator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengju/iOSDemos/HEAD/GPUImage/framework/Source/GPUImageLineGenerator.h -------------------------------------------------------------------------------- /GPUImage/framework/Source/GPUImageLineGenerator.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengju/iOSDemos/HEAD/GPUImage/framework/Source/GPUImageLineGenerator.m -------------------------------------------------------------------------------- /GPUImage/framework/Source/GPUImageLookupFilter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengju/iOSDemos/HEAD/GPUImage/framework/Source/GPUImageLookupFilter.h -------------------------------------------------------------------------------- /GPUImage/framework/Source/GPUImageLookupFilter.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengju/iOSDemos/HEAD/GPUImage/framework/Source/GPUImageLookupFilter.m -------------------------------------------------------------------------------- /GPUImage/framework/Source/GPUImageLowPassFilter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengju/iOSDemos/HEAD/GPUImage/framework/Source/GPUImageLowPassFilter.h -------------------------------------------------------------------------------- /GPUImage/framework/Source/GPUImageLowPassFilter.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengju/iOSDemos/HEAD/GPUImage/framework/Source/GPUImageLowPassFilter.m -------------------------------------------------------------------------------- /GPUImage/framework/Source/GPUImageLuminosity.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengju/iOSDemos/HEAD/GPUImage/framework/Source/GPUImageLuminosity.h -------------------------------------------------------------------------------- /GPUImage/framework/Source/GPUImageLuminosity.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengju/iOSDemos/HEAD/GPUImage/framework/Source/GPUImageLuminosity.m -------------------------------------------------------------------------------- /GPUImage/framework/Source/GPUImageMaskFilter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengju/iOSDemos/HEAD/GPUImage/framework/Source/GPUImageMaskFilter.h -------------------------------------------------------------------------------- /GPUImage/framework/Source/GPUImageMaskFilter.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengju/iOSDemos/HEAD/GPUImage/framework/Source/GPUImageMaskFilter.m -------------------------------------------------------------------------------- /GPUImage/framework/Source/GPUImageMedianFilter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengju/iOSDemos/HEAD/GPUImage/framework/Source/GPUImageMedianFilter.h -------------------------------------------------------------------------------- /GPUImage/framework/Source/GPUImageMedianFilter.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengju/iOSDemos/HEAD/GPUImage/framework/Source/GPUImageMedianFilter.m -------------------------------------------------------------------------------- /GPUImage/framework/Source/GPUImageMissEtikateFilter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengju/iOSDemos/HEAD/GPUImage/framework/Source/GPUImageMissEtikateFilter.h -------------------------------------------------------------------------------- /GPUImage/framework/Source/GPUImageMissEtikateFilter.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengju/iOSDemos/HEAD/GPUImage/framework/Source/GPUImageMissEtikateFilter.m -------------------------------------------------------------------------------- /GPUImage/framework/Source/GPUImageMonochromeFilter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengju/iOSDemos/HEAD/GPUImage/framework/Source/GPUImageMonochromeFilter.h -------------------------------------------------------------------------------- /GPUImage/framework/Source/GPUImageMonochromeFilter.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengju/iOSDemos/HEAD/GPUImage/framework/Source/GPUImageMonochromeFilter.m -------------------------------------------------------------------------------- /GPUImage/framework/Source/GPUImageMosaicFilter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengju/iOSDemos/HEAD/GPUImage/framework/Source/GPUImageMosaicFilter.h -------------------------------------------------------------------------------- /GPUImage/framework/Source/GPUImageMosaicFilter.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengju/iOSDemos/HEAD/GPUImage/framework/Source/GPUImageMosaicFilter.m -------------------------------------------------------------------------------- /GPUImage/framework/Source/GPUImageMotionBlurFilter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengju/iOSDemos/HEAD/GPUImage/framework/Source/GPUImageMotionBlurFilter.h -------------------------------------------------------------------------------- /GPUImage/framework/Source/GPUImageMotionBlurFilter.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengju/iOSDemos/HEAD/GPUImage/framework/Source/GPUImageMotionBlurFilter.m -------------------------------------------------------------------------------- /GPUImage/framework/Source/GPUImageMotionDetector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengju/iOSDemos/HEAD/GPUImage/framework/Source/GPUImageMotionDetector.h -------------------------------------------------------------------------------- /GPUImage/framework/Source/GPUImageMotionDetector.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengju/iOSDemos/HEAD/GPUImage/framework/Source/GPUImageMotionDetector.m -------------------------------------------------------------------------------- /GPUImage/framework/Source/GPUImageMovie.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengju/iOSDemos/HEAD/GPUImage/framework/Source/GPUImageMovie.h -------------------------------------------------------------------------------- /GPUImage/framework/Source/GPUImageMovie.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengju/iOSDemos/HEAD/GPUImage/framework/Source/GPUImageMovie.m -------------------------------------------------------------------------------- /GPUImage/framework/Source/GPUImageMovieComposition.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengju/iOSDemos/HEAD/GPUImage/framework/Source/GPUImageMovieComposition.h -------------------------------------------------------------------------------- /GPUImage/framework/Source/GPUImageMovieComposition.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengju/iOSDemos/HEAD/GPUImage/framework/Source/GPUImageMovieComposition.m -------------------------------------------------------------------------------- /GPUImage/framework/Source/GPUImageNormalBlendFilter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengju/iOSDemos/HEAD/GPUImage/framework/Source/GPUImageNormalBlendFilter.h -------------------------------------------------------------------------------- /GPUImage/framework/Source/GPUImageNormalBlendFilter.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengju/iOSDemos/HEAD/GPUImage/framework/Source/GPUImageNormalBlendFilter.m -------------------------------------------------------------------------------- /GPUImage/framework/Source/GPUImageOpacityFilter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengju/iOSDemos/HEAD/GPUImage/framework/Source/GPUImageOpacityFilter.h -------------------------------------------------------------------------------- /GPUImage/framework/Source/GPUImageOpacityFilter.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengju/iOSDemos/HEAD/GPUImage/framework/Source/GPUImageOpacityFilter.m -------------------------------------------------------------------------------- /GPUImage/framework/Source/GPUImageOpeningFilter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengju/iOSDemos/HEAD/GPUImage/framework/Source/GPUImageOpeningFilter.h -------------------------------------------------------------------------------- /GPUImage/framework/Source/GPUImageOpeningFilter.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengju/iOSDemos/HEAD/GPUImage/framework/Source/GPUImageOpeningFilter.m -------------------------------------------------------------------------------- /GPUImage/framework/Source/GPUImageOutput.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengju/iOSDemos/HEAD/GPUImage/framework/Source/GPUImageOutput.h -------------------------------------------------------------------------------- /GPUImage/framework/Source/GPUImageOutput.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengju/iOSDemos/HEAD/GPUImage/framework/Source/GPUImageOutput.m -------------------------------------------------------------------------------- /GPUImage/framework/Source/GPUImagePerlinNoiseFilter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengju/iOSDemos/HEAD/GPUImage/framework/Source/GPUImagePerlinNoiseFilter.h -------------------------------------------------------------------------------- /GPUImage/framework/Source/GPUImagePerlinNoiseFilter.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengju/iOSDemos/HEAD/GPUImage/framework/Source/GPUImagePerlinNoiseFilter.m -------------------------------------------------------------------------------- /GPUImage/framework/Source/GPUImagePixellateFilter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengju/iOSDemos/HEAD/GPUImage/framework/Source/GPUImagePixellateFilter.h -------------------------------------------------------------------------------- /GPUImage/framework/Source/GPUImagePixellateFilter.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengju/iOSDemos/HEAD/GPUImage/framework/Source/GPUImagePixellateFilter.m -------------------------------------------------------------------------------- /GPUImage/framework/Source/GPUImagePolkaDotFilter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengju/iOSDemos/HEAD/GPUImage/framework/Source/GPUImagePolkaDotFilter.h -------------------------------------------------------------------------------- /GPUImage/framework/Source/GPUImagePolkaDotFilter.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengju/iOSDemos/HEAD/GPUImage/framework/Source/GPUImagePolkaDotFilter.m -------------------------------------------------------------------------------- /GPUImage/framework/Source/GPUImagePosterizeFilter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengju/iOSDemos/HEAD/GPUImage/framework/Source/GPUImagePosterizeFilter.h -------------------------------------------------------------------------------- /GPUImage/framework/Source/GPUImagePosterizeFilter.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengju/iOSDemos/HEAD/GPUImage/framework/Source/GPUImagePosterizeFilter.m -------------------------------------------------------------------------------- /GPUImage/framework/Source/GPUImageRGBClosingFilter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengju/iOSDemos/HEAD/GPUImage/framework/Source/GPUImageRGBClosingFilter.h -------------------------------------------------------------------------------- /GPUImage/framework/Source/GPUImageRGBClosingFilter.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengju/iOSDemos/HEAD/GPUImage/framework/Source/GPUImageRGBClosingFilter.m -------------------------------------------------------------------------------- /GPUImage/framework/Source/GPUImageRGBDilationFilter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengju/iOSDemos/HEAD/GPUImage/framework/Source/GPUImageRGBDilationFilter.h -------------------------------------------------------------------------------- /GPUImage/framework/Source/GPUImageRGBDilationFilter.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengju/iOSDemos/HEAD/GPUImage/framework/Source/GPUImageRGBDilationFilter.m -------------------------------------------------------------------------------- /GPUImage/framework/Source/GPUImageRGBErosionFilter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengju/iOSDemos/HEAD/GPUImage/framework/Source/GPUImageRGBErosionFilter.h -------------------------------------------------------------------------------- /GPUImage/framework/Source/GPUImageRGBErosionFilter.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengju/iOSDemos/HEAD/GPUImage/framework/Source/GPUImageRGBErosionFilter.m -------------------------------------------------------------------------------- /GPUImage/framework/Source/GPUImageRGBFilter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengju/iOSDemos/HEAD/GPUImage/framework/Source/GPUImageRGBFilter.h -------------------------------------------------------------------------------- /GPUImage/framework/Source/GPUImageRGBFilter.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengju/iOSDemos/HEAD/GPUImage/framework/Source/GPUImageRGBFilter.m -------------------------------------------------------------------------------- /GPUImage/framework/Source/GPUImageRGBOpeningFilter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengju/iOSDemos/HEAD/GPUImage/framework/Source/GPUImageRGBOpeningFilter.h -------------------------------------------------------------------------------- /GPUImage/framework/Source/GPUImageRGBOpeningFilter.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengju/iOSDemos/HEAD/GPUImage/framework/Source/GPUImageRGBOpeningFilter.m -------------------------------------------------------------------------------- /GPUImage/framework/Source/GPUImageRawDataInput.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengju/iOSDemos/HEAD/GPUImage/framework/Source/GPUImageRawDataInput.h -------------------------------------------------------------------------------- /GPUImage/framework/Source/GPUImageRawDataInput.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengju/iOSDemos/HEAD/GPUImage/framework/Source/GPUImageRawDataInput.m -------------------------------------------------------------------------------- /GPUImage/framework/Source/GPUImageRawDataOutput.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengju/iOSDemos/HEAD/GPUImage/framework/Source/GPUImageRawDataOutput.h -------------------------------------------------------------------------------- /GPUImage/framework/Source/GPUImageRawDataOutput.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengju/iOSDemos/HEAD/GPUImage/framework/Source/GPUImageRawDataOutput.m -------------------------------------------------------------------------------- /GPUImage/framework/Source/GPUImageSaturationFilter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengju/iOSDemos/HEAD/GPUImage/framework/Source/GPUImageSaturationFilter.h -------------------------------------------------------------------------------- /GPUImage/framework/Source/GPUImageSaturationFilter.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengju/iOSDemos/HEAD/GPUImage/framework/Source/GPUImageSaturationFilter.m -------------------------------------------------------------------------------- /GPUImage/framework/Source/GPUImageScreenBlendFilter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengju/iOSDemos/HEAD/GPUImage/framework/Source/GPUImageScreenBlendFilter.h -------------------------------------------------------------------------------- /GPUImage/framework/Source/GPUImageScreenBlendFilter.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengju/iOSDemos/HEAD/GPUImage/framework/Source/GPUImageScreenBlendFilter.m -------------------------------------------------------------------------------- /GPUImage/framework/Source/GPUImageSepiaFilter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengju/iOSDemos/HEAD/GPUImage/framework/Source/GPUImageSepiaFilter.h -------------------------------------------------------------------------------- /GPUImage/framework/Source/GPUImageSepiaFilter.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengju/iOSDemos/HEAD/GPUImage/framework/Source/GPUImageSepiaFilter.m -------------------------------------------------------------------------------- /GPUImage/framework/Source/GPUImageSharpenFilter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengju/iOSDemos/HEAD/GPUImage/framework/Source/GPUImageSharpenFilter.h -------------------------------------------------------------------------------- /GPUImage/framework/Source/GPUImageSharpenFilter.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengju/iOSDemos/HEAD/GPUImage/framework/Source/GPUImageSharpenFilter.m -------------------------------------------------------------------------------- /GPUImage/framework/Source/GPUImageSketchFilter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengju/iOSDemos/HEAD/GPUImage/framework/Source/GPUImageSketchFilter.h -------------------------------------------------------------------------------- /GPUImage/framework/Source/GPUImageSketchFilter.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengju/iOSDemos/HEAD/GPUImage/framework/Source/GPUImageSketchFilter.m -------------------------------------------------------------------------------- /GPUImage/framework/Source/GPUImageSkinToneFilter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengju/iOSDemos/HEAD/GPUImage/framework/Source/GPUImageSkinToneFilter.h -------------------------------------------------------------------------------- /GPUImage/framework/Source/GPUImageSkinToneFilter.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengju/iOSDemos/HEAD/GPUImage/framework/Source/GPUImageSkinToneFilter.m -------------------------------------------------------------------------------- /GPUImage/framework/Source/GPUImageSmoothToonFilter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengju/iOSDemos/HEAD/GPUImage/framework/Source/GPUImageSmoothToonFilter.h -------------------------------------------------------------------------------- /GPUImage/framework/Source/GPUImageSmoothToonFilter.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengju/iOSDemos/HEAD/GPUImage/framework/Source/GPUImageSmoothToonFilter.m -------------------------------------------------------------------------------- /GPUImage/framework/Source/GPUImageSolarizeFilter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengju/iOSDemos/HEAD/GPUImage/framework/Source/GPUImageSolarizeFilter.h -------------------------------------------------------------------------------- /GPUImage/framework/Source/GPUImageSolarizeFilter.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengju/iOSDemos/HEAD/GPUImage/framework/Source/GPUImageSolarizeFilter.m -------------------------------------------------------------------------------- /GPUImage/framework/Source/GPUImageStillCamera.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengju/iOSDemos/HEAD/GPUImage/framework/Source/GPUImageStillCamera.h -------------------------------------------------------------------------------- /GPUImage/framework/Source/GPUImageStillCamera.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengju/iOSDemos/HEAD/GPUImage/framework/Source/GPUImageStillCamera.m -------------------------------------------------------------------------------- /GPUImage/framework/Source/GPUImageSwirlFilter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengju/iOSDemos/HEAD/GPUImage/framework/Source/GPUImageSwirlFilter.h -------------------------------------------------------------------------------- /GPUImage/framework/Source/GPUImageSwirlFilter.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengju/iOSDemos/HEAD/GPUImage/framework/Source/GPUImageSwirlFilter.m -------------------------------------------------------------------------------- /GPUImage/framework/Source/GPUImageTextureInput.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengju/iOSDemos/HEAD/GPUImage/framework/Source/GPUImageTextureInput.h -------------------------------------------------------------------------------- /GPUImage/framework/Source/GPUImageTextureInput.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengju/iOSDemos/HEAD/GPUImage/framework/Source/GPUImageTextureInput.m -------------------------------------------------------------------------------- /GPUImage/framework/Source/GPUImageTextureOutput.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengju/iOSDemos/HEAD/GPUImage/framework/Source/GPUImageTextureOutput.h -------------------------------------------------------------------------------- /GPUImage/framework/Source/GPUImageTextureOutput.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengju/iOSDemos/HEAD/GPUImage/framework/Source/GPUImageTextureOutput.m -------------------------------------------------------------------------------- /GPUImage/framework/Source/GPUImageThreeInputFilter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengju/iOSDemos/HEAD/GPUImage/framework/Source/GPUImageThreeInputFilter.h -------------------------------------------------------------------------------- /GPUImage/framework/Source/GPUImageThreeInputFilter.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengju/iOSDemos/HEAD/GPUImage/framework/Source/GPUImageThreeInputFilter.m -------------------------------------------------------------------------------- /GPUImage/framework/Source/GPUImageTiltShiftFilter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengju/iOSDemos/HEAD/GPUImage/framework/Source/GPUImageTiltShiftFilter.h -------------------------------------------------------------------------------- /GPUImage/framework/Source/GPUImageTiltShiftFilter.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengju/iOSDemos/HEAD/GPUImage/framework/Source/GPUImageTiltShiftFilter.m -------------------------------------------------------------------------------- /GPUImage/framework/Source/GPUImageToneCurveFilter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengju/iOSDemos/HEAD/GPUImage/framework/Source/GPUImageToneCurveFilter.h -------------------------------------------------------------------------------- /GPUImage/framework/Source/GPUImageToneCurveFilter.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengju/iOSDemos/HEAD/GPUImage/framework/Source/GPUImageToneCurveFilter.m -------------------------------------------------------------------------------- /GPUImage/framework/Source/GPUImageToonFilter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengju/iOSDemos/HEAD/GPUImage/framework/Source/GPUImageToonFilter.h -------------------------------------------------------------------------------- /GPUImage/framework/Source/GPUImageToonFilter.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengju/iOSDemos/HEAD/GPUImage/framework/Source/GPUImageToonFilter.m -------------------------------------------------------------------------------- /GPUImage/framework/Source/GPUImageTransformFilter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengju/iOSDemos/HEAD/GPUImage/framework/Source/GPUImageTransformFilter.h -------------------------------------------------------------------------------- /GPUImage/framework/Source/GPUImageTransformFilter.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengju/iOSDemos/HEAD/GPUImage/framework/Source/GPUImageTransformFilter.m -------------------------------------------------------------------------------- /GPUImage/framework/Source/GPUImageTwoInputFilter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengju/iOSDemos/HEAD/GPUImage/framework/Source/GPUImageTwoInputFilter.h -------------------------------------------------------------------------------- /GPUImage/framework/Source/GPUImageTwoInputFilter.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengju/iOSDemos/HEAD/GPUImage/framework/Source/GPUImageTwoInputFilter.m -------------------------------------------------------------------------------- /GPUImage/framework/Source/GPUImageTwoPassFilter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengju/iOSDemos/HEAD/GPUImage/framework/Source/GPUImageTwoPassFilter.h -------------------------------------------------------------------------------- /GPUImage/framework/Source/GPUImageTwoPassFilter.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengju/iOSDemos/HEAD/GPUImage/framework/Source/GPUImageTwoPassFilter.m -------------------------------------------------------------------------------- /GPUImage/framework/Source/GPUImageUIElement.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengju/iOSDemos/HEAD/GPUImage/framework/Source/GPUImageUIElement.h -------------------------------------------------------------------------------- /GPUImage/framework/Source/GPUImageUIElement.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengju/iOSDemos/HEAD/GPUImage/framework/Source/GPUImageUIElement.m -------------------------------------------------------------------------------- /GPUImage/framework/Source/GPUImageUnsharpMaskFilter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengju/iOSDemos/HEAD/GPUImage/framework/Source/GPUImageUnsharpMaskFilter.h -------------------------------------------------------------------------------- /GPUImage/framework/Source/GPUImageUnsharpMaskFilter.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengju/iOSDemos/HEAD/GPUImage/framework/Source/GPUImageUnsharpMaskFilter.m -------------------------------------------------------------------------------- /GPUImage/framework/Source/GPUImageVibranceFilter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengju/iOSDemos/HEAD/GPUImage/framework/Source/GPUImageVibranceFilter.h -------------------------------------------------------------------------------- /GPUImage/framework/Source/GPUImageVibranceFilter.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengju/iOSDemos/HEAD/GPUImage/framework/Source/GPUImageVibranceFilter.m -------------------------------------------------------------------------------- /GPUImage/framework/Source/GPUImageVideoCamera.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengju/iOSDemos/HEAD/GPUImage/framework/Source/GPUImageVideoCamera.h -------------------------------------------------------------------------------- /GPUImage/framework/Source/GPUImageVideoCamera.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengju/iOSDemos/HEAD/GPUImage/framework/Source/GPUImageVideoCamera.m -------------------------------------------------------------------------------- /GPUImage/framework/Source/GPUImageVignetteFilter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengju/iOSDemos/HEAD/GPUImage/framework/Source/GPUImageVignetteFilter.h -------------------------------------------------------------------------------- /GPUImage/framework/Source/GPUImageVignetteFilter.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengju/iOSDemos/HEAD/GPUImage/framework/Source/GPUImageVignetteFilter.m -------------------------------------------------------------------------------- /GPUImage/framework/Source/GPUImageZoomBlurFilter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengju/iOSDemos/HEAD/GPUImage/framework/Source/GPUImageZoomBlurFilter.h -------------------------------------------------------------------------------- /GPUImage/framework/Source/GPUImageZoomBlurFilter.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengju/iOSDemos/HEAD/GPUImage/framework/Source/GPUImageZoomBlurFilter.m -------------------------------------------------------------------------------- /GPUImage/framework/Source/GPUImageiOSBlurFilter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengju/iOSDemos/HEAD/GPUImage/framework/Source/GPUImageiOSBlurFilter.h -------------------------------------------------------------------------------- /GPUImage/framework/Source/GPUImageiOSBlurFilter.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengju/iOSDemos/HEAD/GPUImage/framework/Source/GPUImageiOSBlurFilter.m -------------------------------------------------------------------------------- /GPUImage/framework/Source/Mac/GPUImage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengju/iOSDemos/HEAD/GPUImage/framework/Source/Mac/GPUImage.h -------------------------------------------------------------------------------- /GPUImage/framework/Source/Mac/GPUImageAVCamera.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengju/iOSDemos/HEAD/GPUImage/framework/Source/Mac/GPUImageAVCamera.h -------------------------------------------------------------------------------- /GPUImage/framework/Source/Mac/GPUImageAVCamera.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengju/iOSDemos/HEAD/GPUImage/framework/Source/Mac/GPUImageAVCamera.m -------------------------------------------------------------------------------- /GPUImage/framework/Source/Mac/GPUImageMac-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengju/iOSDemos/HEAD/GPUImage/framework/Source/Mac/GPUImageMac-Info.plist -------------------------------------------------------------------------------- /GPUImage/framework/Source/Mac/GPUImageMac-Prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengju/iOSDemos/HEAD/GPUImage/framework/Source/Mac/GPUImageMac-Prefix.pch -------------------------------------------------------------------------------- /GPUImage/framework/Source/Mac/GPUImageMovieWriter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengju/iOSDemos/HEAD/GPUImage/framework/Source/Mac/GPUImageMovieWriter.h -------------------------------------------------------------------------------- /GPUImage/framework/Source/Mac/GPUImageMovieWriter.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengju/iOSDemos/HEAD/GPUImage/framework/Source/Mac/GPUImageMovieWriter.m -------------------------------------------------------------------------------- /GPUImage/framework/Source/Mac/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /GPUImage/framework/Source/iOS/Framework/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengju/iOSDemos/HEAD/GPUImage/framework/Source/iOS/Framework/Info.plist -------------------------------------------------------------------------------- /GPUImage/framework/Source/iOS/GPUImage-Prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengju/iOSDemos/HEAD/GPUImage/framework/Source/iOS/GPUImage-Prefix.pch -------------------------------------------------------------------------------- /GPUImage/framework/Source/iOS/GPUImageContext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengju/iOSDemos/HEAD/GPUImage/framework/Source/iOS/GPUImageContext.h -------------------------------------------------------------------------------- /GPUImage/framework/Source/iOS/GPUImageContext.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengju/iOSDemos/HEAD/GPUImage/framework/Source/iOS/GPUImageContext.m -------------------------------------------------------------------------------- /GPUImage/framework/Source/iOS/GPUImageMovieWriter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengju/iOSDemos/HEAD/GPUImage/framework/Source/iOS/GPUImageMovieWriter.h -------------------------------------------------------------------------------- /GPUImage/framework/Source/iOS/GPUImageMovieWriter.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengju/iOSDemos/HEAD/GPUImage/framework/Source/iOS/GPUImageMovieWriter.m -------------------------------------------------------------------------------- /GPUImage/framework/Source/iOS/GPUImagePicture.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengju/iOSDemos/HEAD/GPUImage/framework/Source/iOS/GPUImagePicture.h -------------------------------------------------------------------------------- /GPUImage/framework/Source/iOS/GPUImagePicture.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengju/iOSDemos/HEAD/GPUImage/framework/Source/iOS/GPUImagePicture.m -------------------------------------------------------------------------------- /GPUImage/framework/Source/iOS/GPUImageView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengju/iOSDemos/HEAD/GPUImage/framework/Source/iOS/GPUImageView.h -------------------------------------------------------------------------------- /GPUImage/framework/Source/iOS/GPUImageView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengju/iOSDemos/HEAD/GPUImage/framework/Source/iOS/GPUImageView.m -------------------------------------------------------------------------------- /LearnAVFoundation/AVFoundation03/AVFoundation/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengju/iOSDemos/HEAD/LearnAVFoundation/AVFoundation03/AVFoundation/main.m -------------------------------------------------------------------------------- /LearnAVFoundation/AVFoundation04/AVFoundation/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengju/iOSDemos/HEAD/LearnAVFoundation/AVFoundation04/AVFoundation/main.m -------------------------------------------------------------------------------- /LearnAVFoundation/AVFoundation04/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengju/iOSDemos/HEAD/LearnAVFoundation/AVFoundation04/Podfile -------------------------------------------------------------------------------- /LearnAVFoundation/AVFoundation04/Podfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengju/iOSDemos/HEAD/LearnAVFoundation/AVFoundation04/Podfile.lock -------------------------------------------------------------------------------- /LearnAVFoundation/AVFoundation04/Pods/Headers/Private/BlocksKit/A2BlockInvocation.h: -------------------------------------------------------------------------------- 1 | ../../../BlocksKit/BlocksKit/DynamicDelegate/A2BlockInvocation.h -------------------------------------------------------------------------------- /LearnAVFoundation/AVFoundation04/Pods/Headers/Private/BlocksKit/A2DynamicDelegate.h: -------------------------------------------------------------------------------- 1 | ../../../BlocksKit/BlocksKit/DynamicDelegate/A2DynamicDelegate.h -------------------------------------------------------------------------------- /LearnAVFoundation/AVFoundation04/Pods/Headers/Private/BlocksKit/BKMacros.h: -------------------------------------------------------------------------------- 1 | ../../../BlocksKit/BlocksKit/Core/BKMacros.h -------------------------------------------------------------------------------- /LearnAVFoundation/AVFoundation04/Pods/Headers/Private/BlocksKit/BlocksKit+MessageUI.h: -------------------------------------------------------------------------------- 1 | ../../../BlocksKit/BlocksKit/BlocksKit+MessageUI.h -------------------------------------------------------------------------------- /LearnAVFoundation/AVFoundation04/Pods/Headers/Private/BlocksKit/BlocksKit+UIKit.h: -------------------------------------------------------------------------------- 1 | ../../../BlocksKit/BlocksKit/BlocksKit+UIKit.h -------------------------------------------------------------------------------- /LearnAVFoundation/AVFoundation04/Pods/Headers/Private/BlocksKit/BlocksKit.h: -------------------------------------------------------------------------------- 1 | ../../../BlocksKit/BlocksKit/BlocksKit.h -------------------------------------------------------------------------------- /LearnAVFoundation/AVFoundation04/Pods/Headers/Private/BlocksKit/NSArray+BlocksKit.h: -------------------------------------------------------------------------------- 1 | ../../../BlocksKit/BlocksKit/Core/NSArray+BlocksKit.h -------------------------------------------------------------------------------- /LearnAVFoundation/AVFoundation04/Pods/Headers/Private/BlocksKit/NSCache+BlocksKit.h: -------------------------------------------------------------------------------- 1 | ../../../BlocksKit/BlocksKit/DynamicDelegate/Foundation/NSCache+BlocksKit.h -------------------------------------------------------------------------------- /LearnAVFoundation/AVFoundation04/Pods/Headers/Private/BlocksKit/NSDictionary+BlocksKit.h: -------------------------------------------------------------------------------- 1 | ../../../BlocksKit/BlocksKit/Core/NSDictionary+BlocksKit.h -------------------------------------------------------------------------------- /LearnAVFoundation/AVFoundation04/Pods/Headers/Private/BlocksKit/NSIndexSet+BlocksKit.h: -------------------------------------------------------------------------------- 1 | ../../../BlocksKit/BlocksKit/Core/NSIndexSet+BlocksKit.h -------------------------------------------------------------------------------- /LearnAVFoundation/AVFoundation04/Pods/Headers/Private/BlocksKit/NSInvocation+BlocksKit.h: -------------------------------------------------------------------------------- 1 | ../../../BlocksKit/BlocksKit/Core/NSInvocation+BlocksKit.h -------------------------------------------------------------------------------- /LearnAVFoundation/AVFoundation04/Pods/Headers/Private/BlocksKit/NSMutableArray+BlocksKit.h: -------------------------------------------------------------------------------- 1 | ../../../BlocksKit/BlocksKit/Core/NSMutableArray+BlocksKit.h -------------------------------------------------------------------------------- /LearnAVFoundation/AVFoundation04/Pods/Headers/Private/BlocksKit/NSMutableIndexSet+BlocksKit.h: -------------------------------------------------------------------------------- 1 | ../../../BlocksKit/BlocksKit/Core/NSMutableIndexSet+BlocksKit.h -------------------------------------------------------------------------------- /LearnAVFoundation/AVFoundation04/Pods/Headers/Private/BlocksKit/NSMutableSet+BlocksKit.h: -------------------------------------------------------------------------------- 1 | ../../../BlocksKit/BlocksKit/Core/NSMutableSet+BlocksKit.h -------------------------------------------------------------------------------- /LearnAVFoundation/AVFoundation04/Pods/Headers/Private/BlocksKit/NSObject+BKAssociatedObjects.h: -------------------------------------------------------------------------------- 1 | ../../../BlocksKit/BlocksKit/Core/NSObject+BKAssociatedObjects.h -------------------------------------------------------------------------------- /LearnAVFoundation/AVFoundation04/Pods/Headers/Private/BlocksKit/NSObject+BKBlockExecution.h: -------------------------------------------------------------------------------- 1 | ../../../BlocksKit/BlocksKit/Core/NSObject+BKBlockExecution.h -------------------------------------------------------------------------------- /LearnAVFoundation/AVFoundation04/Pods/Headers/Private/BlocksKit/NSObject+BKBlockObservation.h: -------------------------------------------------------------------------------- 1 | ../../../BlocksKit/BlocksKit/Core/NSObject+BKBlockObservation.h -------------------------------------------------------------------------------- /LearnAVFoundation/AVFoundation04/Pods/Headers/Private/BlocksKit/NSOrderedSet+BlocksKit.h: -------------------------------------------------------------------------------- 1 | ../../../BlocksKit/BlocksKit/Core/NSOrderedSet+BlocksKit.h -------------------------------------------------------------------------------- /LearnAVFoundation/AVFoundation04/Pods/Headers/Private/BlocksKit/NSSet+BlocksKit.h: -------------------------------------------------------------------------------- 1 | ../../../BlocksKit/BlocksKit/Core/NSSet+BlocksKit.h -------------------------------------------------------------------------------- /LearnAVFoundation/AVFoundation04/Pods/Headers/Private/BlocksKit/NSTimer+BlocksKit.h: -------------------------------------------------------------------------------- 1 | ../../../BlocksKit/BlocksKit/Core/NSTimer+BlocksKit.h -------------------------------------------------------------------------------- /LearnAVFoundation/AVFoundation04/Pods/Headers/Private/BlocksKit/UIActionSheet+BlocksKit.h: -------------------------------------------------------------------------------- 1 | ../../../BlocksKit/BlocksKit/UIKit/UIActionSheet+BlocksKit.h -------------------------------------------------------------------------------- /LearnAVFoundation/AVFoundation04/Pods/Headers/Private/BlocksKit/UIAlertView+BlocksKit.h: -------------------------------------------------------------------------------- 1 | ../../../BlocksKit/BlocksKit/UIKit/UIAlertView+BlocksKit.h -------------------------------------------------------------------------------- /LearnAVFoundation/AVFoundation04/Pods/Headers/Private/BlocksKit/UIBarButtonItem+BlocksKit.h: -------------------------------------------------------------------------------- 1 | ../../../BlocksKit/BlocksKit/UIKit/UIBarButtonItem+BlocksKit.h -------------------------------------------------------------------------------- /LearnAVFoundation/AVFoundation04/Pods/Headers/Private/BlocksKit/UIControl+BlocksKit.h: -------------------------------------------------------------------------------- 1 | ../../../BlocksKit/BlocksKit/UIKit/UIControl+BlocksKit.h -------------------------------------------------------------------------------- /LearnAVFoundation/AVFoundation04/Pods/Headers/Private/BlocksKit/UITextField+BlocksKit.h: -------------------------------------------------------------------------------- 1 | ../../../BlocksKit/BlocksKit/UIKit/UITextField+BlocksKit.h -------------------------------------------------------------------------------- /LearnAVFoundation/AVFoundation04/Pods/Headers/Private/BlocksKit/UIView+BlocksKit.h: -------------------------------------------------------------------------------- 1 | ../../../BlocksKit/BlocksKit/UIKit/UIView+BlocksKit.h -------------------------------------------------------------------------------- /LearnAVFoundation/AVFoundation04/Pods/Headers/Private/BlocksKit/UIWebView+BlocksKit.h: -------------------------------------------------------------------------------- 1 | ../../../BlocksKit/BlocksKit/UIKit/UIWebView+BlocksKit.h -------------------------------------------------------------------------------- /LearnAVFoundation/AVFoundation04/Pods/Headers/Private/Masonry/MASCompositeConstraint.h: -------------------------------------------------------------------------------- 1 | ../../../Masonry/Masonry/MASCompositeConstraint.h -------------------------------------------------------------------------------- /LearnAVFoundation/AVFoundation04/Pods/Headers/Private/Masonry/MASConstraint+Private.h: -------------------------------------------------------------------------------- 1 | ../../../Masonry/Masonry/MASConstraint+Private.h -------------------------------------------------------------------------------- /LearnAVFoundation/AVFoundation04/Pods/Headers/Private/Masonry/MASConstraint.h: -------------------------------------------------------------------------------- 1 | ../../../Masonry/Masonry/MASConstraint.h -------------------------------------------------------------------------------- /LearnAVFoundation/AVFoundation04/Pods/Headers/Private/Masonry/MASConstraintMaker.h: -------------------------------------------------------------------------------- 1 | ../../../Masonry/Masonry/MASConstraintMaker.h -------------------------------------------------------------------------------- /LearnAVFoundation/AVFoundation04/Pods/Headers/Private/Masonry/MASLayoutConstraint.h: -------------------------------------------------------------------------------- 1 | ../../../Masonry/Masonry/MASLayoutConstraint.h -------------------------------------------------------------------------------- /LearnAVFoundation/AVFoundation04/Pods/Headers/Private/Masonry/MASUtilities.h: -------------------------------------------------------------------------------- 1 | ../../../Masonry/Masonry/MASUtilities.h -------------------------------------------------------------------------------- /LearnAVFoundation/AVFoundation04/Pods/Headers/Private/Masonry/MASViewAttribute.h: -------------------------------------------------------------------------------- 1 | ../../../Masonry/Masonry/MASViewAttribute.h -------------------------------------------------------------------------------- /LearnAVFoundation/AVFoundation04/Pods/Headers/Private/Masonry/MASViewConstraint.h: -------------------------------------------------------------------------------- 1 | ../../../Masonry/Masonry/MASViewConstraint.h -------------------------------------------------------------------------------- /LearnAVFoundation/AVFoundation04/Pods/Headers/Private/Masonry/Masonry.h: -------------------------------------------------------------------------------- 1 | ../../../Masonry/Masonry/Masonry.h -------------------------------------------------------------------------------- /LearnAVFoundation/AVFoundation04/Pods/Headers/Private/Masonry/NSArray+MASAdditions.h: -------------------------------------------------------------------------------- 1 | ../../../Masonry/Masonry/NSArray+MASAdditions.h -------------------------------------------------------------------------------- /LearnAVFoundation/AVFoundation04/Pods/Headers/Private/Masonry/NSArray+MASShorthandAdditions.h: -------------------------------------------------------------------------------- 1 | ../../../Masonry/Masonry/NSArray+MASShorthandAdditions.h -------------------------------------------------------------------------------- /LearnAVFoundation/AVFoundation04/Pods/Headers/Private/Masonry/View+MASAdditions.h: -------------------------------------------------------------------------------- 1 | ../../../Masonry/Masonry/View+MASAdditions.h -------------------------------------------------------------------------------- /LearnAVFoundation/AVFoundation04/Pods/Headers/Private/Masonry/View+MASShorthandAdditions.h: -------------------------------------------------------------------------------- 1 | ../../../Masonry/Masonry/View+MASShorthandAdditions.h -------------------------------------------------------------------------------- /LearnAVFoundation/AVFoundation04/Pods/Headers/Private/Masonry/ViewController+MASAdditions.h: -------------------------------------------------------------------------------- 1 | ../../../Masonry/Masonry/ViewController+MASAdditions.h -------------------------------------------------------------------------------- /LearnAVFoundation/AVFoundation04/Pods/Headers/Public/BlocksKit/A2BlockInvocation.h: -------------------------------------------------------------------------------- 1 | ../../../BlocksKit/BlocksKit/DynamicDelegate/A2BlockInvocation.h -------------------------------------------------------------------------------- /LearnAVFoundation/AVFoundation04/Pods/Headers/Public/BlocksKit/A2DynamicDelegate.h: -------------------------------------------------------------------------------- 1 | ../../../BlocksKit/BlocksKit/DynamicDelegate/A2DynamicDelegate.h -------------------------------------------------------------------------------- /LearnAVFoundation/AVFoundation04/Pods/Headers/Public/BlocksKit/BKMacros.h: -------------------------------------------------------------------------------- 1 | ../../../BlocksKit/BlocksKit/Core/BKMacros.h -------------------------------------------------------------------------------- /LearnAVFoundation/AVFoundation04/Pods/Headers/Public/BlocksKit/BlocksKit+MessageUI.h: -------------------------------------------------------------------------------- 1 | ../../../BlocksKit/BlocksKit/BlocksKit+MessageUI.h -------------------------------------------------------------------------------- /LearnAVFoundation/AVFoundation04/Pods/Headers/Public/BlocksKit/BlocksKit+UIKit.h: -------------------------------------------------------------------------------- 1 | ../../../BlocksKit/BlocksKit/BlocksKit+UIKit.h -------------------------------------------------------------------------------- /LearnAVFoundation/AVFoundation04/Pods/Headers/Public/BlocksKit/BlocksKit.h: -------------------------------------------------------------------------------- 1 | ../../../BlocksKit/BlocksKit/BlocksKit.h -------------------------------------------------------------------------------- /LearnAVFoundation/AVFoundation04/Pods/Headers/Public/BlocksKit/NSArray+BlocksKit.h: -------------------------------------------------------------------------------- 1 | ../../../BlocksKit/BlocksKit/Core/NSArray+BlocksKit.h -------------------------------------------------------------------------------- /LearnAVFoundation/AVFoundation04/Pods/Headers/Public/BlocksKit/NSCache+BlocksKit.h: -------------------------------------------------------------------------------- 1 | ../../../BlocksKit/BlocksKit/DynamicDelegate/Foundation/NSCache+BlocksKit.h -------------------------------------------------------------------------------- /LearnAVFoundation/AVFoundation04/Pods/Headers/Public/BlocksKit/NSDictionary+BlocksKit.h: -------------------------------------------------------------------------------- 1 | ../../../BlocksKit/BlocksKit/Core/NSDictionary+BlocksKit.h -------------------------------------------------------------------------------- /LearnAVFoundation/AVFoundation04/Pods/Headers/Public/BlocksKit/NSIndexSet+BlocksKit.h: -------------------------------------------------------------------------------- 1 | ../../../BlocksKit/BlocksKit/Core/NSIndexSet+BlocksKit.h -------------------------------------------------------------------------------- /LearnAVFoundation/AVFoundation04/Pods/Headers/Public/BlocksKit/NSInvocation+BlocksKit.h: -------------------------------------------------------------------------------- 1 | ../../../BlocksKit/BlocksKit/Core/NSInvocation+BlocksKit.h -------------------------------------------------------------------------------- /LearnAVFoundation/AVFoundation04/Pods/Headers/Public/BlocksKit/NSMutableArray+BlocksKit.h: -------------------------------------------------------------------------------- 1 | ../../../BlocksKit/BlocksKit/Core/NSMutableArray+BlocksKit.h -------------------------------------------------------------------------------- /LearnAVFoundation/AVFoundation04/Pods/Headers/Public/BlocksKit/NSMutableIndexSet+BlocksKit.h: -------------------------------------------------------------------------------- 1 | ../../../BlocksKit/BlocksKit/Core/NSMutableIndexSet+BlocksKit.h -------------------------------------------------------------------------------- /LearnAVFoundation/AVFoundation04/Pods/Headers/Public/BlocksKit/NSMutableSet+BlocksKit.h: -------------------------------------------------------------------------------- 1 | ../../../BlocksKit/BlocksKit/Core/NSMutableSet+BlocksKit.h -------------------------------------------------------------------------------- /LearnAVFoundation/AVFoundation04/Pods/Headers/Public/BlocksKit/NSObject+BKAssociatedObjects.h: -------------------------------------------------------------------------------- 1 | ../../../BlocksKit/BlocksKit/Core/NSObject+BKAssociatedObjects.h -------------------------------------------------------------------------------- /LearnAVFoundation/AVFoundation04/Pods/Headers/Public/BlocksKit/NSObject+BKBlockExecution.h: -------------------------------------------------------------------------------- 1 | ../../../BlocksKit/BlocksKit/Core/NSObject+BKBlockExecution.h -------------------------------------------------------------------------------- /LearnAVFoundation/AVFoundation04/Pods/Headers/Public/BlocksKit/NSObject+BKBlockObservation.h: -------------------------------------------------------------------------------- 1 | ../../../BlocksKit/BlocksKit/Core/NSObject+BKBlockObservation.h -------------------------------------------------------------------------------- /LearnAVFoundation/AVFoundation04/Pods/Headers/Public/BlocksKit/NSOrderedSet+BlocksKit.h: -------------------------------------------------------------------------------- 1 | ../../../BlocksKit/BlocksKit/Core/NSOrderedSet+BlocksKit.h -------------------------------------------------------------------------------- /LearnAVFoundation/AVFoundation04/Pods/Headers/Public/BlocksKit/NSSet+BlocksKit.h: -------------------------------------------------------------------------------- 1 | ../../../BlocksKit/BlocksKit/Core/NSSet+BlocksKit.h -------------------------------------------------------------------------------- /LearnAVFoundation/AVFoundation04/Pods/Headers/Public/BlocksKit/NSTimer+BlocksKit.h: -------------------------------------------------------------------------------- 1 | ../../../BlocksKit/BlocksKit/Core/NSTimer+BlocksKit.h -------------------------------------------------------------------------------- /LearnAVFoundation/AVFoundation04/Pods/Headers/Public/BlocksKit/UIActionSheet+BlocksKit.h: -------------------------------------------------------------------------------- 1 | ../../../BlocksKit/BlocksKit/UIKit/UIActionSheet+BlocksKit.h -------------------------------------------------------------------------------- /LearnAVFoundation/AVFoundation04/Pods/Headers/Public/BlocksKit/UIAlertView+BlocksKit.h: -------------------------------------------------------------------------------- 1 | ../../../BlocksKit/BlocksKit/UIKit/UIAlertView+BlocksKit.h -------------------------------------------------------------------------------- /LearnAVFoundation/AVFoundation04/Pods/Headers/Public/BlocksKit/UIBarButtonItem+BlocksKit.h: -------------------------------------------------------------------------------- 1 | ../../../BlocksKit/BlocksKit/UIKit/UIBarButtonItem+BlocksKit.h -------------------------------------------------------------------------------- /LearnAVFoundation/AVFoundation04/Pods/Headers/Public/BlocksKit/UIControl+BlocksKit.h: -------------------------------------------------------------------------------- 1 | ../../../BlocksKit/BlocksKit/UIKit/UIControl+BlocksKit.h -------------------------------------------------------------------------------- /LearnAVFoundation/AVFoundation04/Pods/Headers/Public/BlocksKit/UITextField+BlocksKit.h: -------------------------------------------------------------------------------- 1 | ../../../BlocksKit/BlocksKit/UIKit/UITextField+BlocksKit.h -------------------------------------------------------------------------------- /LearnAVFoundation/AVFoundation04/Pods/Headers/Public/BlocksKit/UIView+BlocksKit.h: -------------------------------------------------------------------------------- 1 | ../../../BlocksKit/BlocksKit/UIKit/UIView+BlocksKit.h -------------------------------------------------------------------------------- /LearnAVFoundation/AVFoundation04/Pods/Headers/Public/BlocksKit/UIWebView+BlocksKit.h: -------------------------------------------------------------------------------- 1 | ../../../BlocksKit/BlocksKit/UIKit/UIWebView+BlocksKit.h -------------------------------------------------------------------------------- /LearnAVFoundation/AVFoundation04/Pods/Headers/Public/Masonry/MASCompositeConstraint.h: -------------------------------------------------------------------------------- 1 | ../../../Masonry/Masonry/MASCompositeConstraint.h -------------------------------------------------------------------------------- /LearnAVFoundation/AVFoundation04/Pods/Headers/Public/Masonry/MASConstraint+Private.h: -------------------------------------------------------------------------------- 1 | ../../../Masonry/Masonry/MASConstraint+Private.h -------------------------------------------------------------------------------- /LearnAVFoundation/AVFoundation04/Pods/Headers/Public/Masonry/MASConstraint.h: -------------------------------------------------------------------------------- 1 | ../../../Masonry/Masonry/MASConstraint.h -------------------------------------------------------------------------------- /LearnAVFoundation/AVFoundation04/Pods/Headers/Public/Masonry/MASConstraintMaker.h: -------------------------------------------------------------------------------- 1 | ../../../Masonry/Masonry/MASConstraintMaker.h -------------------------------------------------------------------------------- /LearnAVFoundation/AVFoundation04/Pods/Headers/Public/Masonry/MASLayoutConstraint.h: -------------------------------------------------------------------------------- 1 | ../../../Masonry/Masonry/MASLayoutConstraint.h -------------------------------------------------------------------------------- /LearnAVFoundation/AVFoundation04/Pods/Headers/Public/Masonry/MASUtilities.h: -------------------------------------------------------------------------------- 1 | ../../../Masonry/Masonry/MASUtilities.h -------------------------------------------------------------------------------- /LearnAVFoundation/AVFoundation04/Pods/Headers/Public/Masonry/MASViewAttribute.h: -------------------------------------------------------------------------------- 1 | ../../../Masonry/Masonry/MASViewAttribute.h -------------------------------------------------------------------------------- /LearnAVFoundation/AVFoundation04/Pods/Headers/Public/Masonry/MASViewConstraint.h: -------------------------------------------------------------------------------- 1 | ../../../Masonry/Masonry/MASViewConstraint.h -------------------------------------------------------------------------------- /LearnAVFoundation/AVFoundation04/Pods/Headers/Public/Masonry/Masonry.h: -------------------------------------------------------------------------------- 1 | ../../../Masonry/Masonry/Masonry.h -------------------------------------------------------------------------------- /LearnAVFoundation/AVFoundation04/Pods/Headers/Public/Masonry/NSArray+MASAdditions.h: -------------------------------------------------------------------------------- 1 | ../../../Masonry/Masonry/NSArray+MASAdditions.h -------------------------------------------------------------------------------- /LearnAVFoundation/AVFoundation04/Pods/Headers/Public/Masonry/NSArray+MASShorthandAdditions.h: -------------------------------------------------------------------------------- 1 | ../../../Masonry/Masonry/NSArray+MASShorthandAdditions.h -------------------------------------------------------------------------------- /LearnAVFoundation/AVFoundation04/Pods/Headers/Public/Masonry/View+MASAdditions.h: -------------------------------------------------------------------------------- 1 | ../../../Masonry/Masonry/View+MASAdditions.h -------------------------------------------------------------------------------- /LearnAVFoundation/AVFoundation04/Pods/Headers/Public/Masonry/View+MASShorthandAdditions.h: -------------------------------------------------------------------------------- 1 | ../../../Masonry/Masonry/View+MASShorthandAdditions.h -------------------------------------------------------------------------------- /LearnAVFoundation/AVFoundation04/Pods/Headers/Public/Masonry/ViewController+MASAdditions.h: -------------------------------------------------------------------------------- 1 | ../../../Masonry/Masonry/ViewController+MASAdditions.h -------------------------------------------------------------------------------- /LearnAVFoundation/AVFoundation04/Pods/Manifest.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengju/iOSDemos/HEAD/LearnAVFoundation/AVFoundation04/Pods/Manifest.lock -------------------------------------------------------------------------------- /LearnAVFoundation/AVFoundation04/Pods/Masonry/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengju/iOSDemos/HEAD/LearnAVFoundation/AVFoundation04/Pods/Masonry/LICENSE -------------------------------------------------------------------------------- /LearnAVFoundation/AVFoundation05/AVFoundation/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengju/iOSDemos/HEAD/LearnAVFoundation/AVFoundation05/AVFoundation/main.m -------------------------------------------------------------------------------- /LearnAVFoundation/AVFoundation05/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengju/iOSDemos/HEAD/LearnAVFoundation/AVFoundation05/Podfile -------------------------------------------------------------------------------- /LearnAVFoundation/AVFoundation05/Podfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengju/iOSDemos/HEAD/LearnAVFoundation/AVFoundation05/Podfile.lock -------------------------------------------------------------------------------- /LearnAVFoundation/AVFoundation05/Pods/Headers/Private/BlocksKit/A2BlockInvocation.h: -------------------------------------------------------------------------------- 1 | ../../../BlocksKit/BlocksKit/DynamicDelegate/A2BlockInvocation.h -------------------------------------------------------------------------------- /LearnAVFoundation/AVFoundation05/Pods/Headers/Private/BlocksKit/A2DynamicDelegate.h: -------------------------------------------------------------------------------- 1 | ../../../BlocksKit/BlocksKit/DynamicDelegate/A2DynamicDelegate.h -------------------------------------------------------------------------------- /LearnAVFoundation/AVFoundation05/Pods/Headers/Private/BlocksKit/BKMacros.h: -------------------------------------------------------------------------------- 1 | ../../../BlocksKit/BlocksKit/Core/BKMacros.h -------------------------------------------------------------------------------- /LearnAVFoundation/AVFoundation05/Pods/Headers/Private/BlocksKit/BlocksKit+MessageUI.h: -------------------------------------------------------------------------------- 1 | ../../../BlocksKit/BlocksKit/BlocksKit+MessageUI.h -------------------------------------------------------------------------------- /LearnAVFoundation/AVFoundation05/Pods/Headers/Private/BlocksKit/BlocksKit+UIKit.h: -------------------------------------------------------------------------------- 1 | ../../../BlocksKit/BlocksKit/BlocksKit+UIKit.h -------------------------------------------------------------------------------- /LearnAVFoundation/AVFoundation05/Pods/Headers/Private/BlocksKit/BlocksKit.h: -------------------------------------------------------------------------------- 1 | ../../../BlocksKit/BlocksKit/BlocksKit.h -------------------------------------------------------------------------------- /LearnAVFoundation/AVFoundation05/Pods/Headers/Private/BlocksKit/NSArray+BlocksKit.h: -------------------------------------------------------------------------------- 1 | ../../../BlocksKit/BlocksKit/Core/NSArray+BlocksKit.h -------------------------------------------------------------------------------- /LearnAVFoundation/AVFoundation05/Pods/Headers/Private/BlocksKit/NSCache+BlocksKit.h: -------------------------------------------------------------------------------- 1 | ../../../BlocksKit/BlocksKit/DynamicDelegate/Foundation/NSCache+BlocksKit.h -------------------------------------------------------------------------------- /LearnAVFoundation/AVFoundation05/Pods/Headers/Private/BlocksKit/NSDictionary+BlocksKit.h: -------------------------------------------------------------------------------- 1 | ../../../BlocksKit/BlocksKit/Core/NSDictionary+BlocksKit.h -------------------------------------------------------------------------------- /LearnAVFoundation/AVFoundation05/Pods/Headers/Private/BlocksKit/NSIndexSet+BlocksKit.h: -------------------------------------------------------------------------------- 1 | ../../../BlocksKit/BlocksKit/Core/NSIndexSet+BlocksKit.h -------------------------------------------------------------------------------- /LearnAVFoundation/AVFoundation05/Pods/Headers/Private/BlocksKit/NSInvocation+BlocksKit.h: -------------------------------------------------------------------------------- 1 | ../../../BlocksKit/BlocksKit/Core/NSInvocation+BlocksKit.h -------------------------------------------------------------------------------- /LearnAVFoundation/AVFoundation05/Pods/Headers/Private/BlocksKit/NSMutableArray+BlocksKit.h: -------------------------------------------------------------------------------- 1 | ../../../BlocksKit/BlocksKit/Core/NSMutableArray+BlocksKit.h -------------------------------------------------------------------------------- /LearnAVFoundation/AVFoundation05/Pods/Headers/Private/BlocksKit/NSMutableIndexSet+BlocksKit.h: -------------------------------------------------------------------------------- 1 | ../../../BlocksKit/BlocksKit/Core/NSMutableIndexSet+BlocksKit.h -------------------------------------------------------------------------------- /LearnAVFoundation/AVFoundation05/Pods/Headers/Private/BlocksKit/NSMutableSet+BlocksKit.h: -------------------------------------------------------------------------------- 1 | ../../../BlocksKit/BlocksKit/Core/NSMutableSet+BlocksKit.h -------------------------------------------------------------------------------- /LearnAVFoundation/AVFoundation05/Pods/Headers/Private/BlocksKit/NSObject+BKAssociatedObjects.h: -------------------------------------------------------------------------------- 1 | ../../../BlocksKit/BlocksKit/Core/NSObject+BKAssociatedObjects.h -------------------------------------------------------------------------------- /LearnAVFoundation/AVFoundation05/Pods/Headers/Private/BlocksKit/NSObject+BKBlockExecution.h: -------------------------------------------------------------------------------- 1 | ../../../BlocksKit/BlocksKit/Core/NSObject+BKBlockExecution.h -------------------------------------------------------------------------------- /LearnAVFoundation/AVFoundation05/Pods/Headers/Private/BlocksKit/NSObject+BKBlockObservation.h: -------------------------------------------------------------------------------- 1 | ../../../BlocksKit/BlocksKit/Core/NSObject+BKBlockObservation.h -------------------------------------------------------------------------------- /LearnAVFoundation/AVFoundation05/Pods/Headers/Private/BlocksKit/NSOrderedSet+BlocksKit.h: -------------------------------------------------------------------------------- 1 | ../../../BlocksKit/BlocksKit/Core/NSOrderedSet+BlocksKit.h -------------------------------------------------------------------------------- /LearnAVFoundation/AVFoundation05/Pods/Headers/Private/BlocksKit/NSSet+BlocksKit.h: -------------------------------------------------------------------------------- 1 | ../../../BlocksKit/BlocksKit/Core/NSSet+BlocksKit.h -------------------------------------------------------------------------------- /LearnAVFoundation/AVFoundation05/Pods/Headers/Private/BlocksKit/NSTimer+BlocksKit.h: -------------------------------------------------------------------------------- 1 | ../../../BlocksKit/BlocksKit/Core/NSTimer+BlocksKit.h -------------------------------------------------------------------------------- /LearnAVFoundation/AVFoundation05/Pods/Headers/Private/BlocksKit/UIActionSheet+BlocksKit.h: -------------------------------------------------------------------------------- 1 | ../../../BlocksKit/BlocksKit/UIKit/UIActionSheet+BlocksKit.h -------------------------------------------------------------------------------- /LearnAVFoundation/AVFoundation05/Pods/Headers/Private/BlocksKit/UIAlertView+BlocksKit.h: -------------------------------------------------------------------------------- 1 | ../../../BlocksKit/BlocksKit/UIKit/UIAlertView+BlocksKit.h -------------------------------------------------------------------------------- /LearnAVFoundation/AVFoundation05/Pods/Headers/Private/BlocksKit/UIBarButtonItem+BlocksKit.h: -------------------------------------------------------------------------------- 1 | ../../../BlocksKit/BlocksKit/UIKit/UIBarButtonItem+BlocksKit.h -------------------------------------------------------------------------------- /LearnAVFoundation/AVFoundation05/Pods/Headers/Private/BlocksKit/UIControl+BlocksKit.h: -------------------------------------------------------------------------------- 1 | ../../../BlocksKit/BlocksKit/UIKit/UIControl+BlocksKit.h -------------------------------------------------------------------------------- /LearnAVFoundation/AVFoundation05/Pods/Headers/Private/BlocksKit/UITextField+BlocksKit.h: -------------------------------------------------------------------------------- 1 | ../../../BlocksKit/BlocksKit/UIKit/UITextField+BlocksKit.h -------------------------------------------------------------------------------- /LearnAVFoundation/AVFoundation05/Pods/Headers/Private/BlocksKit/UIView+BlocksKit.h: -------------------------------------------------------------------------------- 1 | ../../../BlocksKit/BlocksKit/UIKit/UIView+BlocksKit.h -------------------------------------------------------------------------------- /LearnAVFoundation/AVFoundation05/Pods/Headers/Private/BlocksKit/UIWebView+BlocksKit.h: -------------------------------------------------------------------------------- 1 | ../../../BlocksKit/BlocksKit/UIKit/UIWebView+BlocksKit.h -------------------------------------------------------------------------------- /LearnAVFoundation/AVFoundation05/Pods/Headers/Private/Masonry/MASCompositeConstraint.h: -------------------------------------------------------------------------------- 1 | ../../../Masonry/Masonry/MASCompositeConstraint.h -------------------------------------------------------------------------------- /LearnAVFoundation/AVFoundation05/Pods/Headers/Private/Masonry/MASConstraint+Private.h: -------------------------------------------------------------------------------- 1 | ../../../Masonry/Masonry/MASConstraint+Private.h -------------------------------------------------------------------------------- /LearnAVFoundation/AVFoundation05/Pods/Headers/Private/Masonry/MASConstraint.h: -------------------------------------------------------------------------------- 1 | ../../../Masonry/Masonry/MASConstraint.h -------------------------------------------------------------------------------- /LearnAVFoundation/AVFoundation05/Pods/Headers/Private/Masonry/MASConstraintMaker.h: -------------------------------------------------------------------------------- 1 | ../../../Masonry/Masonry/MASConstraintMaker.h -------------------------------------------------------------------------------- /LearnAVFoundation/AVFoundation05/Pods/Headers/Private/Masonry/MASLayoutConstraint.h: -------------------------------------------------------------------------------- 1 | ../../../Masonry/Masonry/MASLayoutConstraint.h -------------------------------------------------------------------------------- /LearnAVFoundation/AVFoundation05/Pods/Headers/Private/Masonry/MASUtilities.h: -------------------------------------------------------------------------------- 1 | ../../../Masonry/Masonry/MASUtilities.h -------------------------------------------------------------------------------- /LearnAVFoundation/AVFoundation05/Pods/Headers/Private/Masonry/MASViewAttribute.h: -------------------------------------------------------------------------------- 1 | ../../../Masonry/Masonry/MASViewAttribute.h -------------------------------------------------------------------------------- /LearnAVFoundation/AVFoundation05/Pods/Headers/Private/Masonry/MASViewConstraint.h: -------------------------------------------------------------------------------- 1 | ../../../Masonry/Masonry/MASViewConstraint.h -------------------------------------------------------------------------------- /LearnAVFoundation/AVFoundation05/Pods/Headers/Private/Masonry/Masonry.h: -------------------------------------------------------------------------------- 1 | ../../../Masonry/Masonry/Masonry.h -------------------------------------------------------------------------------- /LearnAVFoundation/AVFoundation05/Pods/Headers/Private/Masonry/NSArray+MASAdditions.h: -------------------------------------------------------------------------------- 1 | ../../../Masonry/Masonry/NSArray+MASAdditions.h -------------------------------------------------------------------------------- /LearnAVFoundation/AVFoundation05/Pods/Headers/Private/Masonry/NSArray+MASShorthandAdditions.h: -------------------------------------------------------------------------------- 1 | ../../../Masonry/Masonry/NSArray+MASShorthandAdditions.h -------------------------------------------------------------------------------- /LearnAVFoundation/AVFoundation05/Pods/Headers/Private/Masonry/View+MASAdditions.h: -------------------------------------------------------------------------------- 1 | ../../../Masonry/Masonry/View+MASAdditions.h -------------------------------------------------------------------------------- /LearnAVFoundation/AVFoundation05/Pods/Headers/Private/Masonry/View+MASShorthandAdditions.h: -------------------------------------------------------------------------------- 1 | ../../../Masonry/Masonry/View+MASShorthandAdditions.h -------------------------------------------------------------------------------- /LearnAVFoundation/AVFoundation05/Pods/Headers/Private/Masonry/ViewController+MASAdditions.h: -------------------------------------------------------------------------------- 1 | ../../../Masonry/Masonry/ViewController+MASAdditions.h -------------------------------------------------------------------------------- /LearnAVFoundation/AVFoundation05/Pods/Headers/Private/SVProgressHUD/SVIndefiniteAnimatedView.h: -------------------------------------------------------------------------------- 1 | ../../../SVProgressHUD/SVProgressHUD/SVIndefiniteAnimatedView.h -------------------------------------------------------------------------------- /LearnAVFoundation/AVFoundation05/Pods/Headers/Private/SVProgressHUD/SVProgressAnimatedView.h: -------------------------------------------------------------------------------- 1 | ../../../SVProgressHUD/SVProgressHUD/SVProgressAnimatedView.h -------------------------------------------------------------------------------- /LearnAVFoundation/AVFoundation05/Pods/Headers/Private/SVProgressHUD/SVProgressHUD.h: -------------------------------------------------------------------------------- 1 | ../../../SVProgressHUD/SVProgressHUD/SVProgressHUD.h -------------------------------------------------------------------------------- /LearnAVFoundation/AVFoundation05/Pods/Headers/Private/SVProgressHUD/SVRadialGradientLayer.h: -------------------------------------------------------------------------------- 1 | ../../../SVProgressHUD/SVProgressHUD/SVRadialGradientLayer.h -------------------------------------------------------------------------------- /LearnAVFoundation/AVFoundation05/Pods/Headers/Public/BlocksKit/A2BlockInvocation.h: -------------------------------------------------------------------------------- 1 | ../../../BlocksKit/BlocksKit/DynamicDelegate/A2BlockInvocation.h -------------------------------------------------------------------------------- /LearnAVFoundation/AVFoundation05/Pods/Headers/Public/BlocksKit/A2DynamicDelegate.h: -------------------------------------------------------------------------------- 1 | ../../../BlocksKit/BlocksKit/DynamicDelegate/A2DynamicDelegate.h -------------------------------------------------------------------------------- /LearnAVFoundation/AVFoundation05/Pods/Headers/Public/BlocksKit/BKMacros.h: -------------------------------------------------------------------------------- 1 | ../../../BlocksKit/BlocksKit/Core/BKMacros.h -------------------------------------------------------------------------------- /LearnAVFoundation/AVFoundation05/Pods/Headers/Public/BlocksKit/BlocksKit+MessageUI.h: -------------------------------------------------------------------------------- 1 | ../../../BlocksKit/BlocksKit/BlocksKit+MessageUI.h -------------------------------------------------------------------------------- /LearnAVFoundation/AVFoundation05/Pods/Headers/Public/BlocksKit/BlocksKit+UIKit.h: -------------------------------------------------------------------------------- 1 | ../../../BlocksKit/BlocksKit/BlocksKit+UIKit.h -------------------------------------------------------------------------------- /LearnAVFoundation/AVFoundation05/Pods/Headers/Public/BlocksKit/BlocksKit.h: -------------------------------------------------------------------------------- 1 | ../../../BlocksKit/BlocksKit/BlocksKit.h -------------------------------------------------------------------------------- /LearnAVFoundation/AVFoundation05/Pods/Headers/Public/BlocksKit/NSArray+BlocksKit.h: -------------------------------------------------------------------------------- 1 | ../../../BlocksKit/BlocksKit/Core/NSArray+BlocksKit.h -------------------------------------------------------------------------------- /LearnAVFoundation/AVFoundation05/Pods/Headers/Public/BlocksKit/NSCache+BlocksKit.h: -------------------------------------------------------------------------------- 1 | ../../../BlocksKit/BlocksKit/DynamicDelegate/Foundation/NSCache+BlocksKit.h -------------------------------------------------------------------------------- /LearnAVFoundation/AVFoundation05/Pods/Headers/Public/BlocksKit/NSDictionary+BlocksKit.h: -------------------------------------------------------------------------------- 1 | ../../../BlocksKit/BlocksKit/Core/NSDictionary+BlocksKit.h -------------------------------------------------------------------------------- /LearnAVFoundation/AVFoundation05/Pods/Headers/Public/BlocksKit/NSIndexSet+BlocksKit.h: -------------------------------------------------------------------------------- 1 | ../../../BlocksKit/BlocksKit/Core/NSIndexSet+BlocksKit.h -------------------------------------------------------------------------------- /LearnAVFoundation/AVFoundation05/Pods/Headers/Public/BlocksKit/NSInvocation+BlocksKit.h: -------------------------------------------------------------------------------- 1 | ../../../BlocksKit/BlocksKit/Core/NSInvocation+BlocksKit.h -------------------------------------------------------------------------------- /LearnAVFoundation/AVFoundation05/Pods/Headers/Public/BlocksKit/NSMutableArray+BlocksKit.h: -------------------------------------------------------------------------------- 1 | ../../../BlocksKit/BlocksKit/Core/NSMutableArray+BlocksKit.h -------------------------------------------------------------------------------- /LearnAVFoundation/AVFoundation05/Pods/Headers/Public/BlocksKit/NSMutableIndexSet+BlocksKit.h: -------------------------------------------------------------------------------- 1 | ../../../BlocksKit/BlocksKit/Core/NSMutableIndexSet+BlocksKit.h -------------------------------------------------------------------------------- /LearnAVFoundation/AVFoundation05/Pods/Headers/Public/BlocksKit/NSMutableSet+BlocksKit.h: -------------------------------------------------------------------------------- 1 | ../../../BlocksKit/BlocksKit/Core/NSMutableSet+BlocksKit.h -------------------------------------------------------------------------------- /LearnAVFoundation/AVFoundation05/Pods/Headers/Public/BlocksKit/NSObject+BKAssociatedObjects.h: -------------------------------------------------------------------------------- 1 | ../../../BlocksKit/BlocksKit/Core/NSObject+BKAssociatedObjects.h -------------------------------------------------------------------------------- /LearnAVFoundation/AVFoundation05/Pods/Headers/Public/BlocksKit/NSObject+BKBlockExecution.h: -------------------------------------------------------------------------------- 1 | ../../../BlocksKit/BlocksKit/Core/NSObject+BKBlockExecution.h -------------------------------------------------------------------------------- /LearnAVFoundation/AVFoundation05/Pods/Headers/Public/BlocksKit/NSObject+BKBlockObservation.h: -------------------------------------------------------------------------------- 1 | ../../../BlocksKit/BlocksKit/Core/NSObject+BKBlockObservation.h -------------------------------------------------------------------------------- /LearnAVFoundation/AVFoundation05/Pods/Headers/Public/BlocksKit/NSOrderedSet+BlocksKit.h: -------------------------------------------------------------------------------- 1 | ../../../BlocksKit/BlocksKit/Core/NSOrderedSet+BlocksKit.h -------------------------------------------------------------------------------- /LearnAVFoundation/AVFoundation05/Pods/Headers/Public/BlocksKit/NSSet+BlocksKit.h: -------------------------------------------------------------------------------- 1 | ../../../BlocksKit/BlocksKit/Core/NSSet+BlocksKit.h -------------------------------------------------------------------------------- /LearnAVFoundation/AVFoundation05/Pods/Headers/Public/BlocksKit/NSTimer+BlocksKit.h: -------------------------------------------------------------------------------- 1 | ../../../BlocksKit/BlocksKit/Core/NSTimer+BlocksKit.h -------------------------------------------------------------------------------- /LearnAVFoundation/AVFoundation05/Pods/Headers/Public/BlocksKit/UIActionSheet+BlocksKit.h: -------------------------------------------------------------------------------- 1 | ../../../BlocksKit/BlocksKit/UIKit/UIActionSheet+BlocksKit.h -------------------------------------------------------------------------------- /LearnAVFoundation/AVFoundation05/Pods/Headers/Public/BlocksKit/UIAlertView+BlocksKit.h: -------------------------------------------------------------------------------- 1 | ../../../BlocksKit/BlocksKit/UIKit/UIAlertView+BlocksKit.h -------------------------------------------------------------------------------- /LearnAVFoundation/AVFoundation05/Pods/Headers/Public/BlocksKit/UIBarButtonItem+BlocksKit.h: -------------------------------------------------------------------------------- 1 | ../../../BlocksKit/BlocksKit/UIKit/UIBarButtonItem+BlocksKit.h -------------------------------------------------------------------------------- /LearnAVFoundation/AVFoundation05/Pods/Headers/Public/BlocksKit/UIControl+BlocksKit.h: -------------------------------------------------------------------------------- 1 | ../../../BlocksKit/BlocksKit/UIKit/UIControl+BlocksKit.h -------------------------------------------------------------------------------- /LearnAVFoundation/AVFoundation05/Pods/Headers/Public/BlocksKit/UITextField+BlocksKit.h: -------------------------------------------------------------------------------- 1 | ../../../BlocksKit/BlocksKit/UIKit/UITextField+BlocksKit.h -------------------------------------------------------------------------------- /LearnAVFoundation/AVFoundation05/Pods/Headers/Public/BlocksKit/UIView+BlocksKit.h: -------------------------------------------------------------------------------- 1 | ../../../BlocksKit/BlocksKit/UIKit/UIView+BlocksKit.h -------------------------------------------------------------------------------- /LearnAVFoundation/AVFoundation05/Pods/Headers/Public/BlocksKit/UIWebView+BlocksKit.h: -------------------------------------------------------------------------------- 1 | ../../../BlocksKit/BlocksKit/UIKit/UIWebView+BlocksKit.h -------------------------------------------------------------------------------- /LearnAVFoundation/AVFoundation05/Pods/Headers/Public/Masonry/MASCompositeConstraint.h: -------------------------------------------------------------------------------- 1 | ../../../Masonry/Masonry/MASCompositeConstraint.h -------------------------------------------------------------------------------- /LearnAVFoundation/AVFoundation05/Pods/Headers/Public/Masonry/MASConstraint+Private.h: -------------------------------------------------------------------------------- 1 | ../../../Masonry/Masonry/MASConstraint+Private.h -------------------------------------------------------------------------------- /LearnAVFoundation/AVFoundation05/Pods/Headers/Public/Masonry/MASConstraint.h: -------------------------------------------------------------------------------- 1 | ../../../Masonry/Masonry/MASConstraint.h -------------------------------------------------------------------------------- /LearnAVFoundation/AVFoundation05/Pods/Headers/Public/Masonry/MASConstraintMaker.h: -------------------------------------------------------------------------------- 1 | ../../../Masonry/Masonry/MASConstraintMaker.h -------------------------------------------------------------------------------- /LearnAVFoundation/AVFoundation05/Pods/Headers/Public/Masonry/MASLayoutConstraint.h: -------------------------------------------------------------------------------- 1 | ../../../Masonry/Masonry/MASLayoutConstraint.h -------------------------------------------------------------------------------- /LearnAVFoundation/AVFoundation05/Pods/Headers/Public/Masonry/MASUtilities.h: -------------------------------------------------------------------------------- 1 | ../../../Masonry/Masonry/MASUtilities.h -------------------------------------------------------------------------------- /LearnAVFoundation/AVFoundation05/Pods/Headers/Public/Masonry/MASViewAttribute.h: -------------------------------------------------------------------------------- 1 | ../../../Masonry/Masonry/MASViewAttribute.h -------------------------------------------------------------------------------- /LearnAVFoundation/AVFoundation05/Pods/Headers/Public/Masonry/MASViewConstraint.h: -------------------------------------------------------------------------------- 1 | ../../../Masonry/Masonry/MASViewConstraint.h -------------------------------------------------------------------------------- /LearnAVFoundation/AVFoundation05/Pods/Headers/Public/Masonry/Masonry.h: -------------------------------------------------------------------------------- 1 | ../../../Masonry/Masonry/Masonry.h -------------------------------------------------------------------------------- /LearnAVFoundation/AVFoundation05/Pods/Headers/Public/Masonry/NSArray+MASAdditions.h: -------------------------------------------------------------------------------- 1 | ../../../Masonry/Masonry/NSArray+MASAdditions.h -------------------------------------------------------------------------------- /LearnAVFoundation/AVFoundation05/Pods/Headers/Public/Masonry/NSArray+MASShorthandAdditions.h: -------------------------------------------------------------------------------- 1 | ../../../Masonry/Masonry/NSArray+MASShorthandAdditions.h -------------------------------------------------------------------------------- /LearnAVFoundation/AVFoundation05/Pods/Headers/Public/Masonry/View+MASAdditions.h: -------------------------------------------------------------------------------- 1 | ../../../Masonry/Masonry/View+MASAdditions.h -------------------------------------------------------------------------------- /LearnAVFoundation/AVFoundation05/Pods/Headers/Public/Masonry/View+MASShorthandAdditions.h: -------------------------------------------------------------------------------- 1 | ../../../Masonry/Masonry/View+MASShorthandAdditions.h -------------------------------------------------------------------------------- /LearnAVFoundation/AVFoundation05/Pods/Headers/Public/Masonry/ViewController+MASAdditions.h: -------------------------------------------------------------------------------- 1 | ../../../Masonry/Masonry/ViewController+MASAdditions.h -------------------------------------------------------------------------------- /LearnAVFoundation/AVFoundation05/Pods/Headers/Public/SVProgressHUD/SVIndefiniteAnimatedView.h: -------------------------------------------------------------------------------- 1 | ../../../SVProgressHUD/SVProgressHUD/SVIndefiniteAnimatedView.h -------------------------------------------------------------------------------- /LearnAVFoundation/AVFoundation05/Pods/Headers/Public/SVProgressHUD/SVProgressAnimatedView.h: -------------------------------------------------------------------------------- 1 | ../../../SVProgressHUD/SVProgressHUD/SVProgressAnimatedView.h -------------------------------------------------------------------------------- /LearnAVFoundation/AVFoundation05/Pods/Headers/Public/SVProgressHUD/SVProgressHUD.h: -------------------------------------------------------------------------------- 1 | ../../../SVProgressHUD/SVProgressHUD/SVProgressHUD.h -------------------------------------------------------------------------------- /LearnAVFoundation/AVFoundation05/Pods/Headers/Public/SVProgressHUD/SVRadialGradientLayer.h: -------------------------------------------------------------------------------- 1 | ../../../SVProgressHUD/SVProgressHUD/SVRadialGradientLayer.h -------------------------------------------------------------------------------- /LearnAVFoundation/AVFoundation05/Pods/Manifest.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengju/iOSDemos/HEAD/LearnAVFoundation/AVFoundation05/Pods/Manifest.lock -------------------------------------------------------------------------------- /LearnAVFoundation/AVFoundation05/Pods/Masonry/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengju/iOSDemos/HEAD/LearnAVFoundation/AVFoundation05/Pods/Masonry/LICENSE -------------------------------------------------------------------------------- /LearnAVFoundation/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengju/iOSDemos/HEAD/LearnAVFoundation/README.md -------------------------------------------------------------------------------- /LearnAVFoundation/Resources/IMG_0067.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengju/iOSDemos/HEAD/LearnAVFoundation/Resources/IMG_0067.mp4 -------------------------------------------------------------------------------- /LearnAVFoundation/Resources/良品铺子.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengju/iOSDemos/HEAD/LearnAVFoundation/Resources/良品铺子.mp4 -------------------------------------------------------------------------------- /Lock/Lock.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengju/iOSDemos/HEAD/Lock/Lock.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Lock/Lock/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengju/iOSDemos/HEAD/Lock/Lock/AppDelegate.h -------------------------------------------------------------------------------- /Lock/Lock/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengju/iOSDemos/HEAD/Lock/Lock/AppDelegate.m -------------------------------------------------------------------------------- /Lock/Lock/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengju/iOSDemos/HEAD/Lock/Lock/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /Lock/Lock/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengju/iOSDemos/HEAD/Lock/Lock/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /Lock/Lock/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengju/iOSDemos/HEAD/Lock/Lock/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /Lock/Lock/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengju/iOSDemos/HEAD/Lock/Lock/Info.plist -------------------------------------------------------------------------------- /Lock/Lock/SceneDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengju/iOSDemos/HEAD/Lock/Lock/SceneDelegate.h -------------------------------------------------------------------------------- /Lock/Lock/SceneDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengju/iOSDemos/HEAD/Lock/Lock/SceneDelegate.m -------------------------------------------------------------------------------- /Lock/Lock/ViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengju/iOSDemos/HEAD/Lock/Lock/ViewController.h -------------------------------------------------------------------------------- /Lock/Lock/ViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengju/iOSDemos/HEAD/Lock/Lock/ViewController.m -------------------------------------------------------------------------------- /Lock/Lock/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengju/iOSDemos/HEAD/Lock/Lock/main.m -------------------------------------------------------------------------------- /MergeImages/MergeImages.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengju/iOSDemos/HEAD/MergeImages/MergeImages.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /MergeImages/MergeImages/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengju/iOSDemos/HEAD/MergeImages/MergeImages/AppDelegate.h -------------------------------------------------------------------------------- /MergeImages/MergeImages/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengju/iOSDemos/HEAD/MergeImages/MergeImages/AppDelegate.m -------------------------------------------------------------------------------- /MergeImages/MergeImages/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengju/iOSDemos/HEAD/MergeImages/MergeImages/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /MergeImages/MergeImages/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengju/iOSDemos/HEAD/MergeImages/MergeImages/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /MergeImages/MergeImages/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengju/iOSDemos/HEAD/MergeImages/MergeImages/Info.plist -------------------------------------------------------------------------------- /MergeImages/MergeImages/SceneDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengju/iOSDemos/HEAD/MergeImages/MergeImages/SceneDelegate.h -------------------------------------------------------------------------------- /MergeImages/MergeImages/SceneDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengju/iOSDemos/HEAD/MergeImages/MergeImages/SceneDelegate.m -------------------------------------------------------------------------------- /MergeImages/MergeImages/ViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengju/iOSDemos/HEAD/MergeImages/MergeImages/ViewController.h -------------------------------------------------------------------------------- /MergeImages/MergeImages/ViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengju/iOSDemos/HEAD/MergeImages/MergeImages/ViewController.m -------------------------------------------------------------------------------- /MergeImages/MergeImages/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengju/iOSDemos/HEAD/MergeImages/MergeImages/main.m -------------------------------------------------------------------------------- /MergeImages/MergeImagesTests/MergeImagesTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengju/iOSDemos/HEAD/MergeImages/MergeImagesTests/MergeImagesTests.m -------------------------------------------------------------------------------- /MergeImages/MergeImagesUITests/MergeImagesUITests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengju/iOSDemos/HEAD/MergeImages/MergeImagesUITests/MergeImagesUITests.m -------------------------------------------------------------------------------- /NSOperationTest/NSOperationTest/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengju/iOSDemos/HEAD/NSOperationTest/NSOperationTest/AppDelegate.h -------------------------------------------------------------------------------- /NSOperationTest/NSOperationTest/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengju/iOSDemos/HEAD/NSOperationTest/NSOperationTest/AppDelegate.m -------------------------------------------------------------------------------- /NSOperationTest/NSOperationTest/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengju/iOSDemos/HEAD/NSOperationTest/NSOperationTest/Info.plist -------------------------------------------------------------------------------- /NSOperationTest/NSOperationTest/SceneDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengju/iOSDemos/HEAD/NSOperationTest/NSOperationTest/SceneDelegate.h -------------------------------------------------------------------------------- /NSOperationTest/NSOperationTest/SceneDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengju/iOSDemos/HEAD/NSOperationTest/NSOperationTest/SceneDelegate.m -------------------------------------------------------------------------------- /NSOperationTest/NSOperationTest/ViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengju/iOSDemos/HEAD/NSOperationTest/NSOperationTest/ViewController.h -------------------------------------------------------------------------------- /NSOperationTest/NSOperationTest/ViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengju/iOSDemos/HEAD/NSOperationTest/NSOperationTest/ViewController.m -------------------------------------------------------------------------------- /NSOperationTest/NSOperationTest/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengju/iOSDemos/HEAD/NSOperationTest/NSOperationTest/main.m -------------------------------------------------------------------------------- /NSTimerDemo/NSTimerDemo.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengju/iOSDemos/HEAD/NSTimerDemo/NSTimerDemo.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /NSTimerDemo/NSTimerDemo/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengju/iOSDemos/HEAD/NSTimerDemo/NSTimerDemo/AppDelegate.h -------------------------------------------------------------------------------- /NSTimerDemo/NSTimerDemo/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengju/iOSDemos/HEAD/NSTimerDemo/NSTimerDemo/AppDelegate.m -------------------------------------------------------------------------------- /NSTimerDemo/NSTimerDemo/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengju/iOSDemos/HEAD/NSTimerDemo/NSTimerDemo/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /NSTimerDemo/NSTimerDemo/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengju/iOSDemos/HEAD/NSTimerDemo/NSTimerDemo/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /NSTimerDemo/NSTimerDemo/DetailController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengju/iOSDemos/HEAD/NSTimerDemo/NSTimerDemo/DetailController.h -------------------------------------------------------------------------------- /NSTimerDemo/NSTimerDemo/DetailController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengju/iOSDemos/HEAD/NSTimerDemo/NSTimerDemo/DetailController.m -------------------------------------------------------------------------------- /NSTimerDemo/NSTimerDemo/DetailView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengju/iOSDemos/HEAD/NSTimerDemo/NSTimerDemo/DetailView.h -------------------------------------------------------------------------------- /NSTimerDemo/NSTimerDemo/DetailView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengju/iOSDemos/HEAD/NSTimerDemo/NSTimerDemo/DetailView.m -------------------------------------------------------------------------------- /NSTimerDemo/NSTimerDemo/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengju/iOSDemos/HEAD/NSTimerDemo/NSTimerDemo/Info.plist -------------------------------------------------------------------------------- /NSTimerDemo/NSTimerDemo/JTimer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengju/iOSDemos/HEAD/NSTimerDemo/NSTimerDemo/JTimer.h -------------------------------------------------------------------------------- /NSTimerDemo/NSTimerDemo/JTimer.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengju/iOSDemos/HEAD/NSTimerDemo/NSTimerDemo/JTimer.m -------------------------------------------------------------------------------- /NSTimerDemo/NSTimerDemo/ViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengju/iOSDemos/HEAD/NSTimerDemo/NSTimerDemo/ViewController.h -------------------------------------------------------------------------------- /NSTimerDemo/NSTimerDemo/ViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengju/iOSDemos/HEAD/NSTimerDemo/NSTimerDemo/ViewController.m -------------------------------------------------------------------------------- /NSTimerDemo/NSTimerDemo/ZJWeakProxy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengju/iOSDemos/HEAD/NSTimerDemo/NSTimerDemo/ZJWeakProxy.h -------------------------------------------------------------------------------- /NSTimerDemo/NSTimerDemo/ZJWeakProxy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengju/iOSDemos/HEAD/NSTimerDemo/NSTimerDemo/ZJWeakProxy.m -------------------------------------------------------------------------------- /NSTimerDemo/NSTimerDemo/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengju/iOSDemos/HEAD/NSTimerDemo/NSTimerDemo/main.m -------------------------------------------------------------------------------- /OperationQueueDemo/OperationQueueDemo/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengju/iOSDemos/HEAD/OperationQueueDemo/OperationQueueDemo/AppDelegate.h -------------------------------------------------------------------------------- /OperationQueueDemo/OperationQueueDemo/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengju/iOSDemos/HEAD/OperationQueueDemo/OperationQueueDemo/AppDelegate.m -------------------------------------------------------------------------------- /OperationQueueDemo/OperationQueueDemo/HttpNetwork.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengju/iOSDemos/HEAD/OperationQueueDemo/OperationQueueDemo/HttpNetwork.h -------------------------------------------------------------------------------- /OperationQueueDemo/OperationQueueDemo/HttpNetwork.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengju/iOSDemos/HEAD/OperationQueueDemo/OperationQueueDemo/HttpNetwork.m -------------------------------------------------------------------------------- /OperationQueueDemo/OperationQueueDemo/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengju/iOSDemos/HEAD/OperationQueueDemo/OperationQueueDemo/Info.plist -------------------------------------------------------------------------------- /OperationQueueDemo/OperationQueueDemo/SceneDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengju/iOSDemos/HEAD/OperationQueueDemo/OperationQueueDemo/SceneDelegate.h -------------------------------------------------------------------------------- /OperationQueueDemo/OperationQueueDemo/SceneDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengju/iOSDemos/HEAD/OperationQueueDemo/OperationQueueDemo/SceneDelegate.m -------------------------------------------------------------------------------- /OperationQueueDemo/OperationQueueDemo/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengju/iOSDemos/HEAD/OperationQueueDemo/OperationQueueDemo/main.m -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengju/iOSDemos/HEAD/README.md -------------------------------------------------------------------------------- /RunLoooop/RunLoooop.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengju/iOSDemos/HEAD/RunLoooop/RunLoooop.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /RunLoooop/RunLoooop/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengju/iOSDemos/HEAD/RunLoooop/RunLoooop/AppDelegate.h -------------------------------------------------------------------------------- /RunLoooop/RunLoooop/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengju/iOSDemos/HEAD/RunLoooop/RunLoooop/AppDelegate.m -------------------------------------------------------------------------------- /RunLoooop/RunLoooop/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengju/iOSDemos/HEAD/RunLoooop/RunLoooop/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /RunLoooop/RunLoooop/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengju/iOSDemos/HEAD/RunLoooop/RunLoooop/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /RunLoooop/RunLoooop/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengju/iOSDemos/HEAD/RunLoooop/RunLoooop/Info.plist -------------------------------------------------------------------------------- /RunLoooop/RunLoooop/ViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengju/iOSDemos/HEAD/RunLoooop/RunLoooop/ViewController.h -------------------------------------------------------------------------------- /RunLoooop/RunLoooop/ViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengju/iOSDemos/HEAD/RunLoooop/RunLoooop/ViewController.m -------------------------------------------------------------------------------- /RunLoooop/RunLoooop/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengju/iOSDemos/HEAD/RunLoooop/RunLoooop/main.m -------------------------------------------------------------------------------- /SpringBox/SpringBox.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengju/iOSDemos/HEAD/SpringBox/SpringBox.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /SpringBox/SpringBox/AlertManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengju/iOSDemos/HEAD/SpringBox/SpringBox/AlertManager.h -------------------------------------------------------------------------------- /SpringBox/SpringBox/AlertManager.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengju/iOSDemos/HEAD/SpringBox/SpringBox/AlertManager.m -------------------------------------------------------------------------------- /SpringBox/SpringBox/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengju/iOSDemos/HEAD/SpringBox/SpringBox/AppDelegate.h -------------------------------------------------------------------------------- /SpringBox/SpringBox/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengju/iOSDemos/HEAD/SpringBox/SpringBox/AppDelegate.m -------------------------------------------------------------------------------- /SpringBox/SpringBox/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengju/iOSDemos/HEAD/SpringBox/SpringBox/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /SpringBox/SpringBox/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengju/iOSDemos/HEAD/SpringBox/SpringBox/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /SpringBox/SpringBox/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengju/iOSDemos/HEAD/SpringBox/SpringBox/Info.plist -------------------------------------------------------------------------------- /SpringBox/SpringBox/SceneDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengju/iOSDemos/HEAD/SpringBox/SpringBox/SceneDelegate.h -------------------------------------------------------------------------------- /SpringBox/SpringBox/SceneDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengju/iOSDemos/HEAD/SpringBox/SpringBox/SceneDelegate.m -------------------------------------------------------------------------------- /SpringBox/SpringBox/SecondController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengju/iOSDemos/HEAD/SpringBox/SpringBox/SecondController.h -------------------------------------------------------------------------------- /SpringBox/SpringBox/SecondController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengju/iOSDemos/HEAD/SpringBox/SpringBox/SecondController.m -------------------------------------------------------------------------------- /SpringBox/SpringBox/SpringBoxManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengju/iOSDemos/HEAD/SpringBox/SpringBox/SpringBoxManager.h -------------------------------------------------------------------------------- /SpringBox/SpringBox/ViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengju/iOSDemos/HEAD/SpringBox/SpringBox/ViewController.h -------------------------------------------------------------------------------- /SpringBox/SpringBox/ViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengju/iOSDemos/HEAD/SpringBox/SpringBox/ViewController.m -------------------------------------------------------------------------------- /SpringBox/SpringBox/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengju/iOSDemos/HEAD/SpringBox/SpringBox/main.m -------------------------------------------------------------------------------- /WBCycleViewDemo/WBCycleViewDemo/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengju/iOSDemos/HEAD/WBCycleViewDemo/WBCycleViewDemo/AppDelegate.h -------------------------------------------------------------------------------- /WBCycleViewDemo/WBCycleViewDemo/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengju/iOSDemos/HEAD/WBCycleViewDemo/WBCycleViewDemo/AppDelegate.m -------------------------------------------------------------------------------- /WBCycleViewDemo/WBCycleViewDemo/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengju/iOSDemos/HEAD/WBCycleViewDemo/WBCycleViewDemo/Info.plist -------------------------------------------------------------------------------- /WBCycleViewDemo/WBCycleViewDemo/MyCellView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengju/iOSDemos/HEAD/WBCycleViewDemo/WBCycleViewDemo/MyCellView.h -------------------------------------------------------------------------------- /WBCycleViewDemo/WBCycleViewDemo/MyCellView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengju/iOSDemos/HEAD/WBCycleViewDemo/WBCycleViewDemo/MyCellView.m -------------------------------------------------------------------------------- /WBCycleViewDemo/WBCycleViewDemo/MyCycleView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengju/iOSDemos/HEAD/WBCycleViewDemo/WBCycleViewDemo/MyCycleView.h -------------------------------------------------------------------------------- /WBCycleViewDemo/WBCycleViewDemo/MyCycleView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengju/iOSDemos/HEAD/WBCycleViewDemo/WBCycleViewDemo/MyCycleView.m -------------------------------------------------------------------------------- /WBCycleViewDemo/WBCycleViewDemo/MyTimer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengju/iOSDemos/HEAD/WBCycleViewDemo/WBCycleViewDemo/MyTimer.h -------------------------------------------------------------------------------- /WBCycleViewDemo/WBCycleViewDemo/MyTimer.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengju/iOSDemos/HEAD/WBCycleViewDemo/WBCycleViewDemo/MyTimer.m -------------------------------------------------------------------------------- /WBCycleViewDemo/WBCycleViewDemo/SceneDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengju/iOSDemos/HEAD/WBCycleViewDemo/WBCycleViewDemo/SceneDelegate.h -------------------------------------------------------------------------------- /WBCycleViewDemo/WBCycleViewDemo/SceneDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengju/iOSDemos/HEAD/WBCycleViewDemo/WBCycleViewDemo/SceneDelegate.m -------------------------------------------------------------------------------- /WBCycleViewDemo/WBCycleViewDemo/ViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengju/iOSDemos/HEAD/WBCycleViewDemo/WBCycleViewDemo/ViewController.h -------------------------------------------------------------------------------- /WBCycleViewDemo/WBCycleViewDemo/ViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengju/iOSDemos/HEAD/WBCycleViewDemo/WBCycleViewDemo/ViewController.m -------------------------------------------------------------------------------- /WBCycleViewDemo/WBCycleViewDemo/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengju/iOSDemos/HEAD/WBCycleViewDemo/WBCycleViewDemo/main.m -------------------------------------------------------------------------------- /单例模式/单例模式.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengju/iOSDemos/HEAD/单例模式/单例模式.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /单例模式/单例模式/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengju/iOSDemos/HEAD/单例模式/单例模式/AppDelegate.h -------------------------------------------------------------------------------- /单例模式/单例模式/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengju/iOSDemos/HEAD/单例模式/单例模式/AppDelegate.m -------------------------------------------------------------------------------- /单例模式/单例模式/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengju/iOSDemos/HEAD/单例模式/单例模式/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /单例模式/单例模式/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengju/iOSDemos/HEAD/单例模式/单例模式/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /单例模式/单例模式/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengju/iOSDemos/HEAD/单例模式/单例模式/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /单例模式/单例模式/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengju/iOSDemos/HEAD/单例模式/单例模式/Info.plist -------------------------------------------------------------------------------- /单例模式/单例模式/SceneDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengju/iOSDemos/HEAD/单例模式/单例模式/SceneDelegate.h -------------------------------------------------------------------------------- /单例模式/单例模式/SceneDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengju/iOSDemos/HEAD/单例模式/单例模式/SceneDelegate.m -------------------------------------------------------------------------------- /单例模式/单例模式/Teacher.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengju/iOSDemos/HEAD/单例模式/单例模式/Teacher.h -------------------------------------------------------------------------------- /单例模式/单例模式/Teacher.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengju/iOSDemos/HEAD/单例模式/单例模式/Teacher.m -------------------------------------------------------------------------------- /单例模式/单例模式/ViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengju/iOSDemos/HEAD/单例模式/单例模式/ViewController.h -------------------------------------------------------------------------------- /单例模式/单例模式/ViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengju/iOSDemos/HEAD/单例模式/单例模式/ViewController.m -------------------------------------------------------------------------------- /单例模式/单例模式/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengju/iOSDemos/HEAD/单例模式/单例模式/main.m -------------------------------------------------------------------------------- /深浅拷贝/深浅拷贝.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengju/iOSDemos/HEAD/深浅拷贝/深浅拷贝.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /深浅拷贝/深浅拷贝/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengju/iOSDemos/HEAD/深浅拷贝/深浅拷贝/AppDelegate.h -------------------------------------------------------------------------------- /深浅拷贝/深浅拷贝/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengju/iOSDemos/HEAD/深浅拷贝/深浅拷贝/AppDelegate.m -------------------------------------------------------------------------------- /深浅拷贝/深浅拷贝/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengju/iOSDemos/HEAD/深浅拷贝/深浅拷贝/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /深浅拷贝/深浅拷贝/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengju/iOSDemos/HEAD/深浅拷贝/深浅拷贝/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /深浅拷贝/深浅拷贝/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengju/iOSDemos/HEAD/深浅拷贝/深浅拷贝/Info.plist -------------------------------------------------------------------------------- /深浅拷贝/深浅拷贝/MyObj.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengju/iOSDemos/HEAD/深浅拷贝/深浅拷贝/MyObj.h -------------------------------------------------------------------------------- /深浅拷贝/深浅拷贝/MyObj.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengju/iOSDemos/HEAD/深浅拷贝/深浅拷贝/MyObj.m -------------------------------------------------------------------------------- /深浅拷贝/深浅拷贝/ViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengju/iOSDemos/HEAD/深浅拷贝/深浅拷贝/ViewController.h -------------------------------------------------------------------------------- /深浅拷贝/深浅拷贝/ViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengju/iOSDemos/HEAD/深浅拷贝/深浅拷贝/ViewController.m -------------------------------------------------------------------------------- /深浅拷贝/深浅拷贝/ZJPerson.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengju/iOSDemos/HEAD/深浅拷贝/深浅拷贝/ZJPerson.h -------------------------------------------------------------------------------- /深浅拷贝/深浅拷贝/ZJPerson.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengju/iOSDemos/HEAD/深浅拷贝/深浅拷贝/ZJPerson.m -------------------------------------------------------------------------------- /深浅拷贝/深浅拷贝/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengju/iOSDemos/HEAD/深浅拷贝/深浅拷贝/main.m -------------------------------------------------------------------------------- /走马灯/走马灯.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengju/iOSDemos/HEAD/走马灯/走马灯.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /走马灯/走马灯/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengju/iOSDemos/HEAD/走马灯/走马灯/AppDelegate.h -------------------------------------------------------------------------------- /走马灯/走马灯/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengju/iOSDemos/HEAD/走马灯/走马灯/AppDelegate.m -------------------------------------------------------------------------------- /走马灯/走马灯/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengju/iOSDemos/HEAD/走马灯/走马灯/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /走马灯/走马灯/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengju/iOSDemos/HEAD/走马灯/走马灯/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /走马灯/走马灯/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengju/iOSDemos/HEAD/走马灯/走马灯/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /走马灯/走马灯/CircelView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengju/iOSDemos/HEAD/走马灯/走马灯/CircelView.h -------------------------------------------------------------------------------- /走马灯/走马灯/CircelView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengju/iOSDemos/HEAD/走马灯/走马灯/CircelView.m -------------------------------------------------------------------------------- /走马灯/走马灯/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengju/iOSDemos/HEAD/走马灯/走马灯/Info.plist -------------------------------------------------------------------------------- /走马灯/走马灯/SceneDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengju/iOSDemos/HEAD/走马灯/走马灯/SceneDelegate.h -------------------------------------------------------------------------------- /走马灯/走马灯/SceneDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengju/iOSDemos/HEAD/走马灯/走马灯/SceneDelegate.m -------------------------------------------------------------------------------- /走马灯/走马灯/ViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengju/iOSDemos/HEAD/走马灯/走马灯/ViewController.h -------------------------------------------------------------------------------- /走马灯/走马灯/ViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengju/iOSDemos/HEAD/走马灯/走马灯/ViewController.m -------------------------------------------------------------------------------- /走马灯/走马灯/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengju/iOSDemos/HEAD/走马灯/走马灯/main.m --------------------------------------------------------------------------------