├── Podfile.lock ├── Pods ├── CHTCollectionViewWaterfallLayout │ ├── CHTCollectionViewWaterfallLayout.h │ ├── CHTCollectionViewWaterfallLayout.m │ ├── LICENSE │ └── README.md ├── Headers │ ├── Private │ │ ├── CHTCollectionViewWaterfallLayout │ │ │ └── CHTCollectionViewWaterfallLayout.h │ │ ├── MJExtension │ │ │ ├── MJExtension.h │ │ │ ├── MJExtensionConst.h │ │ │ ├── MJFoundation.h │ │ │ ├── MJProperty.h │ │ │ ├── MJPropertyKey.h │ │ │ ├── MJPropertyType.h │ │ │ ├── NSObject+MJClass.h │ │ │ ├── NSObject+MJCoding.h │ │ │ ├── NSObject+MJKeyValue.h │ │ │ ├── NSObject+MJProperty.h │ │ │ └── NSString+MJExtension.h │ │ ├── Masonry │ │ │ ├── MASCompositeConstraint.h │ │ │ ├── MASConstraint+Private.h │ │ │ ├── MASConstraint.h │ │ │ ├── MASConstraintMaker.h │ │ │ ├── MASLayoutConstraint.h │ │ │ ├── MASUtilities.h │ │ │ ├── MASViewAttribute.h │ │ │ ├── MASViewConstraint.h │ │ │ ├── Masonry.h │ │ │ ├── NSArray+MASAdditions.h │ │ │ ├── NSArray+MASShorthandAdditions.h │ │ │ ├── NSLayoutConstraint+MASDebugAdditions.h │ │ │ ├── View+MASAdditions.h │ │ │ ├── View+MASShorthandAdditions.h │ │ │ └── ViewController+MASAdditions.h │ │ └── SDWebImage │ │ │ ├── NSData+ImageContentType.h │ │ │ ├── SDImageCache.h │ │ │ ├── SDWebImageCompat.h │ │ │ ├── SDWebImageDecoder.h │ │ │ ├── SDWebImageDownloader.h │ │ │ ├── SDWebImageDownloaderOperation.h │ │ │ ├── SDWebImageManager.h │ │ │ ├── SDWebImageOperation.h │ │ │ ├── SDWebImagePrefetcher.h │ │ │ ├── UIButton+WebCache.h │ │ │ ├── UIImage+GIF.h │ │ │ ├── UIImage+MultiFormat.h │ │ │ ├── UIImageView+HighlightedWebCache.h │ │ │ ├── UIImageView+WebCache.h │ │ │ └── UIView+WebCacheOperation.h │ └── Public │ │ ├── CHTCollectionViewWaterfallLayout │ │ └── CHTCollectionViewWaterfallLayout.h │ │ ├── MJExtension │ │ ├── MJExtension.h │ │ ├── MJExtensionConst.h │ │ ├── MJFoundation.h │ │ ├── MJProperty.h │ │ ├── MJPropertyKey.h │ │ ├── MJPropertyType.h │ │ ├── NSObject+MJClass.h │ │ ├── NSObject+MJCoding.h │ │ ├── NSObject+MJKeyValue.h │ │ ├── NSObject+MJProperty.h │ │ └── NSString+MJExtension.h │ │ ├── Masonry │ │ ├── MASCompositeConstraint.h │ │ ├── MASConstraint+Private.h │ │ ├── MASConstraint.h │ │ ├── MASConstraintMaker.h │ │ ├── MASLayoutConstraint.h │ │ ├── MASUtilities.h │ │ ├── MASViewAttribute.h │ │ ├── MASViewConstraint.h │ │ ├── Masonry.h │ │ ├── NSArray+MASAdditions.h │ │ ├── NSArray+MASShorthandAdditions.h │ │ ├── NSLayoutConstraint+MASDebugAdditions.h │ │ ├── View+MASAdditions.h │ │ ├── View+MASShorthandAdditions.h │ │ └── ViewController+MASAdditions.h │ │ └── SDWebImage │ │ ├── NSData+ImageContentType.h │ │ ├── SDImageCache.h │ │ ├── SDWebImageCompat.h │ │ ├── SDWebImageDecoder.h │ │ ├── SDWebImageDownloader.h │ │ ├── SDWebImageDownloaderOperation.h │ │ ├── SDWebImageManager.h │ │ ├── SDWebImageOperation.h │ │ ├── SDWebImagePrefetcher.h │ │ ├── UIButton+WebCache.h │ │ ├── UIImage+GIF.h │ │ ├── UIImage+MultiFormat.h │ │ ├── UIImageView+HighlightedWebCache.h │ │ ├── UIImageView+WebCache.h │ │ └── UIView+WebCacheOperation.h ├── MJExtension │ ├── LICENSE │ ├── MJExtension │ │ ├── MJExtension.h │ │ ├── MJExtensionConst.h │ │ ├── MJExtensionConst.m │ │ ├── MJFoundation.h │ │ ├── MJFoundation.m │ │ ├── MJProperty.h │ │ ├── MJProperty.m │ │ ├── MJPropertyKey.h │ │ ├── MJPropertyKey.m │ │ ├── MJPropertyType.h │ │ ├── MJPropertyType.m │ │ ├── NSObject+MJClass.h │ │ ├── NSObject+MJClass.m │ │ ├── NSObject+MJCoding.h │ │ ├── NSObject+MJCoding.m │ │ ├── NSObject+MJKeyValue.h │ │ ├── NSObject+MJKeyValue.m │ │ ├── NSObject+MJProperty.h │ │ ├── NSObject+MJProperty.m │ │ ├── NSString+MJExtension.h │ │ └── NSString+MJExtension.m │ └── README.md ├── Manifest.lock ├── Masonry │ ├── LICENSE │ ├── Masonry │ │ ├── MASCompositeConstraint.h │ │ ├── MASCompositeConstraint.m │ │ ├── MASConstraint+Private.h │ │ ├── MASConstraint.h │ │ ├── MASConstraint.m │ │ ├── MASConstraintMaker.h │ │ ├── MASConstraintMaker.m │ │ ├── MASLayoutConstraint.h │ │ ├── MASLayoutConstraint.m │ │ ├── MASUtilities.h │ │ ├── MASViewAttribute.h │ │ ├── MASViewAttribute.m │ │ ├── MASViewConstraint.h │ │ ├── MASViewConstraint.m │ │ ├── Masonry.h │ │ ├── NSArray+MASAdditions.h │ │ ├── NSArray+MASAdditions.m │ │ ├── NSArray+MASShorthandAdditions.h │ │ ├── NSLayoutConstraint+MASDebugAdditions.h │ │ ├── NSLayoutConstraint+MASDebugAdditions.m │ │ ├── View+MASAdditions.h │ │ ├── View+MASAdditions.m │ │ ├── View+MASShorthandAdditions.h │ │ ├── ViewController+MASAdditions.h │ │ └── ViewController+MASAdditions.m │ └── README.md ├── Pods.xcodeproj │ ├── project.pbxproj │ └── xcuserdata │ │ ├── MKJ.xcuserdatad │ │ └── xcschemes │ │ │ ├── CHTCollectionViewWaterfallLayout.xcscheme │ │ │ ├── MJExtension.xcscheme │ │ │ ├── Masonry.xcscheme │ │ │ ├── Pods-RedBookTransitionDemo.xcscheme │ │ │ ├── SDWebImage.xcscheme │ │ │ └── xcschememanagement.plist │ │ └── mkjing.xcuserdatad │ │ └── xcschemes │ │ ├── CHTCollectionViewWaterfallLayout.xcscheme │ │ ├── MJExtension.xcscheme │ │ ├── Masonry.xcscheme │ │ ├── Pods-RedBookTransitionDemo.xcscheme │ │ ├── SDWebImage.xcscheme │ │ └── xcschememanagement.plist ├── SDWebImage │ ├── LICENSE │ ├── README.md │ └── SDWebImage │ │ ├── NSData+ImageContentType.h │ │ ├── NSData+ImageContentType.m │ │ ├── SDImageCache.h │ │ ├── SDImageCache.m │ │ ├── SDWebImageCompat.h │ │ ├── SDWebImageCompat.m │ │ ├── SDWebImageDecoder.h │ │ ├── SDWebImageDecoder.m │ │ ├── SDWebImageDownloader.h │ │ ├── SDWebImageDownloader.m │ │ ├── SDWebImageDownloaderOperation.h │ │ ├── SDWebImageDownloaderOperation.m │ │ ├── SDWebImageManager.h │ │ ├── SDWebImageManager.m │ │ ├── SDWebImageOperation.h │ │ ├── SDWebImagePrefetcher.h │ │ ├── SDWebImagePrefetcher.m │ │ ├── UIButton+WebCache.h │ │ ├── UIButton+WebCache.m │ │ ├── UIImage+GIF.h │ │ ├── UIImage+GIF.m │ │ ├── UIImage+MultiFormat.h │ │ ├── UIImage+MultiFormat.m │ │ ├── UIImageView+HighlightedWebCache.h │ │ ├── UIImageView+HighlightedWebCache.m │ │ ├── UIImageView+WebCache.h │ │ ├── UIImageView+WebCache.m │ │ ├── UIView+WebCacheOperation.h │ │ └── UIView+WebCacheOperation.m └── Target Support Files │ ├── CHTCollectionViewWaterfallLayout │ ├── CHTCollectionViewWaterfallLayout-dummy.m │ ├── CHTCollectionViewWaterfallLayout-prefix.pch │ └── CHTCollectionViewWaterfallLayout.xcconfig │ ├── MJExtension │ ├── MJExtension-dummy.m │ ├── MJExtension-prefix.pch │ └── MJExtension.xcconfig │ ├── Masonry │ ├── Masonry-dummy.m │ ├── Masonry-prefix.pch │ └── Masonry.xcconfig │ ├── Pods-RedBookTransitionDemo │ ├── Pods-RedBookTransitionDemo-acknowledgements.markdown │ ├── Pods-RedBookTransitionDemo-acknowledgements.plist │ ├── Pods-RedBookTransitionDemo-dummy.m │ ├── Pods-RedBookTransitionDemo-frameworks.sh │ ├── Pods-RedBookTransitionDemo-resources.sh │ ├── Pods-RedBookTransitionDemo.debug.xcconfig │ └── Pods-RedBookTransitionDemo.release.xcconfig │ └── SDWebImage │ ├── SDWebImage-dummy.m │ ├── SDWebImage-prefix.pch │ └── SDWebImage.xcconfig ├── README.md ├── RedBookTransitionDemo.xcodeproj ├── project.pbxproj ├── project.xcworkspace │ └── contents.xcworkspacedata └── xcuserdata │ ├── MKJ.xcuserdatad │ └── xcschemes │ │ ├── RedBookTransitionDemo.xcscheme │ │ └── xcschememanagement.plist │ └── mkjing.xcuserdatad │ └── xcschemes │ ├── RedBookTransitionDemo.xcscheme │ └── xcschememanagement.plist ├── RedBookTransitionDemo.xcworkspace ├── contents.xcworkspacedata └── xcuserdata │ ├── MKJ.xcuserdatad │ ├── UserInterfaceState.xcuserstate │ └── xcdebugger │ │ └── Breakpoints_v2.xcbkptlist │ └── mkjing.xcuserdatad │ └── xcdebugger │ └── Breakpoints_v2.xcbkptlist ├── RedBookTransitionDemo ├── 1.plist ├── 7a3f6d5cf8a36259f8b1553317dece46587a6209b964-EM5XNL_fw658.jpeg ├── AppDelegate.h ├── AppDelegate.m ├── Assets.xcassets │ └── AppIcon.appiconset │ │ └── Contents.json ├── Base.lproj │ ├── LaunchScreen.storyboard │ └── Main.storyboard ├── FirstCollectionViewCell.h ├── FirstCollectionViewCell.m ├── FirstCollectionViewCell.xib ├── FourthViewController.h ├── FourthViewController.m ├── FourthViewController.xib ├── Info.plist ├── MKJAnimator.h ├── MKJAnimator.m ├── MKJExplosionView.h ├── MKJExplosionView.m ├── MKJNavigationViewController.h ├── MKJNavigationViewController.m ├── MKJParseHelper.h ├── MKJParseHelper.m ├── MKJPresentAnimator.h ├── MKJPresentAnimator.m ├── MKJSuperAnimation.h ├── MKJSuperAnimation.m ├── RedBookModel.h ├── RedBookModel.m ├── SecondCollectionViewCell.xib ├── SecondViewController.h ├── SecondViewController.m ├── SecondViewController.xib ├── ThirdViewController.h ├── ThirdViewController.m ├── ThirdViewController.xib ├── ViewController.h ├── ViewController.m ├── dot1@2x.png ├── dot1@3x.png ├── favorite_hl@2x.png ├── favorite_hl@3x.png └── main.m ├── RedBookTransitionDemoTests ├── Info.plist └── RedBookTransitionDemoTests.m ├── RedBookTransitionDemoUITests ├── Info.plist └── RedBookTransitionDemoUITests.m ├── YYText ├── Component │ ├── YYTextContainerView.h │ ├── YYTextContainerView.m │ ├── YYTextDebugOption.h │ ├── YYTextDebugOption.m │ ├── YYTextEffectWindow.h │ ├── YYTextEffectWindow.m │ ├── YYTextInput.h │ ├── YYTextInput.m │ ├── YYTextKeyboardManager.h │ ├── YYTextKeyboardManager.m │ ├── YYTextLayout.h │ ├── YYTextLayout.m │ ├── YYTextLine.h │ ├── YYTextLine.m │ ├── YYTextMagnifier.h │ ├── YYTextMagnifier.m │ ├── YYTextSelectionView.h │ └── YYTextSelectionView.m ├── String │ ├── YYTextArchiver.h │ ├── YYTextArchiver.m │ ├── YYTextAttribute.h │ ├── YYTextAttribute.m │ ├── YYTextParser.h │ ├── YYTextParser.m │ ├── YYTextRubyAnnotation.h │ ├── YYTextRubyAnnotation.m │ ├── YYTextRunDelegate.h │ └── YYTextRunDelegate.m ├── Utility │ ├── CALayer+YYAdd.h │ ├── CALayer+YYAdd.m │ ├── NSAttributedString+YYText.h │ ├── NSAttributedString+YYText.m │ ├── NSBundle+YYAdd.h │ ├── NSBundle+YYAdd.m │ ├── NSData+YYAdd.h │ ├── NSData+YYAdd.m │ ├── NSParagraphStyle+YYText.h │ ├── NSParagraphStyle+YYText.m │ ├── NSString+YYAdd.h │ ├── NSString+YYAdd.m │ ├── UIControl+YYAdd.h │ ├── UIControl+YYAdd.m │ ├── UIGestureRecognizer+YYAdd.h │ ├── UIGestureRecognizer+YYAdd.m │ ├── UIImage+YYWebImage.h │ ├── UIImage+YYWebImage.m │ ├── UIPasteboard+YYText.h │ ├── UIPasteboard+YYText.m │ ├── UIView+YYAdd.h │ ├── UIView+YYAdd.m │ ├── UIView+YYText.h │ ├── UIView+YYText.m │ ├── YYTextAsyncLayer.h │ ├── YYTextAsyncLayer.m │ ├── YYTextTransaction.h │ ├── YYTextTransaction.m │ ├── YYTextUtilities.h │ ├── YYTextUtilities.m │ ├── YYTextWeakProxy.h │ └── YYTextWeakProxy.m ├── YYFPSLabel.h ├── YYFPSLabel.m ├── YYGestureRecognizer.h ├── YYGestureRecognizer.m ├── YYLabel.h ├── YYLabel.m ├── YYText.h ├── YYTextView.h ├── YYTextView.m ├── YYWeakProxy.h └── YYWeakProxy.m ├── podfile ├── pop1.gif └── pop2.gif /Podfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeftMKJ/CustomPushTransitionDemo/HEAD/Podfile.lock -------------------------------------------------------------------------------- /Pods/CHTCollectionViewWaterfallLayout/CHTCollectionViewWaterfallLayout.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeftMKJ/CustomPushTransitionDemo/HEAD/Pods/CHTCollectionViewWaterfallLayout/CHTCollectionViewWaterfallLayout.h -------------------------------------------------------------------------------- /Pods/CHTCollectionViewWaterfallLayout/CHTCollectionViewWaterfallLayout.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeftMKJ/CustomPushTransitionDemo/HEAD/Pods/CHTCollectionViewWaterfallLayout/CHTCollectionViewWaterfallLayout.m -------------------------------------------------------------------------------- /Pods/CHTCollectionViewWaterfallLayout/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeftMKJ/CustomPushTransitionDemo/HEAD/Pods/CHTCollectionViewWaterfallLayout/LICENSE -------------------------------------------------------------------------------- /Pods/CHTCollectionViewWaterfallLayout/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeftMKJ/CustomPushTransitionDemo/HEAD/Pods/CHTCollectionViewWaterfallLayout/README.md -------------------------------------------------------------------------------- /Pods/Headers/Private/CHTCollectionViewWaterfallLayout/CHTCollectionViewWaterfallLayout.h: -------------------------------------------------------------------------------- 1 | ../../../CHTCollectionViewWaterfallLayout/CHTCollectionViewWaterfallLayout.h -------------------------------------------------------------------------------- /Pods/Headers/Private/MJExtension/MJExtension.h: -------------------------------------------------------------------------------- 1 | ../../../MJExtension/MJExtension/MJExtension.h -------------------------------------------------------------------------------- /Pods/Headers/Private/MJExtension/MJExtensionConst.h: -------------------------------------------------------------------------------- 1 | ../../../MJExtension/MJExtension/MJExtensionConst.h -------------------------------------------------------------------------------- /Pods/Headers/Private/MJExtension/MJFoundation.h: -------------------------------------------------------------------------------- 1 | ../../../MJExtension/MJExtension/MJFoundation.h -------------------------------------------------------------------------------- /Pods/Headers/Private/MJExtension/MJProperty.h: -------------------------------------------------------------------------------- 1 | ../../../MJExtension/MJExtension/MJProperty.h -------------------------------------------------------------------------------- /Pods/Headers/Private/MJExtension/MJPropertyKey.h: -------------------------------------------------------------------------------- 1 | ../../../MJExtension/MJExtension/MJPropertyKey.h -------------------------------------------------------------------------------- /Pods/Headers/Private/MJExtension/MJPropertyType.h: -------------------------------------------------------------------------------- 1 | ../../../MJExtension/MJExtension/MJPropertyType.h -------------------------------------------------------------------------------- /Pods/Headers/Private/MJExtension/NSObject+MJClass.h: -------------------------------------------------------------------------------- 1 | ../../../MJExtension/MJExtension/NSObject+MJClass.h -------------------------------------------------------------------------------- /Pods/Headers/Private/MJExtension/NSObject+MJCoding.h: -------------------------------------------------------------------------------- 1 | ../../../MJExtension/MJExtension/NSObject+MJCoding.h -------------------------------------------------------------------------------- /Pods/Headers/Private/MJExtension/NSObject+MJKeyValue.h: -------------------------------------------------------------------------------- 1 | ../../../MJExtension/MJExtension/NSObject+MJKeyValue.h -------------------------------------------------------------------------------- /Pods/Headers/Private/MJExtension/NSObject+MJProperty.h: -------------------------------------------------------------------------------- 1 | ../../../MJExtension/MJExtension/NSObject+MJProperty.h -------------------------------------------------------------------------------- /Pods/Headers/Private/MJExtension/NSString+MJExtension.h: -------------------------------------------------------------------------------- 1 | ../../../MJExtension/MJExtension/NSString+MJExtension.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Masonry/MASCompositeConstraint.h: -------------------------------------------------------------------------------- 1 | ../../../Masonry/Masonry/MASCompositeConstraint.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Masonry/MASConstraint+Private.h: -------------------------------------------------------------------------------- 1 | ../../../Masonry/Masonry/MASConstraint+Private.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Masonry/MASConstraint.h: -------------------------------------------------------------------------------- 1 | ../../../Masonry/Masonry/MASConstraint.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Masonry/MASConstraintMaker.h: -------------------------------------------------------------------------------- 1 | ../../../Masonry/Masonry/MASConstraintMaker.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Masonry/MASLayoutConstraint.h: -------------------------------------------------------------------------------- 1 | ../../../Masonry/Masonry/MASLayoutConstraint.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Masonry/MASUtilities.h: -------------------------------------------------------------------------------- 1 | ../../../Masonry/Masonry/MASUtilities.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Masonry/MASViewAttribute.h: -------------------------------------------------------------------------------- 1 | ../../../Masonry/Masonry/MASViewAttribute.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Masonry/MASViewConstraint.h: -------------------------------------------------------------------------------- 1 | ../../../Masonry/Masonry/MASViewConstraint.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Masonry/Masonry.h: -------------------------------------------------------------------------------- 1 | ../../../Masonry/Masonry/Masonry.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Masonry/NSArray+MASAdditions.h: -------------------------------------------------------------------------------- 1 | ../../../Masonry/Masonry/NSArray+MASAdditions.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Masonry/NSArray+MASShorthandAdditions.h: -------------------------------------------------------------------------------- 1 | ../../../Masonry/Masonry/NSArray+MASShorthandAdditions.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Masonry/NSLayoutConstraint+MASDebugAdditions.h: -------------------------------------------------------------------------------- 1 | ../../../Masonry/Masonry/NSLayoutConstraint+MASDebugAdditions.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Masonry/View+MASAdditions.h: -------------------------------------------------------------------------------- 1 | ../../../Masonry/Masonry/View+MASAdditions.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Masonry/View+MASShorthandAdditions.h: -------------------------------------------------------------------------------- 1 | ../../../Masonry/Masonry/View+MASShorthandAdditions.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Masonry/ViewController+MASAdditions.h: -------------------------------------------------------------------------------- 1 | ../../../Masonry/Masonry/ViewController+MASAdditions.h -------------------------------------------------------------------------------- /Pods/Headers/Private/SDWebImage/NSData+ImageContentType.h: -------------------------------------------------------------------------------- 1 | ../../../SDWebImage/SDWebImage/NSData+ImageContentType.h -------------------------------------------------------------------------------- /Pods/Headers/Private/SDWebImage/SDImageCache.h: -------------------------------------------------------------------------------- 1 | ../../../SDWebImage/SDWebImage/SDImageCache.h -------------------------------------------------------------------------------- /Pods/Headers/Private/SDWebImage/SDWebImageCompat.h: -------------------------------------------------------------------------------- 1 | ../../../SDWebImage/SDWebImage/SDWebImageCompat.h -------------------------------------------------------------------------------- /Pods/Headers/Private/SDWebImage/SDWebImageDecoder.h: -------------------------------------------------------------------------------- 1 | ../../../SDWebImage/SDWebImage/SDWebImageDecoder.h -------------------------------------------------------------------------------- /Pods/Headers/Private/SDWebImage/SDWebImageDownloader.h: -------------------------------------------------------------------------------- 1 | ../../../SDWebImage/SDWebImage/SDWebImageDownloader.h -------------------------------------------------------------------------------- /Pods/Headers/Private/SDWebImage/SDWebImageDownloaderOperation.h: -------------------------------------------------------------------------------- 1 | ../../../SDWebImage/SDWebImage/SDWebImageDownloaderOperation.h -------------------------------------------------------------------------------- /Pods/Headers/Private/SDWebImage/SDWebImageManager.h: -------------------------------------------------------------------------------- 1 | ../../../SDWebImage/SDWebImage/SDWebImageManager.h -------------------------------------------------------------------------------- /Pods/Headers/Private/SDWebImage/SDWebImageOperation.h: -------------------------------------------------------------------------------- 1 | ../../../SDWebImage/SDWebImage/SDWebImageOperation.h -------------------------------------------------------------------------------- /Pods/Headers/Private/SDWebImage/SDWebImagePrefetcher.h: -------------------------------------------------------------------------------- 1 | ../../../SDWebImage/SDWebImage/SDWebImagePrefetcher.h -------------------------------------------------------------------------------- /Pods/Headers/Private/SDWebImage/UIButton+WebCache.h: -------------------------------------------------------------------------------- 1 | ../../../SDWebImage/SDWebImage/UIButton+WebCache.h -------------------------------------------------------------------------------- /Pods/Headers/Private/SDWebImage/UIImage+GIF.h: -------------------------------------------------------------------------------- 1 | ../../../SDWebImage/SDWebImage/UIImage+GIF.h -------------------------------------------------------------------------------- /Pods/Headers/Private/SDWebImage/UIImage+MultiFormat.h: -------------------------------------------------------------------------------- 1 | ../../../SDWebImage/SDWebImage/UIImage+MultiFormat.h -------------------------------------------------------------------------------- /Pods/Headers/Private/SDWebImage/UIImageView+HighlightedWebCache.h: -------------------------------------------------------------------------------- 1 | ../../../SDWebImage/SDWebImage/UIImageView+HighlightedWebCache.h -------------------------------------------------------------------------------- /Pods/Headers/Private/SDWebImage/UIImageView+WebCache.h: -------------------------------------------------------------------------------- 1 | ../../../SDWebImage/SDWebImage/UIImageView+WebCache.h -------------------------------------------------------------------------------- /Pods/Headers/Private/SDWebImage/UIView+WebCacheOperation.h: -------------------------------------------------------------------------------- 1 | ../../../SDWebImage/SDWebImage/UIView+WebCacheOperation.h -------------------------------------------------------------------------------- /Pods/Headers/Public/CHTCollectionViewWaterfallLayout/CHTCollectionViewWaterfallLayout.h: -------------------------------------------------------------------------------- 1 | ../../../CHTCollectionViewWaterfallLayout/CHTCollectionViewWaterfallLayout.h -------------------------------------------------------------------------------- /Pods/Headers/Public/MJExtension/MJExtension.h: -------------------------------------------------------------------------------- 1 | ../../../MJExtension/MJExtension/MJExtension.h -------------------------------------------------------------------------------- /Pods/Headers/Public/MJExtension/MJExtensionConst.h: -------------------------------------------------------------------------------- 1 | ../../../MJExtension/MJExtension/MJExtensionConst.h -------------------------------------------------------------------------------- /Pods/Headers/Public/MJExtension/MJFoundation.h: -------------------------------------------------------------------------------- 1 | ../../../MJExtension/MJExtension/MJFoundation.h -------------------------------------------------------------------------------- /Pods/Headers/Public/MJExtension/MJProperty.h: -------------------------------------------------------------------------------- 1 | ../../../MJExtension/MJExtension/MJProperty.h -------------------------------------------------------------------------------- /Pods/Headers/Public/MJExtension/MJPropertyKey.h: -------------------------------------------------------------------------------- 1 | ../../../MJExtension/MJExtension/MJPropertyKey.h -------------------------------------------------------------------------------- /Pods/Headers/Public/MJExtension/MJPropertyType.h: -------------------------------------------------------------------------------- 1 | ../../../MJExtension/MJExtension/MJPropertyType.h -------------------------------------------------------------------------------- /Pods/Headers/Public/MJExtension/NSObject+MJClass.h: -------------------------------------------------------------------------------- 1 | ../../../MJExtension/MJExtension/NSObject+MJClass.h -------------------------------------------------------------------------------- /Pods/Headers/Public/MJExtension/NSObject+MJCoding.h: -------------------------------------------------------------------------------- 1 | ../../../MJExtension/MJExtension/NSObject+MJCoding.h -------------------------------------------------------------------------------- /Pods/Headers/Public/MJExtension/NSObject+MJKeyValue.h: -------------------------------------------------------------------------------- 1 | ../../../MJExtension/MJExtension/NSObject+MJKeyValue.h -------------------------------------------------------------------------------- /Pods/Headers/Public/MJExtension/NSObject+MJProperty.h: -------------------------------------------------------------------------------- 1 | ../../../MJExtension/MJExtension/NSObject+MJProperty.h -------------------------------------------------------------------------------- /Pods/Headers/Public/MJExtension/NSString+MJExtension.h: -------------------------------------------------------------------------------- 1 | ../../../MJExtension/MJExtension/NSString+MJExtension.h -------------------------------------------------------------------------------- /Pods/Headers/Public/Masonry/MASCompositeConstraint.h: -------------------------------------------------------------------------------- 1 | ../../../Masonry/Masonry/MASCompositeConstraint.h -------------------------------------------------------------------------------- /Pods/Headers/Public/Masonry/MASConstraint+Private.h: -------------------------------------------------------------------------------- 1 | ../../../Masonry/Masonry/MASConstraint+Private.h -------------------------------------------------------------------------------- /Pods/Headers/Public/Masonry/MASConstraint.h: -------------------------------------------------------------------------------- 1 | ../../../Masonry/Masonry/MASConstraint.h -------------------------------------------------------------------------------- /Pods/Headers/Public/Masonry/MASConstraintMaker.h: -------------------------------------------------------------------------------- 1 | ../../../Masonry/Masonry/MASConstraintMaker.h -------------------------------------------------------------------------------- /Pods/Headers/Public/Masonry/MASLayoutConstraint.h: -------------------------------------------------------------------------------- 1 | ../../../Masonry/Masonry/MASLayoutConstraint.h -------------------------------------------------------------------------------- /Pods/Headers/Public/Masonry/MASUtilities.h: -------------------------------------------------------------------------------- 1 | ../../../Masonry/Masonry/MASUtilities.h -------------------------------------------------------------------------------- /Pods/Headers/Public/Masonry/MASViewAttribute.h: -------------------------------------------------------------------------------- 1 | ../../../Masonry/Masonry/MASViewAttribute.h -------------------------------------------------------------------------------- /Pods/Headers/Public/Masonry/MASViewConstraint.h: -------------------------------------------------------------------------------- 1 | ../../../Masonry/Masonry/MASViewConstraint.h -------------------------------------------------------------------------------- /Pods/Headers/Public/Masonry/Masonry.h: -------------------------------------------------------------------------------- 1 | ../../../Masonry/Masonry/Masonry.h -------------------------------------------------------------------------------- /Pods/Headers/Public/Masonry/NSArray+MASAdditions.h: -------------------------------------------------------------------------------- 1 | ../../../Masonry/Masonry/NSArray+MASAdditions.h -------------------------------------------------------------------------------- /Pods/Headers/Public/Masonry/NSArray+MASShorthandAdditions.h: -------------------------------------------------------------------------------- 1 | ../../../Masonry/Masonry/NSArray+MASShorthandAdditions.h -------------------------------------------------------------------------------- /Pods/Headers/Public/Masonry/NSLayoutConstraint+MASDebugAdditions.h: -------------------------------------------------------------------------------- 1 | ../../../Masonry/Masonry/NSLayoutConstraint+MASDebugAdditions.h -------------------------------------------------------------------------------- /Pods/Headers/Public/Masonry/View+MASAdditions.h: -------------------------------------------------------------------------------- 1 | ../../../Masonry/Masonry/View+MASAdditions.h -------------------------------------------------------------------------------- /Pods/Headers/Public/Masonry/View+MASShorthandAdditions.h: -------------------------------------------------------------------------------- 1 | ../../../Masonry/Masonry/View+MASShorthandAdditions.h -------------------------------------------------------------------------------- /Pods/Headers/Public/Masonry/ViewController+MASAdditions.h: -------------------------------------------------------------------------------- 1 | ../../../Masonry/Masonry/ViewController+MASAdditions.h -------------------------------------------------------------------------------- /Pods/Headers/Public/SDWebImage/NSData+ImageContentType.h: -------------------------------------------------------------------------------- 1 | ../../../SDWebImage/SDWebImage/NSData+ImageContentType.h -------------------------------------------------------------------------------- /Pods/Headers/Public/SDWebImage/SDImageCache.h: -------------------------------------------------------------------------------- 1 | ../../../SDWebImage/SDWebImage/SDImageCache.h -------------------------------------------------------------------------------- /Pods/Headers/Public/SDWebImage/SDWebImageCompat.h: -------------------------------------------------------------------------------- 1 | ../../../SDWebImage/SDWebImage/SDWebImageCompat.h -------------------------------------------------------------------------------- /Pods/Headers/Public/SDWebImage/SDWebImageDecoder.h: -------------------------------------------------------------------------------- 1 | ../../../SDWebImage/SDWebImage/SDWebImageDecoder.h -------------------------------------------------------------------------------- /Pods/Headers/Public/SDWebImage/SDWebImageDownloader.h: -------------------------------------------------------------------------------- 1 | ../../../SDWebImage/SDWebImage/SDWebImageDownloader.h -------------------------------------------------------------------------------- /Pods/Headers/Public/SDWebImage/SDWebImageDownloaderOperation.h: -------------------------------------------------------------------------------- 1 | ../../../SDWebImage/SDWebImage/SDWebImageDownloaderOperation.h -------------------------------------------------------------------------------- /Pods/Headers/Public/SDWebImage/SDWebImageManager.h: -------------------------------------------------------------------------------- 1 | ../../../SDWebImage/SDWebImage/SDWebImageManager.h -------------------------------------------------------------------------------- /Pods/Headers/Public/SDWebImage/SDWebImageOperation.h: -------------------------------------------------------------------------------- 1 | ../../../SDWebImage/SDWebImage/SDWebImageOperation.h -------------------------------------------------------------------------------- /Pods/Headers/Public/SDWebImage/SDWebImagePrefetcher.h: -------------------------------------------------------------------------------- 1 | ../../../SDWebImage/SDWebImage/SDWebImagePrefetcher.h -------------------------------------------------------------------------------- /Pods/Headers/Public/SDWebImage/UIButton+WebCache.h: -------------------------------------------------------------------------------- 1 | ../../../SDWebImage/SDWebImage/UIButton+WebCache.h -------------------------------------------------------------------------------- /Pods/Headers/Public/SDWebImage/UIImage+GIF.h: -------------------------------------------------------------------------------- 1 | ../../../SDWebImage/SDWebImage/UIImage+GIF.h -------------------------------------------------------------------------------- /Pods/Headers/Public/SDWebImage/UIImage+MultiFormat.h: -------------------------------------------------------------------------------- 1 | ../../../SDWebImage/SDWebImage/UIImage+MultiFormat.h -------------------------------------------------------------------------------- /Pods/Headers/Public/SDWebImage/UIImageView+HighlightedWebCache.h: -------------------------------------------------------------------------------- 1 | ../../../SDWebImage/SDWebImage/UIImageView+HighlightedWebCache.h -------------------------------------------------------------------------------- /Pods/Headers/Public/SDWebImage/UIImageView+WebCache.h: -------------------------------------------------------------------------------- 1 | ../../../SDWebImage/SDWebImage/UIImageView+WebCache.h -------------------------------------------------------------------------------- /Pods/Headers/Public/SDWebImage/UIView+WebCacheOperation.h: -------------------------------------------------------------------------------- 1 | ../../../SDWebImage/SDWebImage/UIView+WebCacheOperation.h -------------------------------------------------------------------------------- /Pods/MJExtension/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeftMKJ/CustomPushTransitionDemo/HEAD/Pods/MJExtension/LICENSE -------------------------------------------------------------------------------- /Pods/MJExtension/MJExtension/MJExtension.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeftMKJ/CustomPushTransitionDemo/HEAD/Pods/MJExtension/MJExtension/MJExtension.h -------------------------------------------------------------------------------- /Pods/MJExtension/MJExtension/MJExtensionConst.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeftMKJ/CustomPushTransitionDemo/HEAD/Pods/MJExtension/MJExtension/MJExtensionConst.h -------------------------------------------------------------------------------- /Pods/MJExtension/MJExtension/MJExtensionConst.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeftMKJ/CustomPushTransitionDemo/HEAD/Pods/MJExtension/MJExtension/MJExtensionConst.m -------------------------------------------------------------------------------- /Pods/MJExtension/MJExtension/MJFoundation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeftMKJ/CustomPushTransitionDemo/HEAD/Pods/MJExtension/MJExtension/MJFoundation.h -------------------------------------------------------------------------------- /Pods/MJExtension/MJExtension/MJFoundation.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeftMKJ/CustomPushTransitionDemo/HEAD/Pods/MJExtension/MJExtension/MJFoundation.m -------------------------------------------------------------------------------- /Pods/MJExtension/MJExtension/MJProperty.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeftMKJ/CustomPushTransitionDemo/HEAD/Pods/MJExtension/MJExtension/MJProperty.h -------------------------------------------------------------------------------- /Pods/MJExtension/MJExtension/MJProperty.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeftMKJ/CustomPushTransitionDemo/HEAD/Pods/MJExtension/MJExtension/MJProperty.m -------------------------------------------------------------------------------- /Pods/MJExtension/MJExtension/MJPropertyKey.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeftMKJ/CustomPushTransitionDemo/HEAD/Pods/MJExtension/MJExtension/MJPropertyKey.h -------------------------------------------------------------------------------- /Pods/MJExtension/MJExtension/MJPropertyKey.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeftMKJ/CustomPushTransitionDemo/HEAD/Pods/MJExtension/MJExtension/MJPropertyKey.m -------------------------------------------------------------------------------- /Pods/MJExtension/MJExtension/MJPropertyType.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeftMKJ/CustomPushTransitionDemo/HEAD/Pods/MJExtension/MJExtension/MJPropertyType.h -------------------------------------------------------------------------------- /Pods/MJExtension/MJExtension/MJPropertyType.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeftMKJ/CustomPushTransitionDemo/HEAD/Pods/MJExtension/MJExtension/MJPropertyType.m -------------------------------------------------------------------------------- /Pods/MJExtension/MJExtension/NSObject+MJClass.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeftMKJ/CustomPushTransitionDemo/HEAD/Pods/MJExtension/MJExtension/NSObject+MJClass.h -------------------------------------------------------------------------------- /Pods/MJExtension/MJExtension/NSObject+MJClass.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeftMKJ/CustomPushTransitionDemo/HEAD/Pods/MJExtension/MJExtension/NSObject+MJClass.m -------------------------------------------------------------------------------- /Pods/MJExtension/MJExtension/NSObject+MJCoding.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeftMKJ/CustomPushTransitionDemo/HEAD/Pods/MJExtension/MJExtension/NSObject+MJCoding.h -------------------------------------------------------------------------------- /Pods/MJExtension/MJExtension/NSObject+MJCoding.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeftMKJ/CustomPushTransitionDemo/HEAD/Pods/MJExtension/MJExtension/NSObject+MJCoding.m -------------------------------------------------------------------------------- /Pods/MJExtension/MJExtension/NSObject+MJKeyValue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeftMKJ/CustomPushTransitionDemo/HEAD/Pods/MJExtension/MJExtension/NSObject+MJKeyValue.h -------------------------------------------------------------------------------- /Pods/MJExtension/MJExtension/NSObject+MJKeyValue.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeftMKJ/CustomPushTransitionDemo/HEAD/Pods/MJExtension/MJExtension/NSObject+MJKeyValue.m -------------------------------------------------------------------------------- /Pods/MJExtension/MJExtension/NSObject+MJProperty.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeftMKJ/CustomPushTransitionDemo/HEAD/Pods/MJExtension/MJExtension/NSObject+MJProperty.h -------------------------------------------------------------------------------- /Pods/MJExtension/MJExtension/NSObject+MJProperty.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeftMKJ/CustomPushTransitionDemo/HEAD/Pods/MJExtension/MJExtension/NSObject+MJProperty.m -------------------------------------------------------------------------------- /Pods/MJExtension/MJExtension/NSString+MJExtension.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeftMKJ/CustomPushTransitionDemo/HEAD/Pods/MJExtension/MJExtension/NSString+MJExtension.h -------------------------------------------------------------------------------- /Pods/MJExtension/MJExtension/NSString+MJExtension.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeftMKJ/CustomPushTransitionDemo/HEAD/Pods/MJExtension/MJExtension/NSString+MJExtension.m -------------------------------------------------------------------------------- /Pods/MJExtension/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeftMKJ/CustomPushTransitionDemo/HEAD/Pods/MJExtension/README.md -------------------------------------------------------------------------------- /Pods/Manifest.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeftMKJ/CustomPushTransitionDemo/HEAD/Pods/Manifest.lock -------------------------------------------------------------------------------- /Pods/Masonry/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeftMKJ/CustomPushTransitionDemo/HEAD/Pods/Masonry/LICENSE -------------------------------------------------------------------------------- /Pods/Masonry/Masonry/MASCompositeConstraint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeftMKJ/CustomPushTransitionDemo/HEAD/Pods/Masonry/Masonry/MASCompositeConstraint.h -------------------------------------------------------------------------------- /Pods/Masonry/Masonry/MASCompositeConstraint.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeftMKJ/CustomPushTransitionDemo/HEAD/Pods/Masonry/Masonry/MASCompositeConstraint.m -------------------------------------------------------------------------------- /Pods/Masonry/Masonry/MASConstraint+Private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeftMKJ/CustomPushTransitionDemo/HEAD/Pods/Masonry/Masonry/MASConstraint+Private.h -------------------------------------------------------------------------------- /Pods/Masonry/Masonry/MASConstraint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeftMKJ/CustomPushTransitionDemo/HEAD/Pods/Masonry/Masonry/MASConstraint.h -------------------------------------------------------------------------------- /Pods/Masonry/Masonry/MASConstraint.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeftMKJ/CustomPushTransitionDemo/HEAD/Pods/Masonry/Masonry/MASConstraint.m -------------------------------------------------------------------------------- /Pods/Masonry/Masonry/MASConstraintMaker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeftMKJ/CustomPushTransitionDemo/HEAD/Pods/Masonry/Masonry/MASConstraintMaker.h -------------------------------------------------------------------------------- /Pods/Masonry/Masonry/MASConstraintMaker.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeftMKJ/CustomPushTransitionDemo/HEAD/Pods/Masonry/Masonry/MASConstraintMaker.m -------------------------------------------------------------------------------- /Pods/Masonry/Masonry/MASLayoutConstraint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeftMKJ/CustomPushTransitionDemo/HEAD/Pods/Masonry/Masonry/MASLayoutConstraint.h -------------------------------------------------------------------------------- /Pods/Masonry/Masonry/MASLayoutConstraint.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeftMKJ/CustomPushTransitionDemo/HEAD/Pods/Masonry/Masonry/MASLayoutConstraint.m -------------------------------------------------------------------------------- /Pods/Masonry/Masonry/MASUtilities.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeftMKJ/CustomPushTransitionDemo/HEAD/Pods/Masonry/Masonry/MASUtilities.h -------------------------------------------------------------------------------- /Pods/Masonry/Masonry/MASViewAttribute.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeftMKJ/CustomPushTransitionDemo/HEAD/Pods/Masonry/Masonry/MASViewAttribute.h -------------------------------------------------------------------------------- /Pods/Masonry/Masonry/MASViewAttribute.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeftMKJ/CustomPushTransitionDemo/HEAD/Pods/Masonry/Masonry/MASViewAttribute.m -------------------------------------------------------------------------------- /Pods/Masonry/Masonry/MASViewConstraint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeftMKJ/CustomPushTransitionDemo/HEAD/Pods/Masonry/Masonry/MASViewConstraint.h -------------------------------------------------------------------------------- /Pods/Masonry/Masonry/MASViewConstraint.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeftMKJ/CustomPushTransitionDemo/HEAD/Pods/Masonry/Masonry/MASViewConstraint.m -------------------------------------------------------------------------------- /Pods/Masonry/Masonry/Masonry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeftMKJ/CustomPushTransitionDemo/HEAD/Pods/Masonry/Masonry/Masonry.h -------------------------------------------------------------------------------- /Pods/Masonry/Masonry/NSArray+MASAdditions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeftMKJ/CustomPushTransitionDemo/HEAD/Pods/Masonry/Masonry/NSArray+MASAdditions.h -------------------------------------------------------------------------------- /Pods/Masonry/Masonry/NSArray+MASAdditions.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeftMKJ/CustomPushTransitionDemo/HEAD/Pods/Masonry/Masonry/NSArray+MASAdditions.m -------------------------------------------------------------------------------- /Pods/Masonry/Masonry/NSArray+MASShorthandAdditions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeftMKJ/CustomPushTransitionDemo/HEAD/Pods/Masonry/Masonry/NSArray+MASShorthandAdditions.h -------------------------------------------------------------------------------- /Pods/Masonry/Masonry/NSLayoutConstraint+MASDebugAdditions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeftMKJ/CustomPushTransitionDemo/HEAD/Pods/Masonry/Masonry/NSLayoutConstraint+MASDebugAdditions.h -------------------------------------------------------------------------------- /Pods/Masonry/Masonry/NSLayoutConstraint+MASDebugAdditions.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeftMKJ/CustomPushTransitionDemo/HEAD/Pods/Masonry/Masonry/NSLayoutConstraint+MASDebugAdditions.m -------------------------------------------------------------------------------- /Pods/Masonry/Masonry/View+MASAdditions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeftMKJ/CustomPushTransitionDemo/HEAD/Pods/Masonry/Masonry/View+MASAdditions.h -------------------------------------------------------------------------------- /Pods/Masonry/Masonry/View+MASAdditions.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeftMKJ/CustomPushTransitionDemo/HEAD/Pods/Masonry/Masonry/View+MASAdditions.m -------------------------------------------------------------------------------- /Pods/Masonry/Masonry/View+MASShorthandAdditions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeftMKJ/CustomPushTransitionDemo/HEAD/Pods/Masonry/Masonry/View+MASShorthandAdditions.h -------------------------------------------------------------------------------- /Pods/Masonry/Masonry/ViewController+MASAdditions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeftMKJ/CustomPushTransitionDemo/HEAD/Pods/Masonry/Masonry/ViewController+MASAdditions.h -------------------------------------------------------------------------------- /Pods/Masonry/Masonry/ViewController+MASAdditions.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeftMKJ/CustomPushTransitionDemo/HEAD/Pods/Masonry/Masonry/ViewController+MASAdditions.m -------------------------------------------------------------------------------- /Pods/Masonry/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeftMKJ/CustomPushTransitionDemo/HEAD/Pods/Masonry/README.md -------------------------------------------------------------------------------- /Pods/Pods.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeftMKJ/CustomPushTransitionDemo/HEAD/Pods/Pods.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Pods/Pods.xcodeproj/xcuserdata/MKJ.xcuserdatad/xcschemes/CHTCollectionViewWaterfallLayout.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeftMKJ/CustomPushTransitionDemo/HEAD/Pods/Pods.xcodeproj/xcuserdata/MKJ.xcuserdatad/xcschemes/CHTCollectionViewWaterfallLayout.xcscheme -------------------------------------------------------------------------------- /Pods/Pods.xcodeproj/xcuserdata/MKJ.xcuserdatad/xcschemes/MJExtension.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeftMKJ/CustomPushTransitionDemo/HEAD/Pods/Pods.xcodeproj/xcuserdata/MKJ.xcuserdatad/xcschemes/MJExtension.xcscheme -------------------------------------------------------------------------------- /Pods/Pods.xcodeproj/xcuserdata/MKJ.xcuserdatad/xcschemes/Masonry.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeftMKJ/CustomPushTransitionDemo/HEAD/Pods/Pods.xcodeproj/xcuserdata/MKJ.xcuserdatad/xcschemes/Masonry.xcscheme -------------------------------------------------------------------------------- /Pods/Pods.xcodeproj/xcuserdata/MKJ.xcuserdatad/xcschemes/Pods-RedBookTransitionDemo.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeftMKJ/CustomPushTransitionDemo/HEAD/Pods/Pods.xcodeproj/xcuserdata/MKJ.xcuserdatad/xcschemes/Pods-RedBookTransitionDemo.xcscheme -------------------------------------------------------------------------------- /Pods/Pods.xcodeproj/xcuserdata/MKJ.xcuserdatad/xcschemes/SDWebImage.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeftMKJ/CustomPushTransitionDemo/HEAD/Pods/Pods.xcodeproj/xcuserdata/MKJ.xcuserdatad/xcschemes/SDWebImage.xcscheme -------------------------------------------------------------------------------- /Pods/Pods.xcodeproj/xcuserdata/MKJ.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeftMKJ/CustomPushTransitionDemo/HEAD/Pods/Pods.xcodeproj/xcuserdata/MKJ.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /Pods/Pods.xcodeproj/xcuserdata/mkjing.xcuserdatad/xcschemes/CHTCollectionViewWaterfallLayout.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeftMKJ/CustomPushTransitionDemo/HEAD/Pods/Pods.xcodeproj/xcuserdata/mkjing.xcuserdatad/xcschemes/CHTCollectionViewWaterfallLayout.xcscheme -------------------------------------------------------------------------------- /Pods/Pods.xcodeproj/xcuserdata/mkjing.xcuserdatad/xcschemes/MJExtension.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeftMKJ/CustomPushTransitionDemo/HEAD/Pods/Pods.xcodeproj/xcuserdata/mkjing.xcuserdatad/xcschemes/MJExtension.xcscheme -------------------------------------------------------------------------------- /Pods/Pods.xcodeproj/xcuserdata/mkjing.xcuserdatad/xcschemes/Masonry.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeftMKJ/CustomPushTransitionDemo/HEAD/Pods/Pods.xcodeproj/xcuserdata/mkjing.xcuserdatad/xcschemes/Masonry.xcscheme -------------------------------------------------------------------------------- /Pods/Pods.xcodeproj/xcuserdata/mkjing.xcuserdatad/xcschemes/Pods-RedBookTransitionDemo.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeftMKJ/CustomPushTransitionDemo/HEAD/Pods/Pods.xcodeproj/xcuserdata/mkjing.xcuserdatad/xcschemes/Pods-RedBookTransitionDemo.xcscheme -------------------------------------------------------------------------------- /Pods/Pods.xcodeproj/xcuserdata/mkjing.xcuserdatad/xcschemes/SDWebImage.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeftMKJ/CustomPushTransitionDemo/HEAD/Pods/Pods.xcodeproj/xcuserdata/mkjing.xcuserdatad/xcschemes/SDWebImage.xcscheme -------------------------------------------------------------------------------- /Pods/Pods.xcodeproj/xcuserdata/mkjing.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeftMKJ/CustomPushTransitionDemo/HEAD/Pods/Pods.xcodeproj/xcuserdata/mkjing.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /Pods/SDWebImage/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeftMKJ/CustomPushTransitionDemo/HEAD/Pods/SDWebImage/LICENSE -------------------------------------------------------------------------------- /Pods/SDWebImage/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeftMKJ/CustomPushTransitionDemo/HEAD/Pods/SDWebImage/README.md -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/NSData+ImageContentType.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeftMKJ/CustomPushTransitionDemo/HEAD/Pods/SDWebImage/SDWebImage/NSData+ImageContentType.h -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/NSData+ImageContentType.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeftMKJ/CustomPushTransitionDemo/HEAD/Pods/SDWebImage/SDWebImage/NSData+ImageContentType.m -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/SDImageCache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeftMKJ/CustomPushTransitionDemo/HEAD/Pods/SDWebImage/SDWebImage/SDImageCache.h -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/SDImageCache.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeftMKJ/CustomPushTransitionDemo/HEAD/Pods/SDWebImage/SDWebImage/SDImageCache.m -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/SDWebImageCompat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeftMKJ/CustomPushTransitionDemo/HEAD/Pods/SDWebImage/SDWebImage/SDWebImageCompat.h -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/SDWebImageCompat.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeftMKJ/CustomPushTransitionDemo/HEAD/Pods/SDWebImage/SDWebImage/SDWebImageCompat.m -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/SDWebImageDecoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeftMKJ/CustomPushTransitionDemo/HEAD/Pods/SDWebImage/SDWebImage/SDWebImageDecoder.h -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/SDWebImageDecoder.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeftMKJ/CustomPushTransitionDemo/HEAD/Pods/SDWebImage/SDWebImage/SDWebImageDecoder.m -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/SDWebImageDownloader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeftMKJ/CustomPushTransitionDemo/HEAD/Pods/SDWebImage/SDWebImage/SDWebImageDownloader.h -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/SDWebImageDownloader.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeftMKJ/CustomPushTransitionDemo/HEAD/Pods/SDWebImage/SDWebImage/SDWebImageDownloader.m -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/SDWebImageDownloaderOperation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeftMKJ/CustomPushTransitionDemo/HEAD/Pods/SDWebImage/SDWebImage/SDWebImageDownloaderOperation.h -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/SDWebImageDownloaderOperation.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeftMKJ/CustomPushTransitionDemo/HEAD/Pods/SDWebImage/SDWebImage/SDWebImageDownloaderOperation.m -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/SDWebImageManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeftMKJ/CustomPushTransitionDemo/HEAD/Pods/SDWebImage/SDWebImage/SDWebImageManager.h -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/SDWebImageManager.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeftMKJ/CustomPushTransitionDemo/HEAD/Pods/SDWebImage/SDWebImage/SDWebImageManager.m -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/SDWebImageOperation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeftMKJ/CustomPushTransitionDemo/HEAD/Pods/SDWebImage/SDWebImage/SDWebImageOperation.h -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/SDWebImagePrefetcher.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeftMKJ/CustomPushTransitionDemo/HEAD/Pods/SDWebImage/SDWebImage/SDWebImagePrefetcher.h -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/SDWebImagePrefetcher.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeftMKJ/CustomPushTransitionDemo/HEAD/Pods/SDWebImage/SDWebImage/SDWebImagePrefetcher.m -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/UIButton+WebCache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeftMKJ/CustomPushTransitionDemo/HEAD/Pods/SDWebImage/SDWebImage/UIButton+WebCache.h -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/UIButton+WebCache.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeftMKJ/CustomPushTransitionDemo/HEAD/Pods/SDWebImage/SDWebImage/UIButton+WebCache.m -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/UIImage+GIF.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeftMKJ/CustomPushTransitionDemo/HEAD/Pods/SDWebImage/SDWebImage/UIImage+GIF.h -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/UIImage+GIF.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeftMKJ/CustomPushTransitionDemo/HEAD/Pods/SDWebImage/SDWebImage/UIImage+GIF.m -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/UIImage+MultiFormat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeftMKJ/CustomPushTransitionDemo/HEAD/Pods/SDWebImage/SDWebImage/UIImage+MultiFormat.h -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/UIImage+MultiFormat.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeftMKJ/CustomPushTransitionDemo/HEAD/Pods/SDWebImage/SDWebImage/UIImage+MultiFormat.m -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/UIImageView+HighlightedWebCache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeftMKJ/CustomPushTransitionDemo/HEAD/Pods/SDWebImage/SDWebImage/UIImageView+HighlightedWebCache.h -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/UIImageView+HighlightedWebCache.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeftMKJ/CustomPushTransitionDemo/HEAD/Pods/SDWebImage/SDWebImage/UIImageView+HighlightedWebCache.m -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/UIImageView+WebCache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeftMKJ/CustomPushTransitionDemo/HEAD/Pods/SDWebImage/SDWebImage/UIImageView+WebCache.h -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/UIImageView+WebCache.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeftMKJ/CustomPushTransitionDemo/HEAD/Pods/SDWebImage/SDWebImage/UIImageView+WebCache.m -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/UIView+WebCacheOperation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeftMKJ/CustomPushTransitionDemo/HEAD/Pods/SDWebImage/SDWebImage/UIView+WebCacheOperation.h -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/UIView+WebCacheOperation.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeftMKJ/CustomPushTransitionDemo/HEAD/Pods/SDWebImage/SDWebImage/UIView+WebCacheOperation.m -------------------------------------------------------------------------------- /Pods/Target Support Files/CHTCollectionViewWaterfallLayout/CHTCollectionViewWaterfallLayout-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeftMKJ/CustomPushTransitionDemo/HEAD/Pods/Target Support Files/CHTCollectionViewWaterfallLayout/CHTCollectionViewWaterfallLayout-dummy.m -------------------------------------------------------------------------------- /Pods/Target Support Files/CHTCollectionViewWaterfallLayout/CHTCollectionViewWaterfallLayout-prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeftMKJ/CustomPushTransitionDemo/HEAD/Pods/Target Support Files/CHTCollectionViewWaterfallLayout/CHTCollectionViewWaterfallLayout-prefix.pch -------------------------------------------------------------------------------- /Pods/Target Support Files/CHTCollectionViewWaterfallLayout/CHTCollectionViewWaterfallLayout.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeftMKJ/CustomPushTransitionDemo/HEAD/Pods/Target Support Files/CHTCollectionViewWaterfallLayout/CHTCollectionViewWaterfallLayout.xcconfig -------------------------------------------------------------------------------- /Pods/Target Support Files/MJExtension/MJExtension-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeftMKJ/CustomPushTransitionDemo/HEAD/Pods/Target Support Files/MJExtension/MJExtension-dummy.m -------------------------------------------------------------------------------- /Pods/Target Support Files/MJExtension/MJExtension-prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeftMKJ/CustomPushTransitionDemo/HEAD/Pods/Target Support Files/MJExtension/MJExtension-prefix.pch -------------------------------------------------------------------------------- /Pods/Target Support Files/MJExtension/MJExtension.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeftMKJ/CustomPushTransitionDemo/HEAD/Pods/Target Support Files/MJExtension/MJExtension.xcconfig -------------------------------------------------------------------------------- /Pods/Target Support Files/Masonry/Masonry-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeftMKJ/CustomPushTransitionDemo/HEAD/Pods/Target Support Files/Masonry/Masonry-dummy.m -------------------------------------------------------------------------------- /Pods/Target Support Files/Masonry/Masonry-prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeftMKJ/CustomPushTransitionDemo/HEAD/Pods/Target Support Files/Masonry/Masonry-prefix.pch -------------------------------------------------------------------------------- /Pods/Target Support Files/Masonry/Masonry.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeftMKJ/CustomPushTransitionDemo/HEAD/Pods/Target Support Files/Masonry/Masonry.xcconfig -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-RedBookTransitionDemo/Pods-RedBookTransitionDemo-acknowledgements.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeftMKJ/CustomPushTransitionDemo/HEAD/Pods/Target Support Files/Pods-RedBookTransitionDemo/Pods-RedBookTransitionDemo-acknowledgements.markdown -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-RedBookTransitionDemo/Pods-RedBookTransitionDemo-acknowledgements.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeftMKJ/CustomPushTransitionDemo/HEAD/Pods/Target Support Files/Pods-RedBookTransitionDemo/Pods-RedBookTransitionDemo-acknowledgements.plist -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-RedBookTransitionDemo/Pods-RedBookTransitionDemo-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeftMKJ/CustomPushTransitionDemo/HEAD/Pods/Target Support Files/Pods-RedBookTransitionDemo/Pods-RedBookTransitionDemo-dummy.m -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-RedBookTransitionDemo/Pods-RedBookTransitionDemo-frameworks.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeftMKJ/CustomPushTransitionDemo/HEAD/Pods/Target Support Files/Pods-RedBookTransitionDemo/Pods-RedBookTransitionDemo-frameworks.sh -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-RedBookTransitionDemo/Pods-RedBookTransitionDemo-resources.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeftMKJ/CustomPushTransitionDemo/HEAD/Pods/Target Support Files/Pods-RedBookTransitionDemo/Pods-RedBookTransitionDemo-resources.sh -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-RedBookTransitionDemo/Pods-RedBookTransitionDemo.debug.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeftMKJ/CustomPushTransitionDemo/HEAD/Pods/Target Support Files/Pods-RedBookTransitionDemo/Pods-RedBookTransitionDemo.debug.xcconfig -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-RedBookTransitionDemo/Pods-RedBookTransitionDemo.release.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeftMKJ/CustomPushTransitionDemo/HEAD/Pods/Target Support Files/Pods-RedBookTransitionDemo/Pods-RedBookTransitionDemo.release.xcconfig -------------------------------------------------------------------------------- /Pods/Target Support Files/SDWebImage/SDWebImage-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeftMKJ/CustomPushTransitionDemo/HEAD/Pods/Target Support Files/SDWebImage/SDWebImage-dummy.m -------------------------------------------------------------------------------- /Pods/Target Support Files/SDWebImage/SDWebImage-prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeftMKJ/CustomPushTransitionDemo/HEAD/Pods/Target Support Files/SDWebImage/SDWebImage-prefix.pch -------------------------------------------------------------------------------- /Pods/Target Support Files/SDWebImage/SDWebImage.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeftMKJ/CustomPushTransitionDemo/HEAD/Pods/Target Support Files/SDWebImage/SDWebImage.xcconfig -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeftMKJ/CustomPushTransitionDemo/HEAD/README.md -------------------------------------------------------------------------------- /RedBookTransitionDemo.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeftMKJ/CustomPushTransitionDemo/HEAD/RedBookTransitionDemo.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /RedBookTransitionDemo.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeftMKJ/CustomPushTransitionDemo/HEAD/RedBookTransitionDemo.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /RedBookTransitionDemo.xcodeproj/xcuserdata/MKJ.xcuserdatad/xcschemes/RedBookTransitionDemo.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeftMKJ/CustomPushTransitionDemo/HEAD/RedBookTransitionDemo.xcodeproj/xcuserdata/MKJ.xcuserdatad/xcschemes/RedBookTransitionDemo.xcscheme -------------------------------------------------------------------------------- /RedBookTransitionDemo.xcodeproj/xcuserdata/MKJ.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeftMKJ/CustomPushTransitionDemo/HEAD/RedBookTransitionDemo.xcodeproj/xcuserdata/MKJ.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /RedBookTransitionDemo.xcodeproj/xcuserdata/mkjing.xcuserdatad/xcschemes/RedBookTransitionDemo.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeftMKJ/CustomPushTransitionDemo/HEAD/RedBookTransitionDemo.xcodeproj/xcuserdata/mkjing.xcuserdatad/xcschemes/RedBookTransitionDemo.xcscheme -------------------------------------------------------------------------------- /RedBookTransitionDemo.xcodeproj/xcuserdata/mkjing.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeftMKJ/CustomPushTransitionDemo/HEAD/RedBookTransitionDemo.xcodeproj/xcuserdata/mkjing.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /RedBookTransitionDemo.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeftMKJ/CustomPushTransitionDemo/HEAD/RedBookTransitionDemo.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /RedBookTransitionDemo.xcworkspace/xcuserdata/MKJ.xcuserdatad/UserInterfaceState.xcuserstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeftMKJ/CustomPushTransitionDemo/HEAD/RedBookTransitionDemo.xcworkspace/xcuserdata/MKJ.xcuserdatad/UserInterfaceState.xcuserstate -------------------------------------------------------------------------------- /RedBookTransitionDemo.xcworkspace/xcuserdata/MKJ.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeftMKJ/CustomPushTransitionDemo/HEAD/RedBookTransitionDemo.xcworkspace/xcuserdata/MKJ.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist -------------------------------------------------------------------------------- /RedBookTransitionDemo.xcworkspace/xcuserdata/mkjing.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeftMKJ/CustomPushTransitionDemo/HEAD/RedBookTransitionDemo.xcworkspace/xcuserdata/mkjing.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist -------------------------------------------------------------------------------- /RedBookTransitionDemo/1.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeftMKJ/CustomPushTransitionDemo/HEAD/RedBookTransitionDemo/1.plist -------------------------------------------------------------------------------- /RedBookTransitionDemo/7a3f6d5cf8a36259f8b1553317dece46587a6209b964-EM5XNL_fw658.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeftMKJ/CustomPushTransitionDemo/HEAD/RedBookTransitionDemo/7a3f6d5cf8a36259f8b1553317dece46587a6209b964-EM5XNL_fw658.jpeg -------------------------------------------------------------------------------- /RedBookTransitionDemo/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeftMKJ/CustomPushTransitionDemo/HEAD/RedBookTransitionDemo/AppDelegate.h -------------------------------------------------------------------------------- /RedBookTransitionDemo/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeftMKJ/CustomPushTransitionDemo/HEAD/RedBookTransitionDemo/AppDelegate.m -------------------------------------------------------------------------------- /RedBookTransitionDemo/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeftMKJ/CustomPushTransitionDemo/HEAD/RedBookTransitionDemo/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /RedBookTransitionDemo/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeftMKJ/CustomPushTransitionDemo/HEAD/RedBookTransitionDemo/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /RedBookTransitionDemo/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeftMKJ/CustomPushTransitionDemo/HEAD/RedBookTransitionDemo/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /RedBookTransitionDemo/FirstCollectionViewCell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeftMKJ/CustomPushTransitionDemo/HEAD/RedBookTransitionDemo/FirstCollectionViewCell.h -------------------------------------------------------------------------------- /RedBookTransitionDemo/FirstCollectionViewCell.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeftMKJ/CustomPushTransitionDemo/HEAD/RedBookTransitionDemo/FirstCollectionViewCell.m -------------------------------------------------------------------------------- /RedBookTransitionDemo/FirstCollectionViewCell.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeftMKJ/CustomPushTransitionDemo/HEAD/RedBookTransitionDemo/FirstCollectionViewCell.xib -------------------------------------------------------------------------------- /RedBookTransitionDemo/FourthViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeftMKJ/CustomPushTransitionDemo/HEAD/RedBookTransitionDemo/FourthViewController.h -------------------------------------------------------------------------------- /RedBookTransitionDemo/FourthViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeftMKJ/CustomPushTransitionDemo/HEAD/RedBookTransitionDemo/FourthViewController.m -------------------------------------------------------------------------------- /RedBookTransitionDemo/FourthViewController.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeftMKJ/CustomPushTransitionDemo/HEAD/RedBookTransitionDemo/FourthViewController.xib -------------------------------------------------------------------------------- /RedBookTransitionDemo/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeftMKJ/CustomPushTransitionDemo/HEAD/RedBookTransitionDemo/Info.plist -------------------------------------------------------------------------------- /RedBookTransitionDemo/MKJAnimator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeftMKJ/CustomPushTransitionDemo/HEAD/RedBookTransitionDemo/MKJAnimator.h -------------------------------------------------------------------------------- /RedBookTransitionDemo/MKJAnimator.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeftMKJ/CustomPushTransitionDemo/HEAD/RedBookTransitionDemo/MKJAnimator.m -------------------------------------------------------------------------------- /RedBookTransitionDemo/MKJExplosionView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeftMKJ/CustomPushTransitionDemo/HEAD/RedBookTransitionDemo/MKJExplosionView.h -------------------------------------------------------------------------------- /RedBookTransitionDemo/MKJExplosionView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeftMKJ/CustomPushTransitionDemo/HEAD/RedBookTransitionDemo/MKJExplosionView.m -------------------------------------------------------------------------------- /RedBookTransitionDemo/MKJNavigationViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeftMKJ/CustomPushTransitionDemo/HEAD/RedBookTransitionDemo/MKJNavigationViewController.h -------------------------------------------------------------------------------- /RedBookTransitionDemo/MKJNavigationViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeftMKJ/CustomPushTransitionDemo/HEAD/RedBookTransitionDemo/MKJNavigationViewController.m -------------------------------------------------------------------------------- /RedBookTransitionDemo/MKJParseHelper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeftMKJ/CustomPushTransitionDemo/HEAD/RedBookTransitionDemo/MKJParseHelper.h -------------------------------------------------------------------------------- /RedBookTransitionDemo/MKJParseHelper.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeftMKJ/CustomPushTransitionDemo/HEAD/RedBookTransitionDemo/MKJParseHelper.m -------------------------------------------------------------------------------- /RedBookTransitionDemo/MKJPresentAnimator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeftMKJ/CustomPushTransitionDemo/HEAD/RedBookTransitionDemo/MKJPresentAnimator.h -------------------------------------------------------------------------------- /RedBookTransitionDemo/MKJPresentAnimator.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeftMKJ/CustomPushTransitionDemo/HEAD/RedBookTransitionDemo/MKJPresentAnimator.m -------------------------------------------------------------------------------- /RedBookTransitionDemo/MKJSuperAnimation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeftMKJ/CustomPushTransitionDemo/HEAD/RedBookTransitionDemo/MKJSuperAnimation.h -------------------------------------------------------------------------------- /RedBookTransitionDemo/MKJSuperAnimation.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeftMKJ/CustomPushTransitionDemo/HEAD/RedBookTransitionDemo/MKJSuperAnimation.m -------------------------------------------------------------------------------- /RedBookTransitionDemo/RedBookModel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeftMKJ/CustomPushTransitionDemo/HEAD/RedBookTransitionDemo/RedBookModel.h -------------------------------------------------------------------------------- /RedBookTransitionDemo/RedBookModel.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeftMKJ/CustomPushTransitionDemo/HEAD/RedBookTransitionDemo/RedBookModel.m -------------------------------------------------------------------------------- /RedBookTransitionDemo/SecondCollectionViewCell.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeftMKJ/CustomPushTransitionDemo/HEAD/RedBookTransitionDemo/SecondCollectionViewCell.xib -------------------------------------------------------------------------------- /RedBookTransitionDemo/SecondViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeftMKJ/CustomPushTransitionDemo/HEAD/RedBookTransitionDemo/SecondViewController.h -------------------------------------------------------------------------------- /RedBookTransitionDemo/SecondViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeftMKJ/CustomPushTransitionDemo/HEAD/RedBookTransitionDemo/SecondViewController.m -------------------------------------------------------------------------------- /RedBookTransitionDemo/SecondViewController.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeftMKJ/CustomPushTransitionDemo/HEAD/RedBookTransitionDemo/SecondViewController.xib -------------------------------------------------------------------------------- /RedBookTransitionDemo/ThirdViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeftMKJ/CustomPushTransitionDemo/HEAD/RedBookTransitionDemo/ThirdViewController.h -------------------------------------------------------------------------------- /RedBookTransitionDemo/ThirdViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeftMKJ/CustomPushTransitionDemo/HEAD/RedBookTransitionDemo/ThirdViewController.m -------------------------------------------------------------------------------- /RedBookTransitionDemo/ThirdViewController.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeftMKJ/CustomPushTransitionDemo/HEAD/RedBookTransitionDemo/ThirdViewController.xib -------------------------------------------------------------------------------- /RedBookTransitionDemo/ViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeftMKJ/CustomPushTransitionDemo/HEAD/RedBookTransitionDemo/ViewController.h -------------------------------------------------------------------------------- /RedBookTransitionDemo/ViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeftMKJ/CustomPushTransitionDemo/HEAD/RedBookTransitionDemo/ViewController.m -------------------------------------------------------------------------------- /RedBookTransitionDemo/dot1@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeftMKJ/CustomPushTransitionDemo/HEAD/RedBookTransitionDemo/dot1@2x.png -------------------------------------------------------------------------------- /RedBookTransitionDemo/dot1@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeftMKJ/CustomPushTransitionDemo/HEAD/RedBookTransitionDemo/dot1@3x.png -------------------------------------------------------------------------------- /RedBookTransitionDemo/favorite_hl@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeftMKJ/CustomPushTransitionDemo/HEAD/RedBookTransitionDemo/favorite_hl@2x.png -------------------------------------------------------------------------------- /RedBookTransitionDemo/favorite_hl@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeftMKJ/CustomPushTransitionDemo/HEAD/RedBookTransitionDemo/favorite_hl@3x.png -------------------------------------------------------------------------------- /RedBookTransitionDemo/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeftMKJ/CustomPushTransitionDemo/HEAD/RedBookTransitionDemo/main.m -------------------------------------------------------------------------------- /RedBookTransitionDemoTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeftMKJ/CustomPushTransitionDemo/HEAD/RedBookTransitionDemoTests/Info.plist -------------------------------------------------------------------------------- /RedBookTransitionDemoTests/RedBookTransitionDemoTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeftMKJ/CustomPushTransitionDemo/HEAD/RedBookTransitionDemoTests/RedBookTransitionDemoTests.m -------------------------------------------------------------------------------- /RedBookTransitionDemoUITests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeftMKJ/CustomPushTransitionDemo/HEAD/RedBookTransitionDemoUITests/Info.plist -------------------------------------------------------------------------------- /RedBookTransitionDemoUITests/RedBookTransitionDemoUITests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeftMKJ/CustomPushTransitionDemo/HEAD/RedBookTransitionDemoUITests/RedBookTransitionDemoUITests.m -------------------------------------------------------------------------------- /YYText/Component/YYTextContainerView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeftMKJ/CustomPushTransitionDemo/HEAD/YYText/Component/YYTextContainerView.h -------------------------------------------------------------------------------- /YYText/Component/YYTextContainerView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeftMKJ/CustomPushTransitionDemo/HEAD/YYText/Component/YYTextContainerView.m -------------------------------------------------------------------------------- /YYText/Component/YYTextDebugOption.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeftMKJ/CustomPushTransitionDemo/HEAD/YYText/Component/YYTextDebugOption.h -------------------------------------------------------------------------------- /YYText/Component/YYTextDebugOption.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeftMKJ/CustomPushTransitionDemo/HEAD/YYText/Component/YYTextDebugOption.m -------------------------------------------------------------------------------- /YYText/Component/YYTextEffectWindow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeftMKJ/CustomPushTransitionDemo/HEAD/YYText/Component/YYTextEffectWindow.h -------------------------------------------------------------------------------- /YYText/Component/YYTextEffectWindow.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeftMKJ/CustomPushTransitionDemo/HEAD/YYText/Component/YYTextEffectWindow.m -------------------------------------------------------------------------------- /YYText/Component/YYTextInput.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeftMKJ/CustomPushTransitionDemo/HEAD/YYText/Component/YYTextInput.h -------------------------------------------------------------------------------- /YYText/Component/YYTextInput.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeftMKJ/CustomPushTransitionDemo/HEAD/YYText/Component/YYTextInput.m -------------------------------------------------------------------------------- /YYText/Component/YYTextKeyboardManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeftMKJ/CustomPushTransitionDemo/HEAD/YYText/Component/YYTextKeyboardManager.h -------------------------------------------------------------------------------- /YYText/Component/YYTextKeyboardManager.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeftMKJ/CustomPushTransitionDemo/HEAD/YYText/Component/YYTextKeyboardManager.m -------------------------------------------------------------------------------- /YYText/Component/YYTextLayout.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeftMKJ/CustomPushTransitionDemo/HEAD/YYText/Component/YYTextLayout.h -------------------------------------------------------------------------------- /YYText/Component/YYTextLayout.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeftMKJ/CustomPushTransitionDemo/HEAD/YYText/Component/YYTextLayout.m -------------------------------------------------------------------------------- /YYText/Component/YYTextLine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeftMKJ/CustomPushTransitionDemo/HEAD/YYText/Component/YYTextLine.h -------------------------------------------------------------------------------- /YYText/Component/YYTextLine.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeftMKJ/CustomPushTransitionDemo/HEAD/YYText/Component/YYTextLine.m -------------------------------------------------------------------------------- /YYText/Component/YYTextMagnifier.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeftMKJ/CustomPushTransitionDemo/HEAD/YYText/Component/YYTextMagnifier.h -------------------------------------------------------------------------------- /YYText/Component/YYTextMagnifier.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeftMKJ/CustomPushTransitionDemo/HEAD/YYText/Component/YYTextMagnifier.m -------------------------------------------------------------------------------- /YYText/Component/YYTextSelectionView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeftMKJ/CustomPushTransitionDemo/HEAD/YYText/Component/YYTextSelectionView.h -------------------------------------------------------------------------------- /YYText/Component/YYTextSelectionView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeftMKJ/CustomPushTransitionDemo/HEAD/YYText/Component/YYTextSelectionView.m -------------------------------------------------------------------------------- /YYText/String/YYTextArchiver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeftMKJ/CustomPushTransitionDemo/HEAD/YYText/String/YYTextArchiver.h -------------------------------------------------------------------------------- /YYText/String/YYTextArchiver.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeftMKJ/CustomPushTransitionDemo/HEAD/YYText/String/YYTextArchiver.m -------------------------------------------------------------------------------- /YYText/String/YYTextAttribute.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeftMKJ/CustomPushTransitionDemo/HEAD/YYText/String/YYTextAttribute.h -------------------------------------------------------------------------------- /YYText/String/YYTextAttribute.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeftMKJ/CustomPushTransitionDemo/HEAD/YYText/String/YYTextAttribute.m -------------------------------------------------------------------------------- /YYText/String/YYTextParser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeftMKJ/CustomPushTransitionDemo/HEAD/YYText/String/YYTextParser.h -------------------------------------------------------------------------------- /YYText/String/YYTextParser.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeftMKJ/CustomPushTransitionDemo/HEAD/YYText/String/YYTextParser.m -------------------------------------------------------------------------------- /YYText/String/YYTextRubyAnnotation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeftMKJ/CustomPushTransitionDemo/HEAD/YYText/String/YYTextRubyAnnotation.h -------------------------------------------------------------------------------- /YYText/String/YYTextRubyAnnotation.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeftMKJ/CustomPushTransitionDemo/HEAD/YYText/String/YYTextRubyAnnotation.m -------------------------------------------------------------------------------- /YYText/String/YYTextRunDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeftMKJ/CustomPushTransitionDemo/HEAD/YYText/String/YYTextRunDelegate.h -------------------------------------------------------------------------------- /YYText/String/YYTextRunDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeftMKJ/CustomPushTransitionDemo/HEAD/YYText/String/YYTextRunDelegate.m -------------------------------------------------------------------------------- /YYText/Utility/CALayer+YYAdd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeftMKJ/CustomPushTransitionDemo/HEAD/YYText/Utility/CALayer+YYAdd.h -------------------------------------------------------------------------------- /YYText/Utility/CALayer+YYAdd.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeftMKJ/CustomPushTransitionDemo/HEAD/YYText/Utility/CALayer+YYAdd.m -------------------------------------------------------------------------------- /YYText/Utility/NSAttributedString+YYText.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeftMKJ/CustomPushTransitionDemo/HEAD/YYText/Utility/NSAttributedString+YYText.h -------------------------------------------------------------------------------- /YYText/Utility/NSAttributedString+YYText.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeftMKJ/CustomPushTransitionDemo/HEAD/YYText/Utility/NSAttributedString+YYText.m -------------------------------------------------------------------------------- /YYText/Utility/NSBundle+YYAdd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeftMKJ/CustomPushTransitionDemo/HEAD/YYText/Utility/NSBundle+YYAdd.h -------------------------------------------------------------------------------- /YYText/Utility/NSBundle+YYAdd.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeftMKJ/CustomPushTransitionDemo/HEAD/YYText/Utility/NSBundle+YYAdd.m -------------------------------------------------------------------------------- /YYText/Utility/NSData+YYAdd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeftMKJ/CustomPushTransitionDemo/HEAD/YYText/Utility/NSData+YYAdd.h -------------------------------------------------------------------------------- /YYText/Utility/NSData+YYAdd.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeftMKJ/CustomPushTransitionDemo/HEAD/YYText/Utility/NSData+YYAdd.m -------------------------------------------------------------------------------- /YYText/Utility/NSParagraphStyle+YYText.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeftMKJ/CustomPushTransitionDemo/HEAD/YYText/Utility/NSParagraphStyle+YYText.h -------------------------------------------------------------------------------- /YYText/Utility/NSParagraphStyle+YYText.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeftMKJ/CustomPushTransitionDemo/HEAD/YYText/Utility/NSParagraphStyle+YYText.m -------------------------------------------------------------------------------- /YYText/Utility/NSString+YYAdd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeftMKJ/CustomPushTransitionDemo/HEAD/YYText/Utility/NSString+YYAdd.h -------------------------------------------------------------------------------- /YYText/Utility/NSString+YYAdd.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeftMKJ/CustomPushTransitionDemo/HEAD/YYText/Utility/NSString+YYAdd.m -------------------------------------------------------------------------------- /YYText/Utility/UIControl+YYAdd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeftMKJ/CustomPushTransitionDemo/HEAD/YYText/Utility/UIControl+YYAdd.h -------------------------------------------------------------------------------- /YYText/Utility/UIControl+YYAdd.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeftMKJ/CustomPushTransitionDemo/HEAD/YYText/Utility/UIControl+YYAdd.m -------------------------------------------------------------------------------- /YYText/Utility/UIGestureRecognizer+YYAdd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeftMKJ/CustomPushTransitionDemo/HEAD/YYText/Utility/UIGestureRecognizer+YYAdd.h -------------------------------------------------------------------------------- /YYText/Utility/UIGestureRecognizer+YYAdd.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeftMKJ/CustomPushTransitionDemo/HEAD/YYText/Utility/UIGestureRecognizer+YYAdd.m -------------------------------------------------------------------------------- /YYText/Utility/UIImage+YYWebImage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeftMKJ/CustomPushTransitionDemo/HEAD/YYText/Utility/UIImage+YYWebImage.h -------------------------------------------------------------------------------- /YYText/Utility/UIImage+YYWebImage.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeftMKJ/CustomPushTransitionDemo/HEAD/YYText/Utility/UIImage+YYWebImage.m -------------------------------------------------------------------------------- /YYText/Utility/UIPasteboard+YYText.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeftMKJ/CustomPushTransitionDemo/HEAD/YYText/Utility/UIPasteboard+YYText.h -------------------------------------------------------------------------------- /YYText/Utility/UIPasteboard+YYText.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeftMKJ/CustomPushTransitionDemo/HEAD/YYText/Utility/UIPasteboard+YYText.m -------------------------------------------------------------------------------- /YYText/Utility/UIView+YYAdd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeftMKJ/CustomPushTransitionDemo/HEAD/YYText/Utility/UIView+YYAdd.h -------------------------------------------------------------------------------- /YYText/Utility/UIView+YYAdd.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeftMKJ/CustomPushTransitionDemo/HEAD/YYText/Utility/UIView+YYAdd.m -------------------------------------------------------------------------------- /YYText/Utility/UIView+YYText.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeftMKJ/CustomPushTransitionDemo/HEAD/YYText/Utility/UIView+YYText.h -------------------------------------------------------------------------------- /YYText/Utility/UIView+YYText.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeftMKJ/CustomPushTransitionDemo/HEAD/YYText/Utility/UIView+YYText.m -------------------------------------------------------------------------------- /YYText/Utility/YYTextAsyncLayer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeftMKJ/CustomPushTransitionDemo/HEAD/YYText/Utility/YYTextAsyncLayer.h -------------------------------------------------------------------------------- /YYText/Utility/YYTextAsyncLayer.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeftMKJ/CustomPushTransitionDemo/HEAD/YYText/Utility/YYTextAsyncLayer.m -------------------------------------------------------------------------------- /YYText/Utility/YYTextTransaction.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeftMKJ/CustomPushTransitionDemo/HEAD/YYText/Utility/YYTextTransaction.h -------------------------------------------------------------------------------- /YYText/Utility/YYTextTransaction.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeftMKJ/CustomPushTransitionDemo/HEAD/YYText/Utility/YYTextTransaction.m -------------------------------------------------------------------------------- /YYText/Utility/YYTextUtilities.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeftMKJ/CustomPushTransitionDemo/HEAD/YYText/Utility/YYTextUtilities.h -------------------------------------------------------------------------------- /YYText/Utility/YYTextUtilities.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeftMKJ/CustomPushTransitionDemo/HEAD/YYText/Utility/YYTextUtilities.m -------------------------------------------------------------------------------- /YYText/Utility/YYTextWeakProxy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeftMKJ/CustomPushTransitionDemo/HEAD/YYText/Utility/YYTextWeakProxy.h -------------------------------------------------------------------------------- /YYText/Utility/YYTextWeakProxy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeftMKJ/CustomPushTransitionDemo/HEAD/YYText/Utility/YYTextWeakProxy.m -------------------------------------------------------------------------------- /YYText/YYFPSLabel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeftMKJ/CustomPushTransitionDemo/HEAD/YYText/YYFPSLabel.h -------------------------------------------------------------------------------- /YYText/YYFPSLabel.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeftMKJ/CustomPushTransitionDemo/HEAD/YYText/YYFPSLabel.m -------------------------------------------------------------------------------- /YYText/YYGestureRecognizer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeftMKJ/CustomPushTransitionDemo/HEAD/YYText/YYGestureRecognizer.h -------------------------------------------------------------------------------- /YYText/YYGestureRecognizer.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeftMKJ/CustomPushTransitionDemo/HEAD/YYText/YYGestureRecognizer.m -------------------------------------------------------------------------------- /YYText/YYLabel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeftMKJ/CustomPushTransitionDemo/HEAD/YYText/YYLabel.h -------------------------------------------------------------------------------- /YYText/YYLabel.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeftMKJ/CustomPushTransitionDemo/HEAD/YYText/YYLabel.m -------------------------------------------------------------------------------- /YYText/YYText.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeftMKJ/CustomPushTransitionDemo/HEAD/YYText/YYText.h -------------------------------------------------------------------------------- /YYText/YYTextView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeftMKJ/CustomPushTransitionDemo/HEAD/YYText/YYTextView.h -------------------------------------------------------------------------------- /YYText/YYTextView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeftMKJ/CustomPushTransitionDemo/HEAD/YYText/YYTextView.m -------------------------------------------------------------------------------- /YYText/YYWeakProxy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeftMKJ/CustomPushTransitionDemo/HEAD/YYText/YYWeakProxy.h -------------------------------------------------------------------------------- /YYText/YYWeakProxy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeftMKJ/CustomPushTransitionDemo/HEAD/YYText/YYWeakProxy.m -------------------------------------------------------------------------------- /podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeftMKJ/CustomPushTransitionDemo/HEAD/podfile -------------------------------------------------------------------------------- /pop1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeftMKJ/CustomPushTransitionDemo/HEAD/pop1.gif -------------------------------------------------------------------------------- /pop2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeftMKJ/CustomPushTransitionDemo/HEAD/pop2.gif --------------------------------------------------------------------------------