├── .swift-version ├── .travis.yml ├── 1.gif ├── Example ├── .swift-version ├── Podfile ├── Podfile.lock ├── Pods │ ├── FrameAccessor │ │ ├── FrameAccessor │ │ │ ├── FrameAccessor.h │ │ │ ├── ScrollViewFrameAccessor.h │ │ │ ├── ScrollViewFrameAccessor.m │ │ │ ├── ViewFrameAccessor.h │ │ │ └── ViewFrameAccessor.m │ │ ├── LICENSE │ │ └── README.md │ ├── Local Podspecs │ │ └── ZMJImageEditor.podspec.json │ ├── 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 │ │ ├── project.xcworkspace │ │ │ ├── contents.xcworkspacedata │ │ │ ├── xcshareddata │ │ │ │ └── IDEWorkspaceChecks.plist │ │ │ └── xcuserdata │ │ │ │ └── guiminqin.xcuserdatad │ │ │ │ └── WorkspaceSettings.xcsettings │ │ └── xcuserdata │ │ │ ├── guiminqin.xcuserdatad │ │ │ └── xcschemes │ │ │ │ ├── FrameAccessor.xcscheme │ │ │ │ ├── Masonry.xcscheme │ │ │ │ ├── Pods-ZMJImageEditor_Example.xcscheme │ │ │ │ ├── Pods-ZMJImageEditor_Tests.xcscheme │ │ │ │ ├── XXNibBridge.xcscheme │ │ │ │ ├── YYCache.xcscheme │ │ │ │ ├── YYCategories.xcscheme │ │ │ │ ├── YYImage.xcscheme │ │ │ │ ├── YYText.xcscheme │ │ │ │ ├── YYWebImage.xcscheme │ │ │ │ ├── extobjc.xcscheme │ │ │ │ └── xcschememanagement.plist │ │ │ └── qinmin.xcuserdatad │ │ │ └── xcschemes │ │ │ ├── FrameAccessor.xcscheme │ │ │ ├── Masonry.xcscheme │ │ │ ├── Pods-ZMJImageEditor_Example.xcscheme │ │ │ ├── Pods-ZMJImageEditor_Tests.xcscheme │ │ │ ├── XXNibBridge.xcscheme │ │ │ ├── YYCache.xcscheme │ │ │ ├── YYCategories.xcscheme │ │ │ ├── YYImage.xcscheme │ │ │ ├── YYText.xcscheme │ │ │ ├── YYWebImage.xcscheme │ │ │ ├── extobjc.xcscheme │ │ │ └── xcschememanagement.plist │ ├── Target Support Files │ │ ├── FrameAccessor │ │ │ ├── FrameAccessor-Info.plist │ │ │ ├── FrameAccessor-dummy.m │ │ │ ├── FrameAccessor-prefix.pch │ │ │ ├── FrameAccessor-umbrella.h │ │ │ ├── FrameAccessor.modulemap │ │ │ └── FrameAccessor.xcconfig │ │ ├── Masonry │ │ │ ├── Info.plist │ │ │ ├── Masonry-Info.plist │ │ │ ├── Masonry-dummy.m │ │ │ ├── Masonry-prefix.pch │ │ │ ├── Masonry-umbrella.h │ │ │ ├── Masonry.modulemap │ │ │ └── Masonry.xcconfig │ │ ├── Pods-ZMJImageEditor_Example │ │ │ ├── Info.plist │ │ │ ├── Pods-ZMJImageEditor_Example-Info.plist │ │ │ ├── Pods-ZMJImageEditor_Example-acknowledgements.markdown │ │ │ ├── Pods-ZMJImageEditor_Example-acknowledgements.plist │ │ │ ├── Pods-ZMJImageEditor_Example-dummy.m │ │ │ ├── Pods-ZMJImageEditor_Example-frameworks.sh │ │ │ ├── Pods-ZMJImageEditor_Example-resources.sh │ │ │ ├── Pods-ZMJImageEditor_Example-umbrella.h │ │ │ ├── Pods-ZMJImageEditor_Example.debug.xcconfig │ │ │ ├── Pods-ZMJImageEditor_Example.modulemap │ │ │ └── Pods-ZMJImageEditor_Example.release.xcconfig │ │ ├── Pods-ZMJImageEditor_Tests │ │ │ ├── Info.plist │ │ │ ├── Pods-ZMJImageEditor_Tests-Info.plist │ │ │ ├── Pods-ZMJImageEditor_Tests-acknowledgements.markdown │ │ │ ├── Pods-ZMJImageEditor_Tests-acknowledgements.plist │ │ │ ├── Pods-ZMJImageEditor_Tests-dummy.m │ │ │ ├── Pods-ZMJImageEditor_Tests-frameworks.sh │ │ │ ├── Pods-ZMJImageEditor_Tests-resources.sh │ │ │ ├── Pods-ZMJImageEditor_Tests-umbrella.h │ │ │ ├── Pods-ZMJImageEditor_Tests.debug.xcconfig │ │ │ ├── Pods-ZMJImageEditor_Tests.modulemap │ │ │ └── Pods-ZMJImageEditor_Tests.release.xcconfig │ │ ├── XXNibBridge │ │ │ ├── XXNibBridge-Info.plist │ │ │ ├── XXNibBridge-dummy.m │ │ │ ├── XXNibBridge-prefix.pch │ │ │ ├── XXNibBridge-umbrella.h │ │ │ ├── XXNibBridge.modulemap │ │ │ └── XXNibBridge.xcconfig │ │ ├── YYCache │ │ │ ├── YYCache-Info.plist │ │ │ ├── YYCache-dummy.m │ │ │ ├── YYCache-prefix.pch │ │ │ ├── YYCache-umbrella.h │ │ │ ├── YYCache.modulemap │ │ │ └── YYCache.xcconfig │ │ ├── YYCategories │ │ │ ├── Info.plist │ │ │ ├── YYCategories-Info.plist │ │ │ ├── YYCategories-dummy.m │ │ │ ├── YYCategories-prefix.pch │ │ │ ├── YYCategories-umbrella.h │ │ │ ├── YYCategories.modulemap │ │ │ └── YYCategories.xcconfig │ │ ├── YYImage │ │ │ ├── YYImage-Info.plist │ │ │ ├── YYImage-dummy.m │ │ │ ├── YYImage-prefix.pch │ │ │ ├── YYImage-umbrella.h │ │ │ ├── YYImage.modulemap │ │ │ └── YYImage.xcconfig │ │ ├── YYText │ │ │ ├── YYText-Info.plist │ │ │ ├── YYText-dummy.m │ │ │ ├── YYText-prefix.pch │ │ │ ├── YYText-umbrella.h │ │ │ ├── YYText.modulemap │ │ │ └── YYText.xcconfig │ │ ├── YYWebImage │ │ │ ├── YYWebImage-Info.plist │ │ │ ├── YYWebImage-dummy.m │ │ │ ├── YYWebImage-prefix.pch │ │ │ ├── YYWebImage-umbrella.h │ │ │ ├── YYWebImage.modulemap │ │ │ └── YYWebImage.xcconfig │ │ └── extobjc │ │ │ ├── extobjc-Info.plist │ │ │ ├── extobjc-dummy.m │ │ │ ├── extobjc-prefix.pch │ │ │ ├── extobjc-umbrella.h │ │ │ ├── extobjc.modulemap │ │ │ └── extobjc.xcconfig │ ├── XXNibBridge │ │ ├── LICENSE │ │ ├── README.md │ │ └── XXNibBridge │ │ │ ├── XXNibBridge.h │ │ │ ├── XXNibBridge.m │ │ │ ├── XXNibConvention.h │ │ │ └── XXNibConvention.m │ ├── YYCache │ │ ├── LICENSE │ │ ├── README.md │ │ └── YYCache │ │ │ ├── YYCache.h │ │ │ ├── YYCache.m │ │ │ ├── YYDiskCache.h │ │ │ ├── YYDiskCache.m │ │ │ ├── YYKVStorage.h │ │ │ ├── YYKVStorage.m │ │ │ ├── YYMemoryCache.h │ │ │ └── YYMemoryCache.m │ ├── YYCategories │ │ ├── LICENSE │ │ ├── README.md │ │ └── YYCategories │ │ │ ├── Foundation │ │ │ ├── NSArray+YYAdd.h │ │ │ ├── NSArray+YYAdd.m │ │ │ ├── NSBundle+YYAdd.h │ │ │ ├── NSBundle+YYAdd.m │ │ │ ├── NSData+YYAdd.h │ │ │ ├── NSData+YYAdd.m │ │ │ ├── NSDate+YYAdd.h │ │ │ ├── NSDate+YYAdd.m │ │ │ ├── NSDictionary+YYAdd.h │ │ │ ├── NSDictionary+YYAdd.m │ │ │ ├── NSKeyedUnarchiver+YYAdd.h │ │ │ ├── NSKeyedUnarchiver+YYAdd.m │ │ │ ├── NSNotificationCenter+YYAdd.h │ │ │ ├── NSNotificationCenter+YYAdd.m │ │ │ ├── NSNumber+YYAdd.h │ │ │ ├── NSNumber+YYAdd.m │ │ │ ├── NSObject+YYAdd.h │ │ │ ├── NSObject+YYAdd.m │ │ │ ├── NSObject+YYAddForARC.h │ │ │ ├── NSObject+YYAddForARC.m │ │ │ ├── NSObject+YYAddForKVO.h │ │ │ ├── NSObject+YYAddForKVO.m │ │ │ ├── NSString+YYAdd.h │ │ │ ├── NSString+YYAdd.m │ │ │ ├── NSThread+YYAdd.h │ │ │ ├── NSThread+YYAdd.m │ │ │ ├── NSTimer+YYAdd.h │ │ │ └── NSTimer+YYAdd.m │ │ │ ├── Quartz │ │ │ ├── CALayer+YYAdd.h │ │ │ ├── CALayer+YYAdd.m │ │ │ ├── YYCGUtilities.h │ │ │ └── YYCGUtilities.m │ │ │ ├── UIKit │ │ │ ├── UIApplication+YYAdd.h │ │ │ ├── UIApplication+YYAdd.m │ │ │ ├── UIBarButtonItem+YYAdd.h │ │ │ ├── UIBarButtonItem+YYAdd.m │ │ │ ├── UIBezierPath+YYAdd.h │ │ │ ├── UIBezierPath+YYAdd.m │ │ │ ├── UIColor+YYAdd.h │ │ │ ├── UIColor+YYAdd.m │ │ │ ├── UIControl+YYAdd.h │ │ │ ├── UIControl+YYAdd.m │ │ │ ├── UIDevice+YYAdd.h │ │ │ ├── UIDevice+YYAdd.m │ │ │ ├── UIFont+YYAdd.h │ │ │ ├── UIFont+YYAdd.m │ │ │ ├── UIGestureRecognizer+YYAdd.h │ │ │ ├── UIGestureRecognizer+YYAdd.m │ │ │ ├── UIImage+YYAdd.h │ │ │ ├── UIImage+YYAdd.m │ │ │ ├── UIScreen+YYAdd.h │ │ │ ├── UIScreen+YYAdd.m │ │ │ ├── UIScrollView+YYAdd.h │ │ │ ├── UIScrollView+YYAdd.m │ │ │ ├── UITableView+YYAdd.h │ │ │ ├── UITableView+YYAdd.m │ │ │ ├── UITextField+YYAdd.h │ │ │ ├── UITextField+YYAdd.m │ │ │ ├── UIView+YYAdd.h │ │ │ └── UIView+YYAdd.m │ │ │ ├── YYCategories.h │ │ │ └── YYCategoriesMacro.h │ ├── YYImage │ │ ├── LICENSE │ │ ├── README.md │ │ └── YYImage │ │ │ ├── YYAnimatedImageView.h │ │ │ ├── YYAnimatedImageView.m │ │ │ ├── YYFrameImage.h │ │ │ ├── YYFrameImage.m │ │ │ ├── YYImage.h │ │ │ ├── YYImage.m │ │ │ ├── YYImageCoder.h │ │ │ ├── YYImageCoder.m │ │ │ ├── YYSpriteSheetImage.h │ │ │ └── YYSpriteSheetImage.m │ ├── YYText │ │ ├── LICENSE │ │ ├── README.md │ │ └── 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 │ │ │ ├── NSAttributedString+YYText.h │ │ │ ├── NSAttributedString+YYText.m │ │ │ ├── NSParagraphStyle+YYText.h │ │ │ ├── NSParagraphStyle+YYText.m │ │ │ ├── UIPasteboard+YYText.h │ │ │ ├── UIPasteboard+YYText.m │ │ │ ├── UIView+YYText.h │ │ │ ├── UIView+YYText.m │ │ │ ├── YYTextAsyncLayer.h │ │ │ ├── YYTextAsyncLayer.m │ │ │ ├── YYTextTransaction.h │ │ │ ├── YYTextTransaction.m │ │ │ ├── YYTextUtilities.h │ │ │ ├── YYTextUtilities.m │ │ │ ├── YYTextWeakProxy.h │ │ │ └── YYTextWeakProxy.m │ │ │ ├── YYLabel.h │ │ │ ├── YYLabel.m │ │ │ ├── YYText.h │ │ │ ├── YYTextView.h │ │ │ └── YYTextView.m │ ├── YYWebImage │ │ ├── LICENSE │ │ ├── README.md │ │ └── YYWebImage │ │ │ ├── Categories │ │ │ ├── CALayer+YYWebImage.h │ │ │ ├── CALayer+YYWebImage.m │ │ │ ├── MKAnnotationView+YYWebImage.h │ │ │ ├── MKAnnotationView+YYWebImage.m │ │ │ ├── UIButton+YYWebImage.h │ │ │ ├── UIButton+YYWebImage.m │ │ │ ├── UIImage+YYWebImage.h │ │ │ ├── UIImage+YYWebImage.m │ │ │ ├── UIImageView+YYWebImage.h │ │ │ ├── UIImageView+YYWebImage.m │ │ │ ├── _YYWebImageSetter.h │ │ │ └── _YYWebImageSetter.m │ │ │ ├── YYImageCache.h │ │ │ ├── YYImageCache.m │ │ │ ├── YYWebImage.h │ │ │ ├── YYWebImageManager.h │ │ │ ├── YYWebImageManager.m │ │ │ ├── YYWebImageOperation.h │ │ │ └── YYWebImageOperation.m │ └── extobjc │ │ ├── Classes │ │ ├── EXTobjc.h │ │ ├── Extensions │ │ │ ├── NSInvocation+EXT.h │ │ │ ├── NSInvocation+EXT.m │ │ │ ├── NSMethodSignature+EXT.h │ │ │ └── NSMethodSignature+EXT.m │ │ ├── Modules │ │ │ ├── EXTADT.h │ │ │ ├── EXTADT.m │ │ │ ├── EXTConcreteProtocol.h │ │ │ ├── EXTConcreteProtocol.m │ │ │ ├── EXTCoroutine.h │ │ │ ├── EXTKeyPathCoding.h │ │ │ ├── EXTNil.h │ │ │ ├── EXTNil.m │ │ │ ├── EXTRuntimeExtensions.h │ │ │ ├── EXTRuntimeExtensions.m │ │ │ ├── EXTSafeCategory.h │ │ │ ├── EXTSafeCategory.m │ │ │ ├── EXTScope.h │ │ │ ├── EXTScope.m │ │ │ ├── EXTSelectorChecking.h │ │ │ ├── EXTSelectorChecking.m │ │ │ └── EXTSynthesize.h │ │ └── metamacros.h │ │ ├── LICENSE │ │ └── README.md ├── Tests │ ├── Tests-Info.plist │ ├── Tests-Prefix.pch │ ├── Tests.m │ ├── en.lproj │ │ └── InfoPlist.strings │ └── zh-Hans.lproj │ │ └── InfoPlist.strings ├── ZMJImageEditor.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ ├── contents.xcworkspacedata │ │ ├── xcshareddata │ │ │ └── IDEWorkspaceChecks.plist │ │ └── xcuserdata │ │ │ └── qinmin.xcuserdatad │ │ │ └── UserInterfaceState.xcuserstate │ ├── xcshareddata │ │ └── xcschemes │ │ │ └── ZMJImageEditor-Example.xcscheme │ └── xcuserdata │ │ ├── guiminqin.xcuserdatad │ │ └── xcschemes │ │ │ └── xcschememanagement.plist │ │ └── qinmin.xcuserdatad │ │ └── xcschemes │ │ └── xcschememanagement.plist ├── ZMJImageEditor.xcworkspace │ ├── contents.xcworkspacedata │ ├── xcshareddata │ │ ├── IDEWorkspaceChecks.plist │ │ └── WorkspaceSettings.xcsettings │ └── xcuserdata │ │ ├── guiminqin.xcuserdatad │ │ ├── UserInterfaceState.xcuserstate │ │ ├── WorkspaceSettings.xcsettings │ │ └── xcdebugger │ │ │ └── Breakpoints_v2.xcbkptlist │ │ └── qinmin.xcuserdatad │ │ ├── UserInterfaceState.xcuserstate │ │ └── xcdebugger │ │ └── Breakpoints_v2.xcbkptlist ├── ZMJImageEditor │ ├── Base.lproj │ │ ├── Base.lproj │ │ │ ├── Main.storyboard │ │ │ └── Main.strings │ │ ├── LaunchScreen.storyboard │ │ ├── en.lproj │ │ │ └── Main.strings │ │ └── zh-Hans.lproj │ │ │ └── Main.strings │ ├── Images.xcassets │ │ ├── 1.imageset │ │ │ ├── 1.jpg │ │ │ └── Contents.json │ │ ├── AppIcon.appiconset │ │ │ └── Contents.json │ │ ├── Contents.json │ │ ├── bg.imageset │ │ │ ├── Contents.json │ │ │ └── IMG_1805.jpg │ │ ├── p1.imageset │ │ │ ├── Contents.json │ │ │ └── githubicon.png │ │ └── p2.imageset │ │ │ ├── Contents.json │ │ │ └── photo.png │ ├── ZMJAppDelegate.h │ ├── ZMJAppDelegate.m │ ├── ZMJImageEditor-Info.plist │ ├── ZMJImageEditor-Prefix.pch │ ├── ZMJImageEditor │ │ ├── Assets │ │ │ ├── close_Text@2x.png │ │ │ ├── icon_caiqie@2x.png │ │ │ ├── icon_fanzhuan@2x.png │ │ │ ├── icon_fanzhuan_xuanzhong@2x.png │ │ │ ├── icon_masaike@2x.png │ │ │ ├── icon_masaike_1@2x.png │ │ │ ├── icon_masaike_1_xuanzhong@2x.png │ │ │ ├── icon_masaike_2@2x.png │ │ │ ├── icon_masaike_2_xuanzhong@2x.png │ │ │ ├── icon_masaike_xuanzhong@2x.png │ │ │ ├── icon_queren@2x.png │ │ │ ├── icon_quxiao@2x.png │ │ │ ├── icon_shanchushangyibu@2x.png │ │ │ ├── icon_tianjiawenzi_wukuang@2x.png │ │ │ ├── icon_tianjiawenzi_youkuang@2x.png │ │ │ ├── icon_tuya@2x.png │ │ │ └── icon_tuya_xuanzhong@2x.png │ │ ├── Base │ │ │ ├── Tools │ │ │ │ ├── WBGImageToolBase.h │ │ │ │ └── WBGImageToolBase.m │ │ │ └── Views │ │ │ │ ├── TOCropScrollView.h │ │ │ │ ├── TOCropScrollView.m │ │ │ │ ├── WBGColorfullButton.h │ │ │ │ ├── WBGColorfullButton.m │ │ │ │ ├── WBGDrawView.h │ │ │ │ ├── WBGDrawView.m │ │ │ │ ├── WBGNavigationBarView.h │ │ │ │ ├── WBGNavigationBarView.m │ │ │ │ ├── WBGNavigationBarView.xib │ │ │ │ ├── WBGView.h │ │ │ │ └── WBGView.m │ │ ├── Categories │ │ │ ├── UIColor+TLChat.h │ │ │ ├── UIColor+TLChat.m │ │ │ ├── UIImage+CropRotate.h │ │ │ ├── UIImage+CropRotate.m │ │ │ ├── UIImage+library.h │ │ │ ├── UIImage+library.m │ │ │ ├── UIView+TouchBlock.h │ │ │ ├── UIView+TouchBlock.m │ │ │ ├── WBGMoreKeyboard+CollectionView.h │ │ │ └── WBGMoreKeyboard+CollectionView.m │ │ ├── Images.xcassets │ │ │ ├── 1.imageset │ │ │ │ ├── 1.jpg │ │ │ │ └── Contents.json │ │ │ ├── AppIcon.appiconset │ │ │ │ └── Contents.json │ │ │ ├── Contents.json │ │ │ ├── Icons │ │ │ │ ├── Contents.json │ │ │ │ ├── close_Text.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ └── close_Text.png │ │ │ │ ├── icon_caiqie.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ └── icon_caiqie.png │ │ │ │ ├── icon_fanzhuan.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ └── icon_fanzhuan.png │ │ │ │ ├── icon_fanzhuan_xuanzhong.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ └── icon_fanzhuan_xuanzhong.png │ │ │ │ ├── icon_masaike.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ └── icon_masaike.png │ │ │ │ ├── icon_masaike_1.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ └── icon_masaike_1.png │ │ │ │ ├── icon_masaike_1_xuanzhong.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ └── icon_masaike_1_xuanzhong.png │ │ │ │ ├── icon_masaike_2.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ └── icon_masaike_2.png │ │ │ │ ├── icon_masaike_2_xuanzhong.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ └── icon_masaike_2_xuanzhong.png │ │ │ │ ├── icon_masaike_xuanzhong.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ └── icon_masaike_xuanzhong.png │ │ │ │ ├── icon_queren.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ └── icon_queren.png │ │ │ │ ├── icon_quxiao.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ └── icon_quxiao.png │ │ │ │ ├── icon_shanchushangyibu.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ └── icon_shanchushangyibu.png │ │ │ │ ├── icon_tianjiawenzi_wukuang.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ └── icon_tianjiawenzi_wukuang.png │ │ │ │ ├── icon_tianjiawenzi_youkuang.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ └── icon_tianjiawenzi_youkuang.png │ │ │ │ ├── icon_tuya.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ └── icon_tuya.png │ │ │ │ └── icon_tuya_xuanzhong.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ └── icon_tuya_xuanzhong.png │ │ │ ├── bg.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── IMG_1805.jpg │ │ │ ├── p1.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── githubicon.png │ │ │ └── p2.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── photo.png │ │ ├── Macros │ │ │ └── WBGChatMacros.h │ │ ├── Manager │ │ │ ├── WBGImageEditorGestureManager.h │ │ │ └── WBGImageEditorGestureManager.m │ │ ├── Modules │ │ │ ├── Crop │ │ │ │ ├── Controller │ │ │ │ │ ├── TOCropViewController.h │ │ │ │ │ ├── TOCropViewController.m │ │ │ │ │ ├── TOCropViewControllerTransitioning.h │ │ │ │ │ └── TOCropViewControllerTransitioning.m │ │ │ │ ├── Model │ │ │ │ │ ├── TOCroppedImageAttributes.h │ │ │ │ │ └── TOCroppedImageAttributes.m │ │ │ │ ├── Provider │ │ │ │ │ ├── TOActivityCroppedImageProvider.h │ │ │ │ │ └── TOActivityCroppedImageProvider.m │ │ │ │ └── View │ │ │ │ │ ├── TOCropOverlayView.h │ │ │ │ │ ├── TOCropOverlayView.m │ │ │ │ │ ├── TOCropToolbar.h │ │ │ │ │ ├── TOCropToolbar.m │ │ │ │ │ ├── TOCropView.h │ │ │ │ │ └── TOCropView.m │ │ │ ├── Draw │ │ │ │ ├── Model │ │ │ │ │ ├── WBGPath.h │ │ │ │ │ └── WBGPath.m │ │ │ │ ├── Views │ │ │ │ │ ├── WBGColorPanel.h │ │ │ │ │ ├── WBGColorPanel.m │ │ │ │ │ └── WBGColorPanel.xib │ │ │ │ ├── WBGDrawTool.h │ │ │ │ └── WBGDrawTool.m │ │ │ ├── Main │ │ │ │ ├── WBGImageEditorViewController.h │ │ │ │ ├── WBGImageEditorViewController.m │ │ │ │ └── WBGImageEditorViewController.xib │ │ │ ├── Mosica │ │ │ │ ├── Model │ │ │ │ │ ├── WBGMosicaPath.h │ │ │ │ │ └── WBGMosicaPath.m │ │ │ │ ├── Utils │ │ │ │ │ ├── XRGBTool.h │ │ │ │ │ └── XRGBTool.m │ │ │ │ ├── View │ │ │ │ │ ├── WBGMosicaToolBar.h │ │ │ │ │ ├── WBGMosicaToolBar.m │ │ │ │ │ ├── WBGMosicaToolBar.xib │ │ │ │ │ ├── WBGScratchView.h │ │ │ │ │ └── WBGScratchView.m │ │ │ │ ├── WBGMosicaTool.h │ │ │ │ └── WBGMosicaTool.m │ │ │ ├── Text │ │ │ │ ├── View │ │ │ │ │ ├── WBGTextColorPanel.h │ │ │ │ │ ├── WBGTextColorPanel.m │ │ │ │ │ ├── WBGTextColorPanel.xib │ │ │ │ │ ├── WBGTextToolOverlapView.h │ │ │ │ │ ├── WBGTextToolOverlapView.m │ │ │ │ │ ├── WBGTextToolView.h │ │ │ │ │ └── WBGTextToolView.m │ │ │ │ ├── WBGTextTool.h │ │ │ │ └── WBGTextTool.m │ │ │ └── Widget │ │ │ │ ├── Keyboard │ │ │ │ ├── WBGBaseKeyboard.h │ │ │ │ ├── WBGBaseKeyboard.m │ │ │ │ ├── WBGMoreKeyboardItem.h │ │ │ │ └── WBGMoreKeyboardItem.m │ │ │ │ ├── Views │ │ │ │ ├── WBGMoreKeyboardCell.h │ │ │ │ └── WBGMoreKeyboardCell.m │ │ │ │ ├── WBGMoreKeyboard.h │ │ │ │ └── WBGMoreKeyboard.m │ │ ├── WBGImageEditor.h │ │ └── WBGImageEditor.m │ ├── ZMJViewController.h │ ├── ZMJViewController.m │ ├── en.lproj │ │ └── InfoPlist.strings │ ├── main.m │ └── zh-Hans.lproj │ │ ├── InfoPlist.strings │ │ └── LaunchScreen.strings └── build │ └── XCBuildData │ ├── BuildDescriptionCacheIndex-c8f9f522ee8ce203effec18a38a7657c │ ├── dd59c412ff0bd9bdb3221f3420897930-desc.xcbuild │ └── dd59c412ff0bd9bdb3221f3420897930-manifest.xcbuild ├── LICENSE ├── README.md ├── WBGMosicaViewController.h ├── WBGMosicaViewController.m ├── ZMJImageEditor.podspec ├── _Pods.xcodeproj └── screenShot ├── 1.png ├── 10.png ├── 2.png ├── 3.png ├── 4.png ├── 5.png ├── 6.png ├── 7.png ├── 8.png └── 9.png /.swift-version: -------------------------------------------------------------------------------- 1 | 2.3 2 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QinminiOS/ZMJImageEditor/HEAD/.travis.yml -------------------------------------------------------------------------------- /1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QinminiOS/ZMJImageEditor/HEAD/1.gif -------------------------------------------------------------------------------- /Example/.swift-version: -------------------------------------------------------------------------------- 1 | 3.0 2 | -------------------------------------------------------------------------------- /Example/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QinminiOS/ZMJImageEditor/HEAD/Example/Podfile -------------------------------------------------------------------------------- /Example/Podfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QinminiOS/ZMJImageEditor/HEAD/Example/Podfile.lock -------------------------------------------------------------------------------- /Example/Pods/FrameAccessor/FrameAccessor/FrameAccessor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QinminiOS/ZMJImageEditor/HEAD/Example/Pods/FrameAccessor/FrameAccessor/FrameAccessor.h -------------------------------------------------------------------------------- /Example/Pods/FrameAccessor/FrameAccessor/ScrollViewFrameAccessor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QinminiOS/ZMJImageEditor/HEAD/Example/Pods/FrameAccessor/FrameAccessor/ScrollViewFrameAccessor.h -------------------------------------------------------------------------------- /Example/Pods/FrameAccessor/FrameAccessor/ScrollViewFrameAccessor.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QinminiOS/ZMJImageEditor/HEAD/Example/Pods/FrameAccessor/FrameAccessor/ScrollViewFrameAccessor.m -------------------------------------------------------------------------------- /Example/Pods/FrameAccessor/FrameAccessor/ViewFrameAccessor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QinminiOS/ZMJImageEditor/HEAD/Example/Pods/FrameAccessor/FrameAccessor/ViewFrameAccessor.h -------------------------------------------------------------------------------- /Example/Pods/FrameAccessor/FrameAccessor/ViewFrameAccessor.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QinminiOS/ZMJImageEditor/HEAD/Example/Pods/FrameAccessor/FrameAccessor/ViewFrameAccessor.m -------------------------------------------------------------------------------- /Example/Pods/FrameAccessor/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QinminiOS/ZMJImageEditor/HEAD/Example/Pods/FrameAccessor/LICENSE -------------------------------------------------------------------------------- /Example/Pods/FrameAccessor/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QinminiOS/ZMJImageEditor/HEAD/Example/Pods/FrameAccessor/README.md -------------------------------------------------------------------------------- /Example/Pods/Local Podspecs/ZMJImageEditor.podspec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QinminiOS/ZMJImageEditor/HEAD/Example/Pods/Local Podspecs/ZMJImageEditor.podspec.json -------------------------------------------------------------------------------- /Example/Pods/Manifest.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QinminiOS/ZMJImageEditor/HEAD/Example/Pods/Manifest.lock -------------------------------------------------------------------------------- /Example/Pods/Masonry/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QinminiOS/ZMJImageEditor/HEAD/Example/Pods/Masonry/LICENSE -------------------------------------------------------------------------------- /Example/Pods/Masonry/Masonry/MASCompositeConstraint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QinminiOS/ZMJImageEditor/HEAD/Example/Pods/Masonry/Masonry/MASCompositeConstraint.h -------------------------------------------------------------------------------- /Example/Pods/Masonry/Masonry/MASCompositeConstraint.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QinminiOS/ZMJImageEditor/HEAD/Example/Pods/Masonry/Masonry/MASCompositeConstraint.m -------------------------------------------------------------------------------- /Example/Pods/Masonry/Masonry/MASConstraint+Private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QinminiOS/ZMJImageEditor/HEAD/Example/Pods/Masonry/Masonry/MASConstraint+Private.h -------------------------------------------------------------------------------- /Example/Pods/Masonry/Masonry/MASConstraint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QinminiOS/ZMJImageEditor/HEAD/Example/Pods/Masonry/Masonry/MASConstraint.h -------------------------------------------------------------------------------- /Example/Pods/Masonry/Masonry/MASConstraint.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QinminiOS/ZMJImageEditor/HEAD/Example/Pods/Masonry/Masonry/MASConstraint.m -------------------------------------------------------------------------------- /Example/Pods/Masonry/Masonry/MASConstraintMaker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QinminiOS/ZMJImageEditor/HEAD/Example/Pods/Masonry/Masonry/MASConstraintMaker.h -------------------------------------------------------------------------------- /Example/Pods/Masonry/Masonry/MASConstraintMaker.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QinminiOS/ZMJImageEditor/HEAD/Example/Pods/Masonry/Masonry/MASConstraintMaker.m -------------------------------------------------------------------------------- /Example/Pods/Masonry/Masonry/MASLayoutConstraint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QinminiOS/ZMJImageEditor/HEAD/Example/Pods/Masonry/Masonry/MASLayoutConstraint.h -------------------------------------------------------------------------------- /Example/Pods/Masonry/Masonry/MASLayoutConstraint.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QinminiOS/ZMJImageEditor/HEAD/Example/Pods/Masonry/Masonry/MASLayoutConstraint.m -------------------------------------------------------------------------------- /Example/Pods/Masonry/Masonry/MASUtilities.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QinminiOS/ZMJImageEditor/HEAD/Example/Pods/Masonry/Masonry/MASUtilities.h -------------------------------------------------------------------------------- /Example/Pods/Masonry/Masonry/MASViewAttribute.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QinminiOS/ZMJImageEditor/HEAD/Example/Pods/Masonry/Masonry/MASViewAttribute.h -------------------------------------------------------------------------------- /Example/Pods/Masonry/Masonry/MASViewAttribute.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QinminiOS/ZMJImageEditor/HEAD/Example/Pods/Masonry/Masonry/MASViewAttribute.m -------------------------------------------------------------------------------- /Example/Pods/Masonry/Masonry/MASViewConstraint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QinminiOS/ZMJImageEditor/HEAD/Example/Pods/Masonry/Masonry/MASViewConstraint.h -------------------------------------------------------------------------------- /Example/Pods/Masonry/Masonry/MASViewConstraint.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QinminiOS/ZMJImageEditor/HEAD/Example/Pods/Masonry/Masonry/MASViewConstraint.m -------------------------------------------------------------------------------- /Example/Pods/Masonry/Masonry/Masonry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QinminiOS/ZMJImageEditor/HEAD/Example/Pods/Masonry/Masonry/Masonry.h -------------------------------------------------------------------------------- /Example/Pods/Masonry/Masonry/NSArray+MASAdditions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QinminiOS/ZMJImageEditor/HEAD/Example/Pods/Masonry/Masonry/NSArray+MASAdditions.h -------------------------------------------------------------------------------- /Example/Pods/Masonry/Masonry/NSArray+MASAdditions.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QinminiOS/ZMJImageEditor/HEAD/Example/Pods/Masonry/Masonry/NSArray+MASAdditions.m -------------------------------------------------------------------------------- /Example/Pods/Masonry/Masonry/NSArray+MASShorthandAdditions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QinminiOS/ZMJImageEditor/HEAD/Example/Pods/Masonry/Masonry/NSArray+MASShorthandAdditions.h -------------------------------------------------------------------------------- /Example/Pods/Masonry/Masonry/NSLayoutConstraint+MASDebugAdditions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QinminiOS/ZMJImageEditor/HEAD/Example/Pods/Masonry/Masonry/NSLayoutConstraint+MASDebugAdditions.h -------------------------------------------------------------------------------- /Example/Pods/Masonry/Masonry/NSLayoutConstraint+MASDebugAdditions.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QinminiOS/ZMJImageEditor/HEAD/Example/Pods/Masonry/Masonry/NSLayoutConstraint+MASDebugAdditions.m -------------------------------------------------------------------------------- /Example/Pods/Masonry/Masonry/View+MASAdditions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QinminiOS/ZMJImageEditor/HEAD/Example/Pods/Masonry/Masonry/View+MASAdditions.h -------------------------------------------------------------------------------- /Example/Pods/Masonry/Masonry/View+MASAdditions.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QinminiOS/ZMJImageEditor/HEAD/Example/Pods/Masonry/Masonry/View+MASAdditions.m -------------------------------------------------------------------------------- /Example/Pods/Masonry/Masonry/View+MASShorthandAdditions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QinminiOS/ZMJImageEditor/HEAD/Example/Pods/Masonry/Masonry/View+MASShorthandAdditions.h -------------------------------------------------------------------------------- /Example/Pods/Masonry/Masonry/ViewController+MASAdditions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QinminiOS/ZMJImageEditor/HEAD/Example/Pods/Masonry/Masonry/ViewController+MASAdditions.h -------------------------------------------------------------------------------- /Example/Pods/Masonry/Masonry/ViewController+MASAdditions.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QinminiOS/ZMJImageEditor/HEAD/Example/Pods/Masonry/Masonry/ViewController+MASAdditions.m -------------------------------------------------------------------------------- /Example/Pods/Masonry/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QinminiOS/ZMJImageEditor/HEAD/Example/Pods/Masonry/README.md -------------------------------------------------------------------------------- /Example/Pods/Pods.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QinminiOS/ZMJImageEditor/HEAD/Example/Pods/Pods.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Example/Pods/Pods.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QinminiOS/ZMJImageEditor/HEAD/Example/Pods/Pods.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Example/Pods/Pods.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QinminiOS/ZMJImageEditor/HEAD/Example/Pods/Pods.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /Example/Pods/Pods.xcodeproj/project.xcworkspace/xcuserdata/guiminqin.xcuserdatad/WorkspaceSettings.xcsettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QinminiOS/ZMJImageEditor/HEAD/Example/Pods/Pods.xcodeproj/project.xcworkspace/xcuserdata/guiminqin.xcuserdatad/WorkspaceSettings.xcsettings -------------------------------------------------------------------------------- /Example/Pods/Pods.xcodeproj/xcuserdata/guiminqin.xcuserdatad/xcschemes/FrameAccessor.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QinminiOS/ZMJImageEditor/HEAD/Example/Pods/Pods.xcodeproj/xcuserdata/guiminqin.xcuserdatad/xcschemes/FrameAccessor.xcscheme -------------------------------------------------------------------------------- /Example/Pods/Pods.xcodeproj/xcuserdata/guiminqin.xcuserdatad/xcschemes/Masonry.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QinminiOS/ZMJImageEditor/HEAD/Example/Pods/Pods.xcodeproj/xcuserdata/guiminqin.xcuserdatad/xcschemes/Masonry.xcscheme -------------------------------------------------------------------------------- /Example/Pods/Pods.xcodeproj/xcuserdata/guiminqin.xcuserdatad/xcschemes/Pods-ZMJImageEditor_Example.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QinminiOS/ZMJImageEditor/HEAD/Example/Pods/Pods.xcodeproj/xcuserdata/guiminqin.xcuserdatad/xcschemes/Pods-ZMJImageEditor_Example.xcscheme -------------------------------------------------------------------------------- /Example/Pods/Pods.xcodeproj/xcuserdata/guiminqin.xcuserdatad/xcschemes/Pods-ZMJImageEditor_Tests.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QinminiOS/ZMJImageEditor/HEAD/Example/Pods/Pods.xcodeproj/xcuserdata/guiminqin.xcuserdatad/xcschemes/Pods-ZMJImageEditor_Tests.xcscheme -------------------------------------------------------------------------------- /Example/Pods/Pods.xcodeproj/xcuserdata/guiminqin.xcuserdatad/xcschemes/XXNibBridge.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QinminiOS/ZMJImageEditor/HEAD/Example/Pods/Pods.xcodeproj/xcuserdata/guiminqin.xcuserdatad/xcschemes/XXNibBridge.xcscheme -------------------------------------------------------------------------------- /Example/Pods/Pods.xcodeproj/xcuserdata/guiminqin.xcuserdatad/xcschemes/YYCache.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QinminiOS/ZMJImageEditor/HEAD/Example/Pods/Pods.xcodeproj/xcuserdata/guiminqin.xcuserdatad/xcschemes/YYCache.xcscheme -------------------------------------------------------------------------------- /Example/Pods/Pods.xcodeproj/xcuserdata/guiminqin.xcuserdatad/xcschemes/YYCategories.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QinminiOS/ZMJImageEditor/HEAD/Example/Pods/Pods.xcodeproj/xcuserdata/guiminqin.xcuserdatad/xcschemes/YYCategories.xcscheme -------------------------------------------------------------------------------- /Example/Pods/Pods.xcodeproj/xcuserdata/guiminqin.xcuserdatad/xcschemes/YYImage.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QinminiOS/ZMJImageEditor/HEAD/Example/Pods/Pods.xcodeproj/xcuserdata/guiminqin.xcuserdatad/xcschemes/YYImage.xcscheme -------------------------------------------------------------------------------- /Example/Pods/Pods.xcodeproj/xcuserdata/guiminqin.xcuserdatad/xcschemes/YYText.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QinminiOS/ZMJImageEditor/HEAD/Example/Pods/Pods.xcodeproj/xcuserdata/guiminqin.xcuserdatad/xcschemes/YYText.xcscheme -------------------------------------------------------------------------------- /Example/Pods/Pods.xcodeproj/xcuserdata/guiminqin.xcuserdatad/xcschemes/YYWebImage.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QinminiOS/ZMJImageEditor/HEAD/Example/Pods/Pods.xcodeproj/xcuserdata/guiminqin.xcuserdatad/xcschemes/YYWebImage.xcscheme -------------------------------------------------------------------------------- /Example/Pods/Pods.xcodeproj/xcuserdata/guiminqin.xcuserdatad/xcschemes/extobjc.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QinminiOS/ZMJImageEditor/HEAD/Example/Pods/Pods.xcodeproj/xcuserdata/guiminqin.xcuserdatad/xcschemes/extobjc.xcscheme -------------------------------------------------------------------------------- /Example/Pods/Pods.xcodeproj/xcuserdata/guiminqin.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QinminiOS/ZMJImageEditor/HEAD/Example/Pods/Pods.xcodeproj/xcuserdata/guiminqin.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /Example/Pods/Pods.xcodeproj/xcuserdata/qinmin.xcuserdatad/xcschemes/FrameAccessor.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QinminiOS/ZMJImageEditor/HEAD/Example/Pods/Pods.xcodeproj/xcuserdata/qinmin.xcuserdatad/xcschemes/FrameAccessor.xcscheme -------------------------------------------------------------------------------- /Example/Pods/Pods.xcodeproj/xcuserdata/qinmin.xcuserdatad/xcschemes/Masonry.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QinminiOS/ZMJImageEditor/HEAD/Example/Pods/Pods.xcodeproj/xcuserdata/qinmin.xcuserdatad/xcschemes/Masonry.xcscheme -------------------------------------------------------------------------------- /Example/Pods/Pods.xcodeproj/xcuserdata/qinmin.xcuserdatad/xcschemes/Pods-ZMJImageEditor_Example.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QinminiOS/ZMJImageEditor/HEAD/Example/Pods/Pods.xcodeproj/xcuserdata/qinmin.xcuserdatad/xcschemes/Pods-ZMJImageEditor_Example.xcscheme -------------------------------------------------------------------------------- /Example/Pods/Pods.xcodeproj/xcuserdata/qinmin.xcuserdatad/xcschemes/Pods-ZMJImageEditor_Tests.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QinminiOS/ZMJImageEditor/HEAD/Example/Pods/Pods.xcodeproj/xcuserdata/qinmin.xcuserdatad/xcschemes/Pods-ZMJImageEditor_Tests.xcscheme -------------------------------------------------------------------------------- /Example/Pods/Pods.xcodeproj/xcuserdata/qinmin.xcuserdatad/xcschemes/XXNibBridge.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QinminiOS/ZMJImageEditor/HEAD/Example/Pods/Pods.xcodeproj/xcuserdata/qinmin.xcuserdatad/xcschemes/XXNibBridge.xcscheme -------------------------------------------------------------------------------- /Example/Pods/Pods.xcodeproj/xcuserdata/qinmin.xcuserdatad/xcschemes/YYCache.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QinminiOS/ZMJImageEditor/HEAD/Example/Pods/Pods.xcodeproj/xcuserdata/qinmin.xcuserdatad/xcschemes/YYCache.xcscheme -------------------------------------------------------------------------------- /Example/Pods/Pods.xcodeproj/xcuserdata/qinmin.xcuserdatad/xcschemes/YYCategories.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QinminiOS/ZMJImageEditor/HEAD/Example/Pods/Pods.xcodeproj/xcuserdata/qinmin.xcuserdatad/xcschemes/YYCategories.xcscheme -------------------------------------------------------------------------------- /Example/Pods/Pods.xcodeproj/xcuserdata/qinmin.xcuserdatad/xcschemes/YYImage.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QinminiOS/ZMJImageEditor/HEAD/Example/Pods/Pods.xcodeproj/xcuserdata/qinmin.xcuserdatad/xcschemes/YYImage.xcscheme -------------------------------------------------------------------------------- /Example/Pods/Pods.xcodeproj/xcuserdata/qinmin.xcuserdatad/xcschemes/YYText.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QinminiOS/ZMJImageEditor/HEAD/Example/Pods/Pods.xcodeproj/xcuserdata/qinmin.xcuserdatad/xcschemes/YYText.xcscheme -------------------------------------------------------------------------------- /Example/Pods/Pods.xcodeproj/xcuserdata/qinmin.xcuserdatad/xcschemes/YYWebImage.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QinminiOS/ZMJImageEditor/HEAD/Example/Pods/Pods.xcodeproj/xcuserdata/qinmin.xcuserdatad/xcschemes/YYWebImage.xcscheme -------------------------------------------------------------------------------- /Example/Pods/Pods.xcodeproj/xcuserdata/qinmin.xcuserdatad/xcschemes/extobjc.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QinminiOS/ZMJImageEditor/HEAD/Example/Pods/Pods.xcodeproj/xcuserdata/qinmin.xcuserdatad/xcschemes/extobjc.xcscheme -------------------------------------------------------------------------------- /Example/Pods/Pods.xcodeproj/xcuserdata/qinmin.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QinminiOS/ZMJImageEditor/HEAD/Example/Pods/Pods.xcodeproj/xcuserdata/qinmin.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/FrameAccessor/FrameAccessor-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QinminiOS/ZMJImageEditor/HEAD/Example/Pods/Target Support Files/FrameAccessor/FrameAccessor-Info.plist -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/FrameAccessor/FrameAccessor-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QinminiOS/ZMJImageEditor/HEAD/Example/Pods/Target Support Files/FrameAccessor/FrameAccessor-dummy.m -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/FrameAccessor/FrameAccessor-prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QinminiOS/ZMJImageEditor/HEAD/Example/Pods/Target Support Files/FrameAccessor/FrameAccessor-prefix.pch -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/FrameAccessor/FrameAccessor-umbrella.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QinminiOS/ZMJImageEditor/HEAD/Example/Pods/Target Support Files/FrameAccessor/FrameAccessor-umbrella.h -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/FrameAccessor/FrameAccessor.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QinminiOS/ZMJImageEditor/HEAD/Example/Pods/Target Support Files/FrameAccessor/FrameAccessor.modulemap -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/FrameAccessor/FrameAccessor.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QinminiOS/ZMJImageEditor/HEAD/Example/Pods/Target Support Files/FrameAccessor/FrameAccessor.xcconfig -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Masonry/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QinminiOS/ZMJImageEditor/HEAD/Example/Pods/Target Support Files/Masonry/Info.plist -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Masonry/Masonry-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QinminiOS/ZMJImageEditor/HEAD/Example/Pods/Target Support Files/Masonry/Masonry-Info.plist -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Masonry/Masonry-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QinminiOS/ZMJImageEditor/HEAD/Example/Pods/Target Support Files/Masonry/Masonry-dummy.m -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Masonry/Masonry-prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QinminiOS/ZMJImageEditor/HEAD/Example/Pods/Target Support Files/Masonry/Masonry-prefix.pch -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Masonry/Masonry-umbrella.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QinminiOS/ZMJImageEditor/HEAD/Example/Pods/Target Support Files/Masonry/Masonry-umbrella.h -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Masonry/Masonry.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QinminiOS/ZMJImageEditor/HEAD/Example/Pods/Target Support Files/Masonry/Masonry.modulemap -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Masonry/Masonry.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QinminiOS/ZMJImageEditor/HEAD/Example/Pods/Target Support Files/Masonry/Masonry.xcconfig -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-ZMJImageEditor_Example/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QinminiOS/ZMJImageEditor/HEAD/Example/Pods/Target Support Files/Pods-ZMJImageEditor_Example/Info.plist -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-ZMJImageEditor_Example/Pods-ZMJImageEditor_Example-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QinminiOS/ZMJImageEditor/HEAD/Example/Pods/Target Support Files/Pods-ZMJImageEditor_Example/Pods-ZMJImageEditor_Example-Info.plist -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-ZMJImageEditor_Example/Pods-ZMJImageEditor_Example-acknowledgements.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QinminiOS/ZMJImageEditor/HEAD/Example/Pods/Target Support Files/Pods-ZMJImageEditor_Example/Pods-ZMJImageEditor_Example-acknowledgements.markdown -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-ZMJImageEditor_Example/Pods-ZMJImageEditor_Example-acknowledgements.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QinminiOS/ZMJImageEditor/HEAD/Example/Pods/Target Support Files/Pods-ZMJImageEditor_Example/Pods-ZMJImageEditor_Example-acknowledgements.plist -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-ZMJImageEditor_Example/Pods-ZMJImageEditor_Example-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QinminiOS/ZMJImageEditor/HEAD/Example/Pods/Target Support Files/Pods-ZMJImageEditor_Example/Pods-ZMJImageEditor_Example-dummy.m -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-ZMJImageEditor_Example/Pods-ZMJImageEditor_Example-frameworks.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QinminiOS/ZMJImageEditor/HEAD/Example/Pods/Target Support Files/Pods-ZMJImageEditor_Example/Pods-ZMJImageEditor_Example-frameworks.sh -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-ZMJImageEditor_Example/Pods-ZMJImageEditor_Example-resources.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QinminiOS/ZMJImageEditor/HEAD/Example/Pods/Target Support Files/Pods-ZMJImageEditor_Example/Pods-ZMJImageEditor_Example-resources.sh -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-ZMJImageEditor_Example/Pods-ZMJImageEditor_Example-umbrella.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QinminiOS/ZMJImageEditor/HEAD/Example/Pods/Target Support Files/Pods-ZMJImageEditor_Example/Pods-ZMJImageEditor_Example-umbrella.h -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-ZMJImageEditor_Example/Pods-ZMJImageEditor_Example.debug.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QinminiOS/ZMJImageEditor/HEAD/Example/Pods/Target Support Files/Pods-ZMJImageEditor_Example/Pods-ZMJImageEditor_Example.debug.xcconfig -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-ZMJImageEditor_Example/Pods-ZMJImageEditor_Example.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QinminiOS/ZMJImageEditor/HEAD/Example/Pods/Target Support Files/Pods-ZMJImageEditor_Example/Pods-ZMJImageEditor_Example.modulemap -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-ZMJImageEditor_Example/Pods-ZMJImageEditor_Example.release.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QinminiOS/ZMJImageEditor/HEAD/Example/Pods/Target Support Files/Pods-ZMJImageEditor_Example/Pods-ZMJImageEditor_Example.release.xcconfig -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-ZMJImageEditor_Tests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QinminiOS/ZMJImageEditor/HEAD/Example/Pods/Target Support Files/Pods-ZMJImageEditor_Tests/Info.plist -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-ZMJImageEditor_Tests/Pods-ZMJImageEditor_Tests-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QinminiOS/ZMJImageEditor/HEAD/Example/Pods/Target Support Files/Pods-ZMJImageEditor_Tests/Pods-ZMJImageEditor_Tests-Info.plist -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-ZMJImageEditor_Tests/Pods-ZMJImageEditor_Tests-acknowledgements.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QinminiOS/ZMJImageEditor/HEAD/Example/Pods/Target Support Files/Pods-ZMJImageEditor_Tests/Pods-ZMJImageEditor_Tests-acknowledgements.markdown -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-ZMJImageEditor_Tests/Pods-ZMJImageEditor_Tests-acknowledgements.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QinminiOS/ZMJImageEditor/HEAD/Example/Pods/Target Support Files/Pods-ZMJImageEditor_Tests/Pods-ZMJImageEditor_Tests-acknowledgements.plist -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-ZMJImageEditor_Tests/Pods-ZMJImageEditor_Tests-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QinminiOS/ZMJImageEditor/HEAD/Example/Pods/Target Support Files/Pods-ZMJImageEditor_Tests/Pods-ZMJImageEditor_Tests-dummy.m -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-ZMJImageEditor_Tests/Pods-ZMJImageEditor_Tests-frameworks.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QinminiOS/ZMJImageEditor/HEAD/Example/Pods/Target Support Files/Pods-ZMJImageEditor_Tests/Pods-ZMJImageEditor_Tests-frameworks.sh -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-ZMJImageEditor_Tests/Pods-ZMJImageEditor_Tests-resources.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QinminiOS/ZMJImageEditor/HEAD/Example/Pods/Target Support Files/Pods-ZMJImageEditor_Tests/Pods-ZMJImageEditor_Tests-resources.sh -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-ZMJImageEditor_Tests/Pods-ZMJImageEditor_Tests-umbrella.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QinminiOS/ZMJImageEditor/HEAD/Example/Pods/Target Support Files/Pods-ZMJImageEditor_Tests/Pods-ZMJImageEditor_Tests-umbrella.h -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-ZMJImageEditor_Tests/Pods-ZMJImageEditor_Tests.debug.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QinminiOS/ZMJImageEditor/HEAD/Example/Pods/Target Support Files/Pods-ZMJImageEditor_Tests/Pods-ZMJImageEditor_Tests.debug.xcconfig -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-ZMJImageEditor_Tests/Pods-ZMJImageEditor_Tests.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QinminiOS/ZMJImageEditor/HEAD/Example/Pods/Target Support Files/Pods-ZMJImageEditor_Tests/Pods-ZMJImageEditor_Tests.modulemap -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-ZMJImageEditor_Tests/Pods-ZMJImageEditor_Tests.release.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QinminiOS/ZMJImageEditor/HEAD/Example/Pods/Target Support Files/Pods-ZMJImageEditor_Tests/Pods-ZMJImageEditor_Tests.release.xcconfig -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/XXNibBridge/XXNibBridge-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QinminiOS/ZMJImageEditor/HEAD/Example/Pods/Target Support Files/XXNibBridge/XXNibBridge-Info.plist -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/XXNibBridge/XXNibBridge-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QinminiOS/ZMJImageEditor/HEAD/Example/Pods/Target Support Files/XXNibBridge/XXNibBridge-dummy.m -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/XXNibBridge/XXNibBridge-prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QinminiOS/ZMJImageEditor/HEAD/Example/Pods/Target Support Files/XXNibBridge/XXNibBridge-prefix.pch -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/XXNibBridge/XXNibBridge-umbrella.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QinminiOS/ZMJImageEditor/HEAD/Example/Pods/Target Support Files/XXNibBridge/XXNibBridge-umbrella.h -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/XXNibBridge/XXNibBridge.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QinminiOS/ZMJImageEditor/HEAD/Example/Pods/Target Support Files/XXNibBridge/XXNibBridge.modulemap -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/XXNibBridge/XXNibBridge.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QinminiOS/ZMJImageEditor/HEAD/Example/Pods/Target Support Files/XXNibBridge/XXNibBridge.xcconfig -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/YYCache/YYCache-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QinminiOS/ZMJImageEditor/HEAD/Example/Pods/Target Support Files/YYCache/YYCache-Info.plist -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/YYCache/YYCache-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QinminiOS/ZMJImageEditor/HEAD/Example/Pods/Target Support Files/YYCache/YYCache-dummy.m -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/YYCache/YYCache-prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QinminiOS/ZMJImageEditor/HEAD/Example/Pods/Target Support Files/YYCache/YYCache-prefix.pch -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/YYCache/YYCache-umbrella.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QinminiOS/ZMJImageEditor/HEAD/Example/Pods/Target Support Files/YYCache/YYCache-umbrella.h -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/YYCache/YYCache.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QinminiOS/ZMJImageEditor/HEAD/Example/Pods/Target Support Files/YYCache/YYCache.modulemap -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/YYCache/YYCache.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QinminiOS/ZMJImageEditor/HEAD/Example/Pods/Target Support Files/YYCache/YYCache.xcconfig -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/YYCategories/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QinminiOS/ZMJImageEditor/HEAD/Example/Pods/Target Support Files/YYCategories/Info.plist -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/YYCategories/YYCategories-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QinminiOS/ZMJImageEditor/HEAD/Example/Pods/Target Support Files/YYCategories/YYCategories-Info.plist -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/YYCategories/YYCategories-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QinminiOS/ZMJImageEditor/HEAD/Example/Pods/Target Support Files/YYCategories/YYCategories-dummy.m -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/YYCategories/YYCategories-prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QinminiOS/ZMJImageEditor/HEAD/Example/Pods/Target Support Files/YYCategories/YYCategories-prefix.pch -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/YYCategories/YYCategories-umbrella.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QinminiOS/ZMJImageEditor/HEAD/Example/Pods/Target Support Files/YYCategories/YYCategories-umbrella.h -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/YYCategories/YYCategories.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QinminiOS/ZMJImageEditor/HEAD/Example/Pods/Target Support Files/YYCategories/YYCategories.modulemap -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/YYCategories/YYCategories.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QinminiOS/ZMJImageEditor/HEAD/Example/Pods/Target Support Files/YYCategories/YYCategories.xcconfig -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/YYImage/YYImage-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QinminiOS/ZMJImageEditor/HEAD/Example/Pods/Target Support Files/YYImage/YYImage-Info.plist -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/YYImage/YYImage-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QinminiOS/ZMJImageEditor/HEAD/Example/Pods/Target Support Files/YYImage/YYImage-dummy.m -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/YYImage/YYImage-prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QinminiOS/ZMJImageEditor/HEAD/Example/Pods/Target Support Files/YYImage/YYImage-prefix.pch -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/YYImage/YYImage-umbrella.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QinminiOS/ZMJImageEditor/HEAD/Example/Pods/Target Support Files/YYImage/YYImage-umbrella.h -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/YYImage/YYImage.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QinminiOS/ZMJImageEditor/HEAD/Example/Pods/Target Support Files/YYImage/YYImage.modulemap -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/YYImage/YYImage.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QinminiOS/ZMJImageEditor/HEAD/Example/Pods/Target Support Files/YYImage/YYImage.xcconfig -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/YYText/YYText-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QinminiOS/ZMJImageEditor/HEAD/Example/Pods/Target Support Files/YYText/YYText-Info.plist -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/YYText/YYText-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QinminiOS/ZMJImageEditor/HEAD/Example/Pods/Target Support Files/YYText/YYText-dummy.m -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/YYText/YYText-prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QinminiOS/ZMJImageEditor/HEAD/Example/Pods/Target Support Files/YYText/YYText-prefix.pch -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/YYText/YYText-umbrella.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QinminiOS/ZMJImageEditor/HEAD/Example/Pods/Target Support Files/YYText/YYText-umbrella.h -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/YYText/YYText.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QinminiOS/ZMJImageEditor/HEAD/Example/Pods/Target Support Files/YYText/YYText.modulemap -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/YYText/YYText.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QinminiOS/ZMJImageEditor/HEAD/Example/Pods/Target Support Files/YYText/YYText.xcconfig -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/YYWebImage/YYWebImage-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QinminiOS/ZMJImageEditor/HEAD/Example/Pods/Target Support Files/YYWebImage/YYWebImage-Info.plist -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/YYWebImage/YYWebImage-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QinminiOS/ZMJImageEditor/HEAD/Example/Pods/Target Support Files/YYWebImage/YYWebImage-dummy.m -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/YYWebImage/YYWebImage-prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QinminiOS/ZMJImageEditor/HEAD/Example/Pods/Target Support Files/YYWebImage/YYWebImage-prefix.pch -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/YYWebImage/YYWebImage-umbrella.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QinminiOS/ZMJImageEditor/HEAD/Example/Pods/Target Support Files/YYWebImage/YYWebImage-umbrella.h -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/YYWebImage/YYWebImage.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QinminiOS/ZMJImageEditor/HEAD/Example/Pods/Target Support Files/YYWebImage/YYWebImage.modulemap -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/YYWebImage/YYWebImage.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QinminiOS/ZMJImageEditor/HEAD/Example/Pods/Target Support Files/YYWebImage/YYWebImage.xcconfig -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/extobjc/extobjc-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QinminiOS/ZMJImageEditor/HEAD/Example/Pods/Target Support Files/extobjc/extobjc-Info.plist -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/extobjc/extobjc-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QinminiOS/ZMJImageEditor/HEAD/Example/Pods/Target Support Files/extobjc/extobjc-dummy.m -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/extobjc/extobjc-prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QinminiOS/ZMJImageEditor/HEAD/Example/Pods/Target Support Files/extobjc/extobjc-prefix.pch -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/extobjc/extobjc-umbrella.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QinminiOS/ZMJImageEditor/HEAD/Example/Pods/Target Support Files/extobjc/extobjc-umbrella.h -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/extobjc/extobjc.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QinminiOS/ZMJImageEditor/HEAD/Example/Pods/Target Support Files/extobjc/extobjc.modulemap -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/extobjc/extobjc.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QinminiOS/ZMJImageEditor/HEAD/Example/Pods/Target Support Files/extobjc/extobjc.xcconfig -------------------------------------------------------------------------------- /Example/Pods/XXNibBridge/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QinminiOS/ZMJImageEditor/HEAD/Example/Pods/XXNibBridge/LICENSE -------------------------------------------------------------------------------- /Example/Pods/XXNibBridge/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QinminiOS/ZMJImageEditor/HEAD/Example/Pods/XXNibBridge/README.md -------------------------------------------------------------------------------- /Example/Pods/XXNibBridge/XXNibBridge/XXNibBridge.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QinminiOS/ZMJImageEditor/HEAD/Example/Pods/XXNibBridge/XXNibBridge/XXNibBridge.h -------------------------------------------------------------------------------- /Example/Pods/XXNibBridge/XXNibBridge/XXNibBridge.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QinminiOS/ZMJImageEditor/HEAD/Example/Pods/XXNibBridge/XXNibBridge/XXNibBridge.m -------------------------------------------------------------------------------- /Example/Pods/XXNibBridge/XXNibBridge/XXNibConvention.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QinminiOS/ZMJImageEditor/HEAD/Example/Pods/XXNibBridge/XXNibBridge/XXNibConvention.h -------------------------------------------------------------------------------- /Example/Pods/XXNibBridge/XXNibBridge/XXNibConvention.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QinminiOS/ZMJImageEditor/HEAD/Example/Pods/XXNibBridge/XXNibBridge/XXNibConvention.m -------------------------------------------------------------------------------- /Example/Pods/YYCache/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QinminiOS/ZMJImageEditor/HEAD/Example/Pods/YYCache/LICENSE -------------------------------------------------------------------------------- /Example/Pods/YYCache/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QinminiOS/ZMJImageEditor/HEAD/Example/Pods/YYCache/README.md -------------------------------------------------------------------------------- /Example/Pods/YYCache/YYCache/YYCache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QinminiOS/ZMJImageEditor/HEAD/Example/Pods/YYCache/YYCache/YYCache.h -------------------------------------------------------------------------------- /Example/Pods/YYCache/YYCache/YYCache.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QinminiOS/ZMJImageEditor/HEAD/Example/Pods/YYCache/YYCache/YYCache.m -------------------------------------------------------------------------------- /Example/Pods/YYCache/YYCache/YYDiskCache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QinminiOS/ZMJImageEditor/HEAD/Example/Pods/YYCache/YYCache/YYDiskCache.h -------------------------------------------------------------------------------- /Example/Pods/YYCache/YYCache/YYDiskCache.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QinminiOS/ZMJImageEditor/HEAD/Example/Pods/YYCache/YYCache/YYDiskCache.m -------------------------------------------------------------------------------- /Example/Pods/YYCache/YYCache/YYKVStorage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QinminiOS/ZMJImageEditor/HEAD/Example/Pods/YYCache/YYCache/YYKVStorage.h -------------------------------------------------------------------------------- /Example/Pods/YYCache/YYCache/YYKVStorage.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QinminiOS/ZMJImageEditor/HEAD/Example/Pods/YYCache/YYCache/YYKVStorage.m -------------------------------------------------------------------------------- /Example/Pods/YYCache/YYCache/YYMemoryCache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QinminiOS/ZMJImageEditor/HEAD/Example/Pods/YYCache/YYCache/YYMemoryCache.h -------------------------------------------------------------------------------- /Example/Pods/YYCache/YYCache/YYMemoryCache.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QinminiOS/ZMJImageEditor/HEAD/Example/Pods/YYCache/YYCache/YYMemoryCache.m -------------------------------------------------------------------------------- /Example/Pods/YYCategories/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QinminiOS/ZMJImageEditor/HEAD/Example/Pods/YYCategories/LICENSE -------------------------------------------------------------------------------- /Example/Pods/YYCategories/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QinminiOS/ZMJImageEditor/HEAD/Example/Pods/YYCategories/README.md -------------------------------------------------------------------------------- /Example/Pods/YYCategories/YYCategories/Foundation/NSArray+YYAdd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QinminiOS/ZMJImageEditor/HEAD/Example/Pods/YYCategories/YYCategories/Foundation/NSArray+YYAdd.h -------------------------------------------------------------------------------- /Example/Pods/YYCategories/YYCategories/Foundation/NSArray+YYAdd.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QinminiOS/ZMJImageEditor/HEAD/Example/Pods/YYCategories/YYCategories/Foundation/NSArray+YYAdd.m -------------------------------------------------------------------------------- /Example/Pods/YYCategories/YYCategories/Foundation/NSBundle+YYAdd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QinminiOS/ZMJImageEditor/HEAD/Example/Pods/YYCategories/YYCategories/Foundation/NSBundle+YYAdd.h -------------------------------------------------------------------------------- /Example/Pods/YYCategories/YYCategories/Foundation/NSBundle+YYAdd.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QinminiOS/ZMJImageEditor/HEAD/Example/Pods/YYCategories/YYCategories/Foundation/NSBundle+YYAdd.m -------------------------------------------------------------------------------- /Example/Pods/YYCategories/YYCategories/Foundation/NSData+YYAdd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QinminiOS/ZMJImageEditor/HEAD/Example/Pods/YYCategories/YYCategories/Foundation/NSData+YYAdd.h -------------------------------------------------------------------------------- /Example/Pods/YYCategories/YYCategories/Foundation/NSData+YYAdd.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QinminiOS/ZMJImageEditor/HEAD/Example/Pods/YYCategories/YYCategories/Foundation/NSData+YYAdd.m -------------------------------------------------------------------------------- /Example/Pods/YYCategories/YYCategories/Foundation/NSDate+YYAdd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QinminiOS/ZMJImageEditor/HEAD/Example/Pods/YYCategories/YYCategories/Foundation/NSDate+YYAdd.h -------------------------------------------------------------------------------- /Example/Pods/YYCategories/YYCategories/Foundation/NSDate+YYAdd.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QinminiOS/ZMJImageEditor/HEAD/Example/Pods/YYCategories/YYCategories/Foundation/NSDate+YYAdd.m -------------------------------------------------------------------------------- /Example/Pods/YYCategories/YYCategories/Foundation/NSDictionary+YYAdd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QinminiOS/ZMJImageEditor/HEAD/Example/Pods/YYCategories/YYCategories/Foundation/NSDictionary+YYAdd.h -------------------------------------------------------------------------------- /Example/Pods/YYCategories/YYCategories/Foundation/NSDictionary+YYAdd.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QinminiOS/ZMJImageEditor/HEAD/Example/Pods/YYCategories/YYCategories/Foundation/NSDictionary+YYAdd.m -------------------------------------------------------------------------------- /Example/Pods/YYCategories/YYCategories/Foundation/NSKeyedUnarchiver+YYAdd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QinminiOS/ZMJImageEditor/HEAD/Example/Pods/YYCategories/YYCategories/Foundation/NSKeyedUnarchiver+YYAdd.h -------------------------------------------------------------------------------- /Example/Pods/YYCategories/YYCategories/Foundation/NSKeyedUnarchiver+YYAdd.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QinminiOS/ZMJImageEditor/HEAD/Example/Pods/YYCategories/YYCategories/Foundation/NSKeyedUnarchiver+YYAdd.m -------------------------------------------------------------------------------- /Example/Pods/YYCategories/YYCategories/Foundation/NSNotificationCenter+YYAdd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QinminiOS/ZMJImageEditor/HEAD/Example/Pods/YYCategories/YYCategories/Foundation/NSNotificationCenter+YYAdd.h -------------------------------------------------------------------------------- /Example/Pods/YYCategories/YYCategories/Foundation/NSNotificationCenter+YYAdd.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QinminiOS/ZMJImageEditor/HEAD/Example/Pods/YYCategories/YYCategories/Foundation/NSNotificationCenter+YYAdd.m -------------------------------------------------------------------------------- /Example/Pods/YYCategories/YYCategories/Foundation/NSNumber+YYAdd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QinminiOS/ZMJImageEditor/HEAD/Example/Pods/YYCategories/YYCategories/Foundation/NSNumber+YYAdd.h -------------------------------------------------------------------------------- /Example/Pods/YYCategories/YYCategories/Foundation/NSNumber+YYAdd.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QinminiOS/ZMJImageEditor/HEAD/Example/Pods/YYCategories/YYCategories/Foundation/NSNumber+YYAdd.m -------------------------------------------------------------------------------- /Example/Pods/YYCategories/YYCategories/Foundation/NSObject+YYAdd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QinminiOS/ZMJImageEditor/HEAD/Example/Pods/YYCategories/YYCategories/Foundation/NSObject+YYAdd.h -------------------------------------------------------------------------------- /Example/Pods/YYCategories/YYCategories/Foundation/NSObject+YYAdd.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QinminiOS/ZMJImageEditor/HEAD/Example/Pods/YYCategories/YYCategories/Foundation/NSObject+YYAdd.m -------------------------------------------------------------------------------- /Example/Pods/YYCategories/YYCategories/Foundation/NSObject+YYAddForARC.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QinminiOS/ZMJImageEditor/HEAD/Example/Pods/YYCategories/YYCategories/Foundation/NSObject+YYAddForARC.h -------------------------------------------------------------------------------- /Example/Pods/YYCategories/YYCategories/Foundation/NSObject+YYAddForARC.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QinminiOS/ZMJImageEditor/HEAD/Example/Pods/YYCategories/YYCategories/Foundation/NSObject+YYAddForARC.m -------------------------------------------------------------------------------- /Example/Pods/YYCategories/YYCategories/Foundation/NSObject+YYAddForKVO.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QinminiOS/ZMJImageEditor/HEAD/Example/Pods/YYCategories/YYCategories/Foundation/NSObject+YYAddForKVO.h -------------------------------------------------------------------------------- /Example/Pods/YYCategories/YYCategories/Foundation/NSObject+YYAddForKVO.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QinminiOS/ZMJImageEditor/HEAD/Example/Pods/YYCategories/YYCategories/Foundation/NSObject+YYAddForKVO.m -------------------------------------------------------------------------------- /Example/Pods/YYCategories/YYCategories/Foundation/NSString+YYAdd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QinminiOS/ZMJImageEditor/HEAD/Example/Pods/YYCategories/YYCategories/Foundation/NSString+YYAdd.h -------------------------------------------------------------------------------- /Example/Pods/YYCategories/YYCategories/Foundation/NSString+YYAdd.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QinminiOS/ZMJImageEditor/HEAD/Example/Pods/YYCategories/YYCategories/Foundation/NSString+YYAdd.m -------------------------------------------------------------------------------- /Example/Pods/YYCategories/YYCategories/Foundation/NSThread+YYAdd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QinminiOS/ZMJImageEditor/HEAD/Example/Pods/YYCategories/YYCategories/Foundation/NSThread+YYAdd.h -------------------------------------------------------------------------------- /Example/Pods/YYCategories/YYCategories/Foundation/NSThread+YYAdd.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QinminiOS/ZMJImageEditor/HEAD/Example/Pods/YYCategories/YYCategories/Foundation/NSThread+YYAdd.m -------------------------------------------------------------------------------- /Example/Pods/YYCategories/YYCategories/Foundation/NSTimer+YYAdd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QinminiOS/ZMJImageEditor/HEAD/Example/Pods/YYCategories/YYCategories/Foundation/NSTimer+YYAdd.h -------------------------------------------------------------------------------- /Example/Pods/YYCategories/YYCategories/Foundation/NSTimer+YYAdd.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QinminiOS/ZMJImageEditor/HEAD/Example/Pods/YYCategories/YYCategories/Foundation/NSTimer+YYAdd.m -------------------------------------------------------------------------------- /Example/Pods/YYCategories/YYCategories/Quartz/CALayer+YYAdd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QinminiOS/ZMJImageEditor/HEAD/Example/Pods/YYCategories/YYCategories/Quartz/CALayer+YYAdd.h -------------------------------------------------------------------------------- /Example/Pods/YYCategories/YYCategories/Quartz/CALayer+YYAdd.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QinminiOS/ZMJImageEditor/HEAD/Example/Pods/YYCategories/YYCategories/Quartz/CALayer+YYAdd.m -------------------------------------------------------------------------------- /Example/Pods/YYCategories/YYCategories/Quartz/YYCGUtilities.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QinminiOS/ZMJImageEditor/HEAD/Example/Pods/YYCategories/YYCategories/Quartz/YYCGUtilities.h -------------------------------------------------------------------------------- /Example/Pods/YYCategories/YYCategories/Quartz/YYCGUtilities.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QinminiOS/ZMJImageEditor/HEAD/Example/Pods/YYCategories/YYCategories/Quartz/YYCGUtilities.m -------------------------------------------------------------------------------- /Example/Pods/YYCategories/YYCategories/UIKit/UIApplication+YYAdd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QinminiOS/ZMJImageEditor/HEAD/Example/Pods/YYCategories/YYCategories/UIKit/UIApplication+YYAdd.h -------------------------------------------------------------------------------- /Example/Pods/YYCategories/YYCategories/UIKit/UIApplication+YYAdd.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QinminiOS/ZMJImageEditor/HEAD/Example/Pods/YYCategories/YYCategories/UIKit/UIApplication+YYAdd.m -------------------------------------------------------------------------------- /Example/Pods/YYCategories/YYCategories/UIKit/UIBarButtonItem+YYAdd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QinminiOS/ZMJImageEditor/HEAD/Example/Pods/YYCategories/YYCategories/UIKit/UIBarButtonItem+YYAdd.h -------------------------------------------------------------------------------- /Example/Pods/YYCategories/YYCategories/UIKit/UIBarButtonItem+YYAdd.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QinminiOS/ZMJImageEditor/HEAD/Example/Pods/YYCategories/YYCategories/UIKit/UIBarButtonItem+YYAdd.m -------------------------------------------------------------------------------- /Example/Pods/YYCategories/YYCategories/UIKit/UIBezierPath+YYAdd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QinminiOS/ZMJImageEditor/HEAD/Example/Pods/YYCategories/YYCategories/UIKit/UIBezierPath+YYAdd.h -------------------------------------------------------------------------------- /Example/Pods/YYCategories/YYCategories/UIKit/UIBezierPath+YYAdd.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QinminiOS/ZMJImageEditor/HEAD/Example/Pods/YYCategories/YYCategories/UIKit/UIBezierPath+YYAdd.m -------------------------------------------------------------------------------- /Example/Pods/YYCategories/YYCategories/UIKit/UIColor+YYAdd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QinminiOS/ZMJImageEditor/HEAD/Example/Pods/YYCategories/YYCategories/UIKit/UIColor+YYAdd.h -------------------------------------------------------------------------------- /Example/Pods/YYCategories/YYCategories/UIKit/UIColor+YYAdd.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QinminiOS/ZMJImageEditor/HEAD/Example/Pods/YYCategories/YYCategories/UIKit/UIColor+YYAdd.m -------------------------------------------------------------------------------- /Example/Pods/YYCategories/YYCategories/UIKit/UIControl+YYAdd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QinminiOS/ZMJImageEditor/HEAD/Example/Pods/YYCategories/YYCategories/UIKit/UIControl+YYAdd.h -------------------------------------------------------------------------------- /Example/Pods/YYCategories/YYCategories/UIKit/UIControl+YYAdd.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QinminiOS/ZMJImageEditor/HEAD/Example/Pods/YYCategories/YYCategories/UIKit/UIControl+YYAdd.m -------------------------------------------------------------------------------- /Example/Pods/YYCategories/YYCategories/UIKit/UIDevice+YYAdd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QinminiOS/ZMJImageEditor/HEAD/Example/Pods/YYCategories/YYCategories/UIKit/UIDevice+YYAdd.h -------------------------------------------------------------------------------- /Example/Pods/YYCategories/YYCategories/UIKit/UIDevice+YYAdd.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QinminiOS/ZMJImageEditor/HEAD/Example/Pods/YYCategories/YYCategories/UIKit/UIDevice+YYAdd.m -------------------------------------------------------------------------------- /Example/Pods/YYCategories/YYCategories/UIKit/UIFont+YYAdd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QinminiOS/ZMJImageEditor/HEAD/Example/Pods/YYCategories/YYCategories/UIKit/UIFont+YYAdd.h -------------------------------------------------------------------------------- /Example/Pods/YYCategories/YYCategories/UIKit/UIFont+YYAdd.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QinminiOS/ZMJImageEditor/HEAD/Example/Pods/YYCategories/YYCategories/UIKit/UIFont+YYAdd.m -------------------------------------------------------------------------------- /Example/Pods/YYCategories/YYCategories/UIKit/UIGestureRecognizer+YYAdd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QinminiOS/ZMJImageEditor/HEAD/Example/Pods/YYCategories/YYCategories/UIKit/UIGestureRecognizer+YYAdd.h -------------------------------------------------------------------------------- /Example/Pods/YYCategories/YYCategories/UIKit/UIGestureRecognizer+YYAdd.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QinminiOS/ZMJImageEditor/HEAD/Example/Pods/YYCategories/YYCategories/UIKit/UIGestureRecognizer+YYAdd.m -------------------------------------------------------------------------------- /Example/Pods/YYCategories/YYCategories/UIKit/UIImage+YYAdd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QinminiOS/ZMJImageEditor/HEAD/Example/Pods/YYCategories/YYCategories/UIKit/UIImage+YYAdd.h -------------------------------------------------------------------------------- /Example/Pods/YYCategories/YYCategories/UIKit/UIImage+YYAdd.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QinminiOS/ZMJImageEditor/HEAD/Example/Pods/YYCategories/YYCategories/UIKit/UIImage+YYAdd.m -------------------------------------------------------------------------------- /Example/Pods/YYCategories/YYCategories/UIKit/UIScreen+YYAdd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QinminiOS/ZMJImageEditor/HEAD/Example/Pods/YYCategories/YYCategories/UIKit/UIScreen+YYAdd.h -------------------------------------------------------------------------------- /Example/Pods/YYCategories/YYCategories/UIKit/UIScreen+YYAdd.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QinminiOS/ZMJImageEditor/HEAD/Example/Pods/YYCategories/YYCategories/UIKit/UIScreen+YYAdd.m -------------------------------------------------------------------------------- /Example/Pods/YYCategories/YYCategories/UIKit/UIScrollView+YYAdd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QinminiOS/ZMJImageEditor/HEAD/Example/Pods/YYCategories/YYCategories/UIKit/UIScrollView+YYAdd.h -------------------------------------------------------------------------------- /Example/Pods/YYCategories/YYCategories/UIKit/UIScrollView+YYAdd.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QinminiOS/ZMJImageEditor/HEAD/Example/Pods/YYCategories/YYCategories/UIKit/UIScrollView+YYAdd.m -------------------------------------------------------------------------------- /Example/Pods/YYCategories/YYCategories/UIKit/UITableView+YYAdd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QinminiOS/ZMJImageEditor/HEAD/Example/Pods/YYCategories/YYCategories/UIKit/UITableView+YYAdd.h -------------------------------------------------------------------------------- /Example/Pods/YYCategories/YYCategories/UIKit/UITableView+YYAdd.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QinminiOS/ZMJImageEditor/HEAD/Example/Pods/YYCategories/YYCategories/UIKit/UITableView+YYAdd.m -------------------------------------------------------------------------------- /Example/Pods/YYCategories/YYCategories/UIKit/UITextField+YYAdd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QinminiOS/ZMJImageEditor/HEAD/Example/Pods/YYCategories/YYCategories/UIKit/UITextField+YYAdd.h -------------------------------------------------------------------------------- /Example/Pods/YYCategories/YYCategories/UIKit/UITextField+YYAdd.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QinminiOS/ZMJImageEditor/HEAD/Example/Pods/YYCategories/YYCategories/UIKit/UITextField+YYAdd.m -------------------------------------------------------------------------------- /Example/Pods/YYCategories/YYCategories/UIKit/UIView+YYAdd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QinminiOS/ZMJImageEditor/HEAD/Example/Pods/YYCategories/YYCategories/UIKit/UIView+YYAdd.h -------------------------------------------------------------------------------- /Example/Pods/YYCategories/YYCategories/UIKit/UIView+YYAdd.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QinminiOS/ZMJImageEditor/HEAD/Example/Pods/YYCategories/YYCategories/UIKit/UIView+YYAdd.m -------------------------------------------------------------------------------- /Example/Pods/YYCategories/YYCategories/YYCategories.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QinminiOS/ZMJImageEditor/HEAD/Example/Pods/YYCategories/YYCategories/YYCategories.h -------------------------------------------------------------------------------- /Example/Pods/YYCategories/YYCategories/YYCategoriesMacro.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QinminiOS/ZMJImageEditor/HEAD/Example/Pods/YYCategories/YYCategories/YYCategoriesMacro.h -------------------------------------------------------------------------------- /Example/Pods/YYImage/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QinminiOS/ZMJImageEditor/HEAD/Example/Pods/YYImage/LICENSE -------------------------------------------------------------------------------- /Example/Pods/YYImage/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QinminiOS/ZMJImageEditor/HEAD/Example/Pods/YYImage/README.md -------------------------------------------------------------------------------- /Example/Pods/YYImage/YYImage/YYAnimatedImageView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QinminiOS/ZMJImageEditor/HEAD/Example/Pods/YYImage/YYImage/YYAnimatedImageView.h -------------------------------------------------------------------------------- /Example/Pods/YYImage/YYImage/YYAnimatedImageView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QinminiOS/ZMJImageEditor/HEAD/Example/Pods/YYImage/YYImage/YYAnimatedImageView.m -------------------------------------------------------------------------------- /Example/Pods/YYImage/YYImage/YYFrameImage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QinminiOS/ZMJImageEditor/HEAD/Example/Pods/YYImage/YYImage/YYFrameImage.h -------------------------------------------------------------------------------- /Example/Pods/YYImage/YYImage/YYFrameImage.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QinminiOS/ZMJImageEditor/HEAD/Example/Pods/YYImage/YYImage/YYFrameImage.m -------------------------------------------------------------------------------- /Example/Pods/YYImage/YYImage/YYImage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QinminiOS/ZMJImageEditor/HEAD/Example/Pods/YYImage/YYImage/YYImage.h -------------------------------------------------------------------------------- /Example/Pods/YYImage/YYImage/YYImage.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QinminiOS/ZMJImageEditor/HEAD/Example/Pods/YYImage/YYImage/YYImage.m -------------------------------------------------------------------------------- /Example/Pods/YYImage/YYImage/YYImageCoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QinminiOS/ZMJImageEditor/HEAD/Example/Pods/YYImage/YYImage/YYImageCoder.h -------------------------------------------------------------------------------- /Example/Pods/YYImage/YYImage/YYImageCoder.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QinminiOS/ZMJImageEditor/HEAD/Example/Pods/YYImage/YYImage/YYImageCoder.m -------------------------------------------------------------------------------- /Example/Pods/YYImage/YYImage/YYSpriteSheetImage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QinminiOS/ZMJImageEditor/HEAD/Example/Pods/YYImage/YYImage/YYSpriteSheetImage.h -------------------------------------------------------------------------------- /Example/Pods/YYImage/YYImage/YYSpriteSheetImage.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QinminiOS/ZMJImageEditor/HEAD/Example/Pods/YYImage/YYImage/YYSpriteSheetImage.m -------------------------------------------------------------------------------- /Example/Pods/YYText/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QinminiOS/ZMJImageEditor/HEAD/Example/Pods/YYText/LICENSE -------------------------------------------------------------------------------- /Example/Pods/YYText/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QinminiOS/ZMJImageEditor/HEAD/Example/Pods/YYText/README.md -------------------------------------------------------------------------------- /Example/Pods/YYText/YYText/Component/YYTextContainerView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QinminiOS/ZMJImageEditor/HEAD/Example/Pods/YYText/YYText/Component/YYTextContainerView.h -------------------------------------------------------------------------------- /Example/Pods/YYText/YYText/Component/YYTextContainerView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QinminiOS/ZMJImageEditor/HEAD/Example/Pods/YYText/YYText/Component/YYTextContainerView.m -------------------------------------------------------------------------------- /Example/Pods/YYText/YYText/Component/YYTextDebugOption.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QinminiOS/ZMJImageEditor/HEAD/Example/Pods/YYText/YYText/Component/YYTextDebugOption.h -------------------------------------------------------------------------------- /Example/Pods/YYText/YYText/Component/YYTextDebugOption.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QinminiOS/ZMJImageEditor/HEAD/Example/Pods/YYText/YYText/Component/YYTextDebugOption.m -------------------------------------------------------------------------------- /Example/Pods/YYText/YYText/Component/YYTextEffectWindow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QinminiOS/ZMJImageEditor/HEAD/Example/Pods/YYText/YYText/Component/YYTextEffectWindow.h -------------------------------------------------------------------------------- /Example/Pods/YYText/YYText/Component/YYTextEffectWindow.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QinminiOS/ZMJImageEditor/HEAD/Example/Pods/YYText/YYText/Component/YYTextEffectWindow.m -------------------------------------------------------------------------------- /Example/Pods/YYText/YYText/Component/YYTextInput.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QinminiOS/ZMJImageEditor/HEAD/Example/Pods/YYText/YYText/Component/YYTextInput.h -------------------------------------------------------------------------------- /Example/Pods/YYText/YYText/Component/YYTextInput.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QinminiOS/ZMJImageEditor/HEAD/Example/Pods/YYText/YYText/Component/YYTextInput.m -------------------------------------------------------------------------------- /Example/Pods/YYText/YYText/Component/YYTextKeyboardManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QinminiOS/ZMJImageEditor/HEAD/Example/Pods/YYText/YYText/Component/YYTextKeyboardManager.h -------------------------------------------------------------------------------- /Example/Pods/YYText/YYText/Component/YYTextKeyboardManager.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QinminiOS/ZMJImageEditor/HEAD/Example/Pods/YYText/YYText/Component/YYTextKeyboardManager.m -------------------------------------------------------------------------------- /Example/Pods/YYText/YYText/Component/YYTextLayout.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QinminiOS/ZMJImageEditor/HEAD/Example/Pods/YYText/YYText/Component/YYTextLayout.h -------------------------------------------------------------------------------- /Example/Pods/YYText/YYText/Component/YYTextLayout.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QinminiOS/ZMJImageEditor/HEAD/Example/Pods/YYText/YYText/Component/YYTextLayout.m -------------------------------------------------------------------------------- /Example/Pods/YYText/YYText/Component/YYTextLine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QinminiOS/ZMJImageEditor/HEAD/Example/Pods/YYText/YYText/Component/YYTextLine.h -------------------------------------------------------------------------------- /Example/Pods/YYText/YYText/Component/YYTextLine.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QinminiOS/ZMJImageEditor/HEAD/Example/Pods/YYText/YYText/Component/YYTextLine.m -------------------------------------------------------------------------------- /Example/Pods/YYText/YYText/Component/YYTextMagnifier.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QinminiOS/ZMJImageEditor/HEAD/Example/Pods/YYText/YYText/Component/YYTextMagnifier.h -------------------------------------------------------------------------------- /Example/Pods/YYText/YYText/Component/YYTextMagnifier.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QinminiOS/ZMJImageEditor/HEAD/Example/Pods/YYText/YYText/Component/YYTextMagnifier.m -------------------------------------------------------------------------------- /Example/Pods/YYText/YYText/Component/YYTextSelectionView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QinminiOS/ZMJImageEditor/HEAD/Example/Pods/YYText/YYText/Component/YYTextSelectionView.h -------------------------------------------------------------------------------- /Example/Pods/YYText/YYText/Component/YYTextSelectionView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QinminiOS/ZMJImageEditor/HEAD/Example/Pods/YYText/YYText/Component/YYTextSelectionView.m -------------------------------------------------------------------------------- /Example/Pods/YYText/YYText/String/YYTextArchiver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QinminiOS/ZMJImageEditor/HEAD/Example/Pods/YYText/YYText/String/YYTextArchiver.h -------------------------------------------------------------------------------- /Example/Pods/YYText/YYText/String/YYTextArchiver.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QinminiOS/ZMJImageEditor/HEAD/Example/Pods/YYText/YYText/String/YYTextArchiver.m -------------------------------------------------------------------------------- /Example/Pods/YYText/YYText/String/YYTextAttribute.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QinminiOS/ZMJImageEditor/HEAD/Example/Pods/YYText/YYText/String/YYTextAttribute.h -------------------------------------------------------------------------------- /Example/Pods/YYText/YYText/String/YYTextAttribute.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QinminiOS/ZMJImageEditor/HEAD/Example/Pods/YYText/YYText/String/YYTextAttribute.m -------------------------------------------------------------------------------- /Example/Pods/YYText/YYText/String/YYTextParser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QinminiOS/ZMJImageEditor/HEAD/Example/Pods/YYText/YYText/String/YYTextParser.h -------------------------------------------------------------------------------- /Example/Pods/YYText/YYText/String/YYTextParser.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QinminiOS/ZMJImageEditor/HEAD/Example/Pods/YYText/YYText/String/YYTextParser.m -------------------------------------------------------------------------------- /Example/Pods/YYText/YYText/String/YYTextRubyAnnotation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QinminiOS/ZMJImageEditor/HEAD/Example/Pods/YYText/YYText/String/YYTextRubyAnnotation.h -------------------------------------------------------------------------------- /Example/Pods/YYText/YYText/String/YYTextRubyAnnotation.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QinminiOS/ZMJImageEditor/HEAD/Example/Pods/YYText/YYText/String/YYTextRubyAnnotation.m -------------------------------------------------------------------------------- /Example/Pods/YYText/YYText/String/YYTextRunDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QinminiOS/ZMJImageEditor/HEAD/Example/Pods/YYText/YYText/String/YYTextRunDelegate.h -------------------------------------------------------------------------------- /Example/Pods/YYText/YYText/String/YYTextRunDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QinminiOS/ZMJImageEditor/HEAD/Example/Pods/YYText/YYText/String/YYTextRunDelegate.m -------------------------------------------------------------------------------- /Example/Pods/YYText/YYText/Utility/NSAttributedString+YYText.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QinminiOS/ZMJImageEditor/HEAD/Example/Pods/YYText/YYText/Utility/NSAttributedString+YYText.h -------------------------------------------------------------------------------- /Example/Pods/YYText/YYText/Utility/NSAttributedString+YYText.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QinminiOS/ZMJImageEditor/HEAD/Example/Pods/YYText/YYText/Utility/NSAttributedString+YYText.m -------------------------------------------------------------------------------- /Example/Pods/YYText/YYText/Utility/NSParagraphStyle+YYText.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QinminiOS/ZMJImageEditor/HEAD/Example/Pods/YYText/YYText/Utility/NSParagraphStyle+YYText.h -------------------------------------------------------------------------------- /Example/Pods/YYText/YYText/Utility/NSParagraphStyle+YYText.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QinminiOS/ZMJImageEditor/HEAD/Example/Pods/YYText/YYText/Utility/NSParagraphStyle+YYText.m -------------------------------------------------------------------------------- /Example/Pods/YYText/YYText/Utility/UIPasteboard+YYText.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QinminiOS/ZMJImageEditor/HEAD/Example/Pods/YYText/YYText/Utility/UIPasteboard+YYText.h -------------------------------------------------------------------------------- /Example/Pods/YYText/YYText/Utility/UIPasteboard+YYText.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QinminiOS/ZMJImageEditor/HEAD/Example/Pods/YYText/YYText/Utility/UIPasteboard+YYText.m -------------------------------------------------------------------------------- /Example/Pods/YYText/YYText/Utility/UIView+YYText.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QinminiOS/ZMJImageEditor/HEAD/Example/Pods/YYText/YYText/Utility/UIView+YYText.h -------------------------------------------------------------------------------- /Example/Pods/YYText/YYText/Utility/UIView+YYText.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QinminiOS/ZMJImageEditor/HEAD/Example/Pods/YYText/YYText/Utility/UIView+YYText.m -------------------------------------------------------------------------------- /Example/Pods/YYText/YYText/Utility/YYTextAsyncLayer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QinminiOS/ZMJImageEditor/HEAD/Example/Pods/YYText/YYText/Utility/YYTextAsyncLayer.h -------------------------------------------------------------------------------- /Example/Pods/YYText/YYText/Utility/YYTextAsyncLayer.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QinminiOS/ZMJImageEditor/HEAD/Example/Pods/YYText/YYText/Utility/YYTextAsyncLayer.m -------------------------------------------------------------------------------- /Example/Pods/YYText/YYText/Utility/YYTextTransaction.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QinminiOS/ZMJImageEditor/HEAD/Example/Pods/YYText/YYText/Utility/YYTextTransaction.h -------------------------------------------------------------------------------- /Example/Pods/YYText/YYText/Utility/YYTextTransaction.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QinminiOS/ZMJImageEditor/HEAD/Example/Pods/YYText/YYText/Utility/YYTextTransaction.m -------------------------------------------------------------------------------- /Example/Pods/YYText/YYText/Utility/YYTextUtilities.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QinminiOS/ZMJImageEditor/HEAD/Example/Pods/YYText/YYText/Utility/YYTextUtilities.h -------------------------------------------------------------------------------- /Example/Pods/YYText/YYText/Utility/YYTextUtilities.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QinminiOS/ZMJImageEditor/HEAD/Example/Pods/YYText/YYText/Utility/YYTextUtilities.m -------------------------------------------------------------------------------- /Example/Pods/YYText/YYText/Utility/YYTextWeakProxy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QinminiOS/ZMJImageEditor/HEAD/Example/Pods/YYText/YYText/Utility/YYTextWeakProxy.h -------------------------------------------------------------------------------- /Example/Pods/YYText/YYText/Utility/YYTextWeakProxy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QinminiOS/ZMJImageEditor/HEAD/Example/Pods/YYText/YYText/Utility/YYTextWeakProxy.m -------------------------------------------------------------------------------- /Example/Pods/YYText/YYText/YYLabel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QinminiOS/ZMJImageEditor/HEAD/Example/Pods/YYText/YYText/YYLabel.h -------------------------------------------------------------------------------- /Example/Pods/YYText/YYText/YYLabel.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QinminiOS/ZMJImageEditor/HEAD/Example/Pods/YYText/YYText/YYLabel.m -------------------------------------------------------------------------------- /Example/Pods/YYText/YYText/YYText.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QinminiOS/ZMJImageEditor/HEAD/Example/Pods/YYText/YYText/YYText.h -------------------------------------------------------------------------------- /Example/Pods/YYText/YYText/YYTextView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QinminiOS/ZMJImageEditor/HEAD/Example/Pods/YYText/YYText/YYTextView.h -------------------------------------------------------------------------------- /Example/Pods/YYText/YYText/YYTextView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QinminiOS/ZMJImageEditor/HEAD/Example/Pods/YYText/YYText/YYTextView.m -------------------------------------------------------------------------------- /Example/Pods/YYWebImage/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QinminiOS/ZMJImageEditor/HEAD/Example/Pods/YYWebImage/LICENSE -------------------------------------------------------------------------------- /Example/Pods/YYWebImage/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QinminiOS/ZMJImageEditor/HEAD/Example/Pods/YYWebImage/README.md -------------------------------------------------------------------------------- /Example/Pods/YYWebImage/YYWebImage/Categories/CALayer+YYWebImage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QinminiOS/ZMJImageEditor/HEAD/Example/Pods/YYWebImage/YYWebImage/Categories/CALayer+YYWebImage.h -------------------------------------------------------------------------------- /Example/Pods/YYWebImage/YYWebImage/Categories/CALayer+YYWebImage.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QinminiOS/ZMJImageEditor/HEAD/Example/Pods/YYWebImage/YYWebImage/Categories/CALayer+YYWebImage.m -------------------------------------------------------------------------------- /Example/Pods/YYWebImage/YYWebImage/Categories/MKAnnotationView+YYWebImage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QinminiOS/ZMJImageEditor/HEAD/Example/Pods/YYWebImage/YYWebImage/Categories/MKAnnotationView+YYWebImage.h -------------------------------------------------------------------------------- /Example/Pods/YYWebImage/YYWebImage/Categories/MKAnnotationView+YYWebImage.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QinminiOS/ZMJImageEditor/HEAD/Example/Pods/YYWebImage/YYWebImage/Categories/MKAnnotationView+YYWebImage.m -------------------------------------------------------------------------------- /Example/Pods/YYWebImage/YYWebImage/Categories/UIButton+YYWebImage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QinminiOS/ZMJImageEditor/HEAD/Example/Pods/YYWebImage/YYWebImage/Categories/UIButton+YYWebImage.h -------------------------------------------------------------------------------- /Example/Pods/YYWebImage/YYWebImage/Categories/UIButton+YYWebImage.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QinminiOS/ZMJImageEditor/HEAD/Example/Pods/YYWebImage/YYWebImage/Categories/UIButton+YYWebImage.m -------------------------------------------------------------------------------- /Example/Pods/YYWebImage/YYWebImage/Categories/UIImage+YYWebImage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QinminiOS/ZMJImageEditor/HEAD/Example/Pods/YYWebImage/YYWebImage/Categories/UIImage+YYWebImage.h -------------------------------------------------------------------------------- /Example/Pods/YYWebImage/YYWebImage/Categories/UIImage+YYWebImage.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QinminiOS/ZMJImageEditor/HEAD/Example/Pods/YYWebImage/YYWebImage/Categories/UIImage+YYWebImage.m -------------------------------------------------------------------------------- /Example/Pods/YYWebImage/YYWebImage/Categories/UIImageView+YYWebImage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QinminiOS/ZMJImageEditor/HEAD/Example/Pods/YYWebImage/YYWebImage/Categories/UIImageView+YYWebImage.h -------------------------------------------------------------------------------- /Example/Pods/YYWebImage/YYWebImage/Categories/UIImageView+YYWebImage.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QinminiOS/ZMJImageEditor/HEAD/Example/Pods/YYWebImage/YYWebImage/Categories/UIImageView+YYWebImage.m -------------------------------------------------------------------------------- /Example/Pods/YYWebImage/YYWebImage/Categories/_YYWebImageSetter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QinminiOS/ZMJImageEditor/HEAD/Example/Pods/YYWebImage/YYWebImage/Categories/_YYWebImageSetter.h -------------------------------------------------------------------------------- /Example/Pods/YYWebImage/YYWebImage/Categories/_YYWebImageSetter.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QinminiOS/ZMJImageEditor/HEAD/Example/Pods/YYWebImage/YYWebImage/Categories/_YYWebImageSetter.m -------------------------------------------------------------------------------- /Example/Pods/YYWebImage/YYWebImage/YYImageCache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QinminiOS/ZMJImageEditor/HEAD/Example/Pods/YYWebImage/YYWebImage/YYImageCache.h -------------------------------------------------------------------------------- /Example/Pods/YYWebImage/YYWebImage/YYImageCache.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QinminiOS/ZMJImageEditor/HEAD/Example/Pods/YYWebImage/YYWebImage/YYImageCache.m -------------------------------------------------------------------------------- /Example/Pods/YYWebImage/YYWebImage/YYWebImage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QinminiOS/ZMJImageEditor/HEAD/Example/Pods/YYWebImage/YYWebImage/YYWebImage.h -------------------------------------------------------------------------------- /Example/Pods/YYWebImage/YYWebImage/YYWebImageManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QinminiOS/ZMJImageEditor/HEAD/Example/Pods/YYWebImage/YYWebImage/YYWebImageManager.h -------------------------------------------------------------------------------- /Example/Pods/YYWebImage/YYWebImage/YYWebImageManager.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QinminiOS/ZMJImageEditor/HEAD/Example/Pods/YYWebImage/YYWebImage/YYWebImageManager.m -------------------------------------------------------------------------------- /Example/Pods/YYWebImage/YYWebImage/YYWebImageOperation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QinminiOS/ZMJImageEditor/HEAD/Example/Pods/YYWebImage/YYWebImage/YYWebImageOperation.h -------------------------------------------------------------------------------- /Example/Pods/YYWebImage/YYWebImage/YYWebImageOperation.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QinminiOS/ZMJImageEditor/HEAD/Example/Pods/YYWebImage/YYWebImage/YYWebImageOperation.m -------------------------------------------------------------------------------- /Example/Pods/extobjc/Classes/EXTobjc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QinminiOS/ZMJImageEditor/HEAD/Example/Pods/extobjc/Classes/EXTobjc.h -------------------------------------------------------------------------------- /Example/Pods/extobjc/Classes/Extensions/NSInvocation+EXT.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QinminiOS/ZMJImageEditor/HEAD/Example/Pods/extobjc/Classes/Extensions/NSInvocation+EXT.h -------------------------------------------------------------------------------- /Example/Pods/extobjc/Classes/Extensions/NSInvocation+EXT.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QinminiOS/ZMJImageEditor/HEAD/Example/Pods/extobjc/Classes/Extensions/NSInvocation+EXT.m -------------------------------------------------------------------------------- /Example/Pods/extobjc/Classes/Extensions/NSMethodSignature+EXT.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QinminiOS/ZMJImageEditor/HEAD/Example/Pods/extobjc/Classes/Extensions/NSMethodSignature+EXT.h -------------------------------------------------------------------------------- /Example/Pods/extobjc/Classes/Extensions/NSMethodSignature+EXT.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QinminiOS/ZMJImageEditor/HEAD/Example/Pods/extobjc/Classes/Extensions/NSMethodSignature+EXT.m -------------------------------------------------------------------------------- /Example/Pods/extobjc/Classes/Modules/EXTADT.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QinminiOS/ZMJImageEditor/HEAD/Example/Pods/extobjc/Classes/Modules/EXTADT.h -------------------------------------------------------------------------------- /Example/Pods/extobjc/Classes/Modules/EXTADT.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QinminiOS/ZMJImageEditor/HEAD/Example/Pods/extobjc/Classes/Modules/EXTADT.m -------------------------------------------------------------------------------- /Example/Pods/extobjc/Classes/Modules/EXTConcreteProtocol.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QinminiOS/ZMJImageEditor/HEAD/Example/Pods/extobjc/Classes/Modules/EXTConcreteProtocol.h -------------------------------------------------------------------------------- /Example/Pods/extobjc/Classes/Modules/EXTConcreteProtocol.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QinminiOS/ZMJImageEditor/HEAD/Example/Pods/extobjc/Classes/Modules/EXTConcreteProtocol.m -------------------------------------------------------------------------------- /Example/Pods/extobjc/Classes/Modules/EXTCoroutine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QinminiOS/ZMJImageEditor/HEAD/Example/Pods/extobjc/Classes/Modules/EXTCoroutine.h -------------------------------------------------------------------------------- /Example/Pods/extobjc/Classes/Modules/EXTKeyPathCoding.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QinminiOS/ZMJImageEditor/HEAD/Example/Pods/extobjc/Classes/Modules/EXTKeyPathCoding.h -------------------------------------------------------------------------------- /Example/Pods/extobjc/Classes/Modules/EXTNil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QinminiOS/ZMJImageEditor/HEAD/Example/Pods/extobjc/Classes/Modules/EXTNil.h -------------------------------------------------------------------------------- /Example/Pods/extobjc/Classes/Modules/EXTNil.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QinminiOS/ZMJImageEditor/HEAD/Example/Pods/extobjc/Classes/Modules/EXTNil.m -------------------------------------------------------------------------------- /Example/Pods/extobjc/Classes/Modules/EXTRuntimeExtensions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QinminiOS/ZMJImageEditor/HEAD/Example/Pods/extobjc/Classes/Modules/EXTRuntimeExtensions.h -------------------------------------------------------------------------------- /Example/Pods/extobjc/Classes/Modules/EXTRuntimeExtensions.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QinminiOS/ZMJImageEditor/HEAD/Example/Pods/extobjc/Classes/Modules/EXTRuntimeExtensions.m -------------------------------------------------------------------------------- /Example/Pods/extobjc/Classes/Modules/EXTSafeCategory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QinminiOS/ZMJImageEditor/HEAD/Example/Pods/extobjc/Classes/Modules/EXTSafeCategory.h -------------------------------------------------------------------------------- /Example/Pods/extobjc/Classes/Modules/EXTSafeCategory.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QinminiOS/ZMJImageEditor/HEAD/Example/Pods/extobjc/Classes/Modules/EXTSafeCategory.m -------------------------------------------------------------------------------- /Example/Pods/extobjc/Classes/Modules/EXTScope.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QinminiOS/ZMJImageEditor/HEAD/Example/Pods/extobjc/Classes/Modules/EXTScope.h -------------------------------------------------------------------------------- /Example/Pods/extobjc/Classes/Modules/EXTScope.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QinminiOS/ZMJImageEditor/HEAD/Example/Pods/extobjc/Classes/Modules/EXTScope.m -------------------------------------------------------------------------------- /Example/Pods/extobjc/Classes/Modules/EXTSelectorChecking.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QinminiOS/ZMJImageEditor/HEAD/Example/Pods/extobjc/Classes/Modules/EXTSelectorChecking.h -------------------------------------------------------------------------------- /Example/Pods/extobjc/Classes/Modules/EXTSelectorChecking.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QinminiOS/ZMJImageEditor/HEAD/Example/Pods/extobjc/Classes/Modules/EXTSelectorChecking.m -------------------------------------------------------------------------------- /Example/Pods/extobjc/Classes/Modules/EXTSynthesize.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QinminiOS/ZMJImageEditor/HEAD/Example/Pods/extobjc/Classes/Modules/EXTSynthesize.h -------------------------------------------------------------------------------- /Example/Pods/extobjc/Classes/metamacros.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QinminiOS/ZMJImageEditor/HEAD/Example/Pods/extobjc/Classes/metamacros.h -------------------------------------------------------------------------------- /Example/Pods/extobjc/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QinminiOS/ZMJImageEditor/HEAD/Example/Pods/extobjc/LICENSE -------------------------------------------------------------------------------- /Example/Pods/extobjc/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QinminiOS/ZMJImageEditor/HEAD/Example/Pods/extobjc/README.md -------------------------------------------------------------------------------- /Example/Tests/Tests-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QinminiOS/ZMJImageEditor/HEAD/Example/Tests/Tests-Info.plist -------------------------------------------------------------------------------- /Example/Tests/Tests-Prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QinminiOS/ZMJImageEditor/HEAD/Example/Tests/Tests-Prefix.pch -------------------------------------------------------------------------------- /Example/Tests/Tests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QinminiOS/ZMJImageEditor/HEAD/Example/Tests/Tests.m -------------------------------------------------------------------------------- /Example/Tests/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /Example/Tests/zh-Hans.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /Example/ZMJImageEditor.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QinminiOS/ZMJImageEditor/HEAD/Example/ZMJImageEditor.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Example/ZMJImageEditor.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QinminiOS/ZMJImageEditor/HEAD/Example/ZMJImageEditor.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Example/ZMJImageEditor.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QinminiOS/ZMJImageEditor/HEAD/Example/ZMJImageEditor.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /Example/ZMJImageEditor.xcodeproj/project.xcworkspace/xcuserdata/qinmin.xcuserdatad/UserInterfaceState.xcuserstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QinminiOS/ZMJImageEditor/HEAD/Example/ZMJImageEditor.xcodeproj/project.xcworkspace/xcuserdata/qinmin.xcuserdatad/UserInterfaceState.xcuserstate -------------------------------------------------------------------------------- /Example/ZMJImageEditor.xcodeproj/xcshareddata/xcschemes/ZMJImageEditor-Example.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QinminiOS/ZMJImageEditor/HEAD/Example/ZMJImageEditor.xcodeproj/xcshareddata/xcschemes/ZMJImageEditor-Example.xcscheme -------------------------------------------------------------------------------- /Example/ZMJImageEditor.xcodeproj/xcuserdata/guiminqin.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QinminiOS/ZMJImageEditor/HEAD/Example/ZMJImageEditor.xcodeproj/xcuserdata/guiminqin.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /Example/ZMJImageEditor.xcodeproj/xcuserdata/qinmin.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QinminiOS/ZMJImageEditor/HEAD/Example/ZMJImageEditor.xcodeproj/xcuserdata/qinmin.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /Example/ZMJImageEditor.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QinminiOS/ZMJImageEditor/HEAD/Example/ZMJImageEditor.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Example/ZMJImageEditor.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QinminiOS/ZMJImageEditor/HEAD/Example/ZMJImageEditor.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /Example/ZMJImageEditor.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QinminiOS/ZMJImageEditor/HEAD/Example/ZMJImageEditor.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings -------------------------------------------------------------------------------- /Example/ZMJImageEditor.xcworkspace/xcuserdata/guiminqin.xcuserdatad/UserInterfaceState.xcuserstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QinminiOS/ZMJImageEditor/HEAD/Example/ZMJImageEditor.xcworkspace/xcuserdata/guiminqin.xcuserdatad/UserInterfaceState.xcuserstate -------------------------------------------------------------------------------- /Example/ZMJImageEditor.xcworkspace/xcuserdata/guiminqin.xcuserdatad/WorkspaceSettings.xcsettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QinminiOS/ZMJImageEditor/HEAD/Example/ZMJImageEditor.xcworkspace/xcuserdata/guiminqin.xcuserdatad/WorkspaceSettings.xcsettings -------------------------------------------------------------------------------- /Example/ZMJImageEditor.xcworkspace/xcuserdata/guiminqin.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QinminiOS/ZMJImageEditor/HEAD/Example/ZMJImageEditor.xcworkspace/xcuserdata/guiminqin.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist -------------------------------------------------------------------------------- /Example/ZMJImageEditor.xcworkspace/xcuserdata/qinmin.xcuserdatad/UserInterfaceState.xcuserstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QinminiOS/ZMJImageEditor/HEAD/Example/ZMJImageEditor.xcworkspace/xcuserdata/qinmin.xcuserdatad/UserInterfaceState.xcuserstate -------------------------------------------------------------------------------- /Example/ZMJImageEditor.xcworkspace/xcuserdata/qinmin.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QinminiOS/ZMJImageEditor/HEAD/Example/ZMJImageEditor.xcworkspace/xcuserdata/qinmin.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist -------------------------------------------------------------------------------- /Example/ZMJImageEditor/Base.lproj/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QinminiOS/ZMJImageEditor/HEAD/Example/ZMJImageEditor/Base.lproj/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /Example/ZMJImageEditor/Base.lproj/Base.lproj/Main.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QinminiOS/ZMJImageEditor/HEAD/Example/ZMJImageEditor/Base.lproj/Base.lproj/Main.strings -------------------------------------------------------------------------------- /Example/ZMJImageEditor/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QinminiOS/ZMJImageEditor/HEAD/Example/ZMJImageEditor/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /Example/ZMJImageEditor/Base.lproj/en.lproj/Main.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QinminiOS/ZMJImageEditor/HEAD/Example/ZMJImageEditor/Base.lproj/en.lproj/Main.strings -------------------------------------------------------------------------------- /Example/ZMJImageEditor/Base.lproj/zh-Hans.lproj/Main.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QinminiOS/ZMJImageEditor/HEAD/Example/ZMJImageEditor/Base.lproj/zh-Hans.lproj/Main.strings -------------------------------------------------------------------------------- /Example/ZMJImageEditor/Images.xcassets/1.imageset/1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QinminiOS/ZMJImageEditor/HEAD/Example/ZMJImageEditor/Images.xcassets/1.imageset/1.jpg -------------------------------------------------------------------------------- /Example/ZMJImageEditor/Images.xcassets/1.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QinminiOS/ZMJImageEditor/HEAD/Example/ZMJImageEditor/Images.xcassets/1.imageset/Contents.json -------------------------------------------------------------------------------- /Example/ZMJImageEditor/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QinminiOS/ZMJImageEditor/HEAD/Example/ZMJImageEditor/Images.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /Example/ZMJImageEditor/Images.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QinminiOS/ZMJImageEditor/HEAD/Example/ZMJImageEditor/Images.xcassets/Contents.json -------------------------------------------------------------------------------- /Example/ZMJImageEditor/Images.xcassets/bg.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QinminiOS/ZMJImageEditor/HEAD/Example/ZMJImageEditor/Images.xcassets/bg.imageset/Contents.json -------------------------------------------------------------------------------- /Example/ZMJImageEditor/Images.xcassets/bg.imageset/IMG_1805.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QinminiOS/ZMJImageEditor/HEAD/Example/ZMJImageEditor/Images.xcassets/bg.imageset/IMG_1805.jpg -------------------------------------------------------------------------------- /Example/ZMJImageEditor/Images.xcassets/p1.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QinminiOS/ZMJImageEditor/HEAD/Example/ZMJImageEditor/Images.xcassets/p1.imageset/Contents.json -------------------------------------------------------------------------------- /Example/ZMJImageEditor/Images.xcassets/p1.imageset/githubicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QinminiOS/ZMJImageEditor/HEAD/Example/ZMJImageEditor/Images.xcassets/p1.imageset/githubicon.png -------------------------------------------------------------------------------- /Example/ZMJImageEditor/Images.xcassets/p2.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QinminiOS/ZMJImageEditor/HEAD/Example/ZMJImageEditor/Images.xcassets/p2.imageset/Contents.json -------------------------------------------------------------------------------- /Example/ZMJImageEditor/Images.xcassets/p2.imageset/photo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QinminiOS/ZMJImageEditor/HEAD/Example/ZMJImageEditor/Images.xcassets/p2.imageset/photo.png -------------------------------------------------------------------------------- /Example/ZMJImageEditor/ZMJAppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QinminiOS/ZMJImageEditor/HEAD/Example/ZMJImageEditor/ZMJAppDelegate.h -------------------------------------------------------------------------------- /Example/ZMJImageEditor/ZMJAppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QinminiOS/ZMJImageEditor/HEAD/Example/ZMJImageEditor/ZMJAppDelegate.m -------------------------------------------------------------------------------- /Example/ZMJImageEditor/ZMJImageEditor-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QinminiOS/ZMJImageEditor/HEAD/Example/ZMJImageEditor/ZMJImageEditor-Info.plist -------------------------------------------------------------------------------- /Example/ZMJImageEditor/ZMJImageEditor-Prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QinminiOS/ZMJImageEditor/HEAD/Example/ZMJImageEditor/ZMJImageEditor-Prefix.pch -------------------------------------------------------------------------------- /Example/ZMJImageEditor/ZMJImageEditor/Assets/close_Text@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QinminiOS/ZMJImageEditor/HEAD/Example/ZMJImageEditor/ZMJImageEditor/Assets/close_Text@2x.png -------------------------------------------------------------------------------- /Example/ZMJImageEditor/ZMJImageEditor/Assets/icon_caiqie@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QinminiOS/ZMJImageEditor/HEAD/Example/ZMJImageEditor/ZMJImageEditor/Assets/icon_caiqie@2x.png -------------------------------------------------------------------------------- /Example/ZMJImageEditor/ZMJImageEditor/Assets/icon_fanzhuan@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QinminiOS/ZMJImageEditor/HEAD/Example/ZMJImageEditor/ZMJImageEditor/Assets/icon_fanzhuan@2x.png -------------------------------------------------------------------------------- /Example/ZMJImageEditor/ZMJImageEditor/Assets/icon_fanzhuan_xuanzhong@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QinminiOS/ZMJImageEditor/HEAD/Example/ZMJImageEditor/ZMJImageEditor/Assets/icon_fanzhuan_xuanzhong@2x.png -------------------------------------------------------------------------------- /Example/ZMJImageEditor/ZMJImageEditor/Assets/icon_masaike@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QinminiOS/ZMJImageEditor/HEAD/Example/ZMJImageEditor/ZMJImageEditor/Assets/icon_masaike@2x.png -------------------------------------------------------------------------------- /Example/ZMJImageEditor/ZMJImageEditor/Assets/icon_masaike_1@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QinminiOS/ZMJImageEditor/HEAD/Example/ZMJImageEditor/ZMJImageEditor/Assets/icon_masaike_1@2x.png -------------------------------------------------------------------------------- /Example/ZMJImageEditor/ZMJImageEditor/Assets/icon_masaike_1_xuanzhong@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QinminiOS/ZMJImageEditor/HEAD/Example/ZMJImageEditor/ZMJImageEditor/Assets/icon_masaike_1_xuanzhong@2x.png -------------------------------------------------------------------------------- /Example/ZMJImageEditor/ZMJImageEditor/Assets/icon_masaike_2@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QinminiOS/ZMJImageEditor/HEAD/Example/ZMJImageEditor/ZMJImageEditor/Assets/icon_masaike_2@2x.png -------------------------------------------------------------------------------- /Example/ZMJImageEditor/ZMJImageEditor/Assets/icon_masaike_2_xuanzhong@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QinminiOS/ZMJImageEditor/HEAD/Example/ZMJImageEditor/ZMJImageEditor/Assets/icon_masaike_2_xuanzhong@2x.png -------------------------------------------------------------------------------- /Example/ZMJImageEditor/ZMJImageEditor/Assets/icon_masaike_xuanzhong@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QinminiOS/ZMJImageEditor/HEAD/Example/ZMJImageEditor/ZMJImageEditor/Assets/icon_masaike_xuanzhong@2x.png -------------------------------------------------------------------------------- /Example/ZMJImageEditor/ZMJImageEditor/Assets/icon_queren@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QinminiOS/ZMJImageEditor/HEAD/Example/ZMJImageEditor/ZMJImageEditor/Assets/icon_queren@2x.png -------------------------------------------------------------------------------- /Example/ZMJImageEditor/ZMJImageEditor/Assets/icon_quxiao@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QinminiOS/ZMJImageEditor/HEAD/Example/ZMJImageEditor/ZMJImageEditor/Assets/icon_quxiao@2x.png -------------------------------------------------------------------------------- /Example/ZMJImageEditor/ZMJImageEditor/Assets/icon_shanchushangyibu@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QinminiOS/ZMJImageEditor/HEAD/Example/ZMJImageEditor/ZMJImageEditor/Assets/icon_shanchushangyibu@2x.png -------------------------------------------------------------------------------- /Example/ZMJImageEditor/ZMJImageEditor/Assets/icon_tianjiawenzi_wukuang@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QinminiOS/ZMJImageEditor/HEAD/Example/ZMJImageEditor/ZMJImageEditor/Assets/icon_tianjiawenzi_wukuang@2x.png -------------------------------------------------------------------------------- /Example/ZMJImageEditor/ZMJImageEditor/Assets/icon_tianjiawenzi_youkuang@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QinminiOS/ZMJImageEditor/HEAD/Example/ZMJImageEditor/ZMJImageEditor/Assets/icon_tianjiawenzi_youkuang@2x.png -------------------------------------------------------------------------------- /Example/ZMJImageEditor/ZMJImageEditor/Assets/icon_tuya@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QinminiOS/ZMJImageEditor/HEAD/Example/ZMJImageEditor/ZMJImageEditor/Assets/icon_tuya@2x.png -------------------------------------------------------------------------------- /Example/ZMJImageEditor/ZMJImageEditor/Assets/icon_tuya_xuanzhong@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QinminiOS/ZMJImageEditor/HEAD/Example/ZMJImageEditor/ZMJImageEditor/Assets/icon_tuya_xuanzhong@2x.png -------------------------------------------------------------------------------- /Example/ZMJImageEditor/ZMJImageEditor/Base/Tools/WBGImageToolBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QinminiOS/ZMJImageEditor/HEAD/Example/ZMJImageEditor/ZMJImageEditor/Base/Tools/WBGImageToolBase.h -------------------------------------------------------------------------------- /Example/ZMJImageEditor/ZMJImageEditor/Base/Tools/WBGImageToolBase.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QinminiOS/ZMJImageEditor/HEAD/Example/ZMJImageEditor/ZMJImageEditor/Base/Tools/WBGImageToolBase.m -------------------------------------------------------------------------------- /Example/ZMJImageEditor/ZMJImageEditor/Base/Views/TOCropScrollView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QinminiOS/ZMJImageEditor/HEAD/Example/ZMJImageEditor/ZMJImageEditor/Base/Views/TOCropScrollView.h -------------------------------------------------------------------------------- /Example/ZMJImageEditor/ZMJImageEditor/Base/Views/TOCropScrollView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QinminiOS/ZMJImageEditor/HEAD/Example/ZMJImageEditor/ZMJImageEditor/Base/Views/TOCropScrollView.m -------------------------------------------------------------------------------- /Example/ZMJImageEditor/ZMJImageEditor/Base/Views/WBGColorfullButton.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QinminiOS/ZMJImageEditor/HEAD/Example/ZMJImageEditor/ZMJImageEditor/Base/Views/WBGColorfullButton.h -------------------------------------------------------------------------------- /Example/ZMJImageEditor/ZMJImageEditor/Base/Views/WBGColorfullButton.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QinminiOS/ZMJImageEditor/HEAD/Example/ZMJImageEditor/ZMJImageEditor/Base/Views/WBGColorfullButton.m -------------------------------------------------------------------------------- /Example/ZMJImageEditor/ZMJImageEditor/Base/Views/WBGDrawView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QinminiOS/ZMJImageEditor/HEAD/Example/ZMJImageEditor/ZMJImageEditor/Base/Views/WBGDrawView.h -------------------------------------------------------------------------------- /Example/ZMJImageEditor/ZMJImageEditor/Base/Views/WBGDrawView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QinminiOS/ZMJImageEditor/HEAD/Example/ZMJImageEditor/ZMJImageEditor/Base/Views/WBGDrawView.m -------------------------------------------------------------------------------- /Example/ZMJImageEditor/ZMJImageEditor/Base/Views/WBGNavigationBarView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QinminiOS/ZMJImageEditor/HEAD/Example/ZMJImageEditor/ZMJImageEditor/Base/Views/WBGNavigationBarView.h -------------------------------------------------------------------------------- /Example/ZMJImageEditor/ZMJImageEditor/Base/Views/WBGNavigationBarView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QinminiOS/ZMJImageEditor/HEAD/Example/ZMJImageEditor/ZMJImageEditor/Base/Views/WBGNavigationBarView.m -------------------------------------------------------------------------------- /Example/ZMJImageEditor/ZMJImageEditor/Base/Views/WBGNavigationBarView.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QinminiOS/ZMJImageEditor/HEAD/Example/ZMJImageEditor/ZMJImageEditor/Base/Views/WBGNavigationBarView.xib -------------------------------------------------------------------------------- /Example/ZMJImageEditor/ZMJImageEditor/Base/Views/WBGView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QinminiOS/ZMJImageEditor/HEAD/Example/ZMJImageEditor/ZMJImageEditor/Base/Views/WBGView.h -------------------------------------------------------------------------------- /Example/ZMJImageEditor/ZMJImageEditor/Base/Views/WBGView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QinminiOS/ZMJImageEditor/HEAD/Example/ZMJImageEditor/ZMJImageEditor/Base/Views/WBGView.m -------------------------------------------------------------------------------- /Example/ZMJImageEditor/ZMJImageEditor/Categories/UIColor+TLChat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QinminiOS/ZMJImageEditor/HEAD/Example/ZMJImageEditor/ZMJImageEditor/Categories/UIColor+TLChat.h -------------------------------------------------------------------------------- /Example/ZMJImageEditor/ZMJImageEditor/Categories/UIColor+TLChat.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QinminiOS/ZMJImageEditor/HEAD/Example/ZMJImageEditor/ZMJImageEditor/Categories/UIColor+TLChat.m -------------------------------------------------------------------------------- /Example/ZMJImageEditor/ZMJImageEditor/Categories/UIImage+CropRotate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QinminiOS/ZMJImageEditor/HEAD/Example/ZMJImageEditor/ZMJImageEditor/Categories/UIImage+CropRotate.h -------------------------------------------------------------------------------- /Example/ZMJImageEditor/ZMJImageEditor/Categories/UIImage+CropRotate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QinminiOS/ZMJImageEditor/HEAD/Example/ZMJImageEditor/ZMJImageEditor/Categories/UIImage+CropRotate.m -------------------------------------------------------------------------------- /Example/ZMJImageEditor/ZMJImageEditor/Categories/UIImage+library.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QinminiOS/ZMJImageEditor/HEAD/Example/ZMJImageEditor/ZMJImageEditor/Categories/UIImage+library.h -------------------------------------------------------------------------------- /Example/ZMJImageEditor/ZMJImageEditor/Categories/UIImage+library.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QinminiOS/ZMJImageEditor/HEAD/Example/ZMJImageEditor/ZMJImageEditor/Categories/UIImage+library.m -------------------------------------------------------------------------------- /Example/ZMJImageEditor/ZMJImageEditor/Categories/UIView+TouchBlock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QinminiOS/ZMJImageEditor/HEAD/Example/ZMJImageEditor/ZMJImageEditor/Categories/UIView+TouchBlock.h -------------------------------------------------------------------------------- /Example/ZMJImageEditor/ZMJImageEditor/Categories/UIView+TouchBlock.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QinminiOS/ZMJImageEditor/HEAD/Example/ZMJImageEditor/ZMJImageEditor/Categories/UIView+TouchBlock.m -------------------------------------------------------------------------------- /Example/ZMJImageEditor/ZMJImageEditor/Categories/WBGMoreKeyboard+CollectionView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QinminiOS/ZMJImageEditor/HEAD/Example/ZMJImageEditor/ZMJImageEditor/Categories/WBGMoreKeyboard+CollectionView.h -------------------------------------------------------------------------------- /Example/ZMJImageEditor/ZMJImageEditor/Categories/WBGMoreKeyboard+CollectionView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QinminiOS/ZMJImageEditor/HEAD/Example/ZMJImageEditor/ZMJImageEditor/Categories/WBGMoreKeyboard+CollectionView.m -------------------------------------------------------------------------------- /Example/ZMJImageEditor/ZMJImageEditor/Images.xcassets/1.imageset/1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QinminiOS/ZMJImageEditor/HEAD/Example/ZMJImageEditor/ZMJImageEditor/Images.xcassets/1.imageset/1.jpg -------------------------------------------------------------------------------- /Example/ZMJImageEditor/ZMJImageEditor/Images.xcassets/1.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QinminiOS/ZMJImageEditor/HEAD/Example/ZMJImageEditor/ZMJImageEditor/Images.xcassets/1.imageset/Contents.json -------------------------------------------------------------------------------- /Example/ZMJImageEditor/ZMJImageEditor/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QinminiOS/ZMJImageEditor/HEAD/Example/ZMJImageEditor/ZMJImageEditor/Images.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /Example/ZMJImageEditor/ZMJImageEditor/Images.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QinminiOS/ZMJImageEditor/HEAD/Example/ZMJImageEditor/ZMJImageEditor/Images.xcassets/Contents.json -------------------------------------------------------------------------------- /Example/ZMJImageEditor/ZMJImageEditor/Images.xcassets/Icons/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QinminiOS/ZMJImageEditor/HEAD/Example/ZMJImageEditor/ZMJImageEditor/Images.xcassets/Icons/Contents.json -------------------------------------------------------------------------------- /Example/ZMJImageEditor/ZMJImageEditor/Images.xcassets/Icons/close_Text.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QinminiOS/ZMJImageEditor/HEAD/Example/ZMJImageEditor/ZMJImageEditor/Images.xcassets/Icons/close_Text.imageset/Contents.json -------------------------------------------------------------------------------- /Example/ZMJImageEditor/ZMJImageEditor/Images.xcassets/Icons/close_Text.imageset/close_Text.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QinminiOS/ZMJImageEditor/HEAD/Example/ZMJImageEditor/ZMJImageEditor/Images.xcassets/Icons/close_Text.imageset/close_Text.png -------------------------------------------------------------------------------- /Example/ZMJImageEditor/ZMJImageEditor/Images.xcassets/Icons/icon_caiqie.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QinminiOS/ZMJImageEditor/HEAD/Example/ZMJImageEditor/ZMJImageEditor/Images.xcassets/Icons/icon_caiqie.imageset/Contents.json -------------------------------------------------------------------------------- /Example/ZMJImageEditor/ZMJImageEditor/Images.xcassets/Icons/icon_caiqie.imageset/icon_caiqie.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QinminiOS/ZMJImageEditor/HEAD/Example/ZMJImageEditor/ZMJImageEditor/Images.xcassets/Icons/icon_caiqie.imageset/icon_caiqie.png -------------------------------------------------------------------------------- /Example/ZMJImageEditor/ZMJImageEditor/Images.xcassets/Icons/icon_fanzhuan.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QinminiOS/ZMJImageEditor/HEAD/Example/ZMJImageEditor/ZMJImageEditor/Images.xcassets/Icons/icon_fanzhuan.imageset/Contents.json -------------------------------------------------------------------------------- /Example/ZMJImageEditor/ZMJImageEditor/Images.xcassets/Icons/icon_fanzhuan.imageset/icon_fanzhuan.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QinminiOS/ZMJImageEditor/HEAD/Example/ZMJImageEditor/ZMJImageEditor/Images.xcassets/Icons/icon_fanzhuan.imageset/icon_fanzhuan.png -------------------------------------------------------------------------------- /Example/ZMJImageEditor/ZMJImageEditor/Images.xcassets/Icons/icon_fanzhuan_xuanzhong.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QinminiOS/ZMJImageEditor/HEAD/Example/ZMJImageEditor/ZMJImageEditor/Images.xcassets/Icons/icon_fanzhuan_xuanzhong.imageset/Contents.json -------------------------------------------------------------------------------- /Example/ZMJImageEditor/ZMJImageEditor/Images.xcassets/Icons/icon_fanzhuan_xuanzhong.imageset/icon_fanzhuan_xuanzhong.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QinminiOS/ZMJImageEditor/HEAD/Example/ZMJImageEditor/ZMJImageEditor/Images.xcassets/Icons/icon_fanzhuan_xuanzhong.imageset/icon_fanzhuan_xuanzhong.png -------------------------------------------------------------------------------- /Example/ZMJImageEditor/ZMJImageEditor/Images.xcassets/Icons/icon_masaike.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QinminiOS/ZMJImageEditor/HEAD/Example/ZMJImageEditor/ZMJImageEditor/Images.xcassets/Icons/icon_masaike.imageset/Contents.json -------------------------------------------------------------------------------- /Example/ZMJImageEditor/ZMJImageEditor/Images.xcassets/Icons/icon_masaike.imageset/icon_masaike.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QinminiOS/ZMJImageEditor/HEAD/Example/ZMJImageEditor/ZMJImageEditor/Images.xcassets/Icons/icon_masaike.imageset/icon_masaike.png -------------------------------------------------------------------------------- /Example/ZMJImageEditor/ZMJImageEditor/Images.xcassets/Icons/icon_masaike_1.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QinminiOS/ZMJImageEditor/HEAD/Example/ZMJImageEditor/ZMJImageEditor/Images.xcassets/Icons/icon_masaike_1.imageset/Contents.json -------------------------------------------------------------------------------- /Example/ZMJImageEditor/ZMJImageEditor/Images.xcassets/Icons/icon_masaike_1.imageset/icon_masaike_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QinminiOS/ZMJImageEditor/HEAD/Example/ZMJImageEditor/ZMJImageEditor/Images.xcassets/Icons/icon_masaike_1.imageset/icon_masaike_1.png -------------------------------------------------------------------------------- /Example/ZMJImageEditor/ZMJImageEditor/Images.xcassets/Icons/icon_masaike_1_xuanzhong.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QinminiOS/ZMJImageEditor/HEAD/Example/ZMJImageEditor/ZMJImageEditor/Images.xcassets/Icons/icon_masaike_1_xuanzhong.imageset/Contents.json -------------------------------------------------------------------------------- /Example/ZMJImageEditor/ZMJImageEditor/Images.xcassets/Icons/icon_masaike_1_xuanzhong.imageset/icon_masaike_1_xuanzhong.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QinminiOS/ZMJImageEditor/HEAD/Example/ZMJImageEditor/ZMJImageEditor/Images.xcassets/Icons/icon_masaike_1_xuanzhong.imageset/icon_masaike_1_xuanzhong.png -------------------------------------------------------------------------------- /Example/ZMJImageEditor/ZMJImageEditor/Images.xcassets/Icons/icon_masaike_2.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QinminiOS/ZMJImageEditor/HEAD/Example/ZMJImageEditor/ZMJImageEditor/Images.xcassets/Icons/icon_masaike_2.imageset/Contents.json -------------------------------------------------------------------------------- /Example/ZMJImageEditor/ZMJImageEditor/Images.xcassets/Icons/icon_masaike_2.imageset/icon_masaike_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QinminiOS/ZMJImageEditor/HEAD/Example/ZMJImageEditor/ZMJImageEditor/Images.xcassets/Icons/icon_masaike_2.imageset/icon_masaike_2.png -------------------------------------------------------------------------------- /Example/ZMJImageEditor/ZMJImageEditor/Images.xcassets/Icons/icon_masaike_2_xuanzhong.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QinminiOS/ZMJImageEditor/HEAD/Example/ZMJImageEditor/ZMJImageEditor/Images.xcassets/Icons/icon_masaike_2_xuanzhong.imageset/Contents.json -------------------------------------------------------------------------------- /Example/ZMJImageEditor/ZMJImageEditor/Images.xcassets/Icons/icon_masaike_2_xuanzhong.imageset/icon_masaike_2_xuanzhong.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QinminiOS/ZMJImageEditor/HEAD/Example/ZMJImageEditor/ZMJImageEditor/Images.xcassets/Icons/icon_masaike_2_xuanzhong.imageset/icon_masaike_2_xuanzhong.png -------------------------------------------------------------------------------- /Example/ZMJImageEditor/ZMJImageEditor/Images.xcassets/Icons/icon_masaike_xuanzhong.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QinminiOS/ZMJImageEditor/HEAD/Example/ZMJImageEditor/ZMJImageEditor/Images.xcassets/Icons/icon_masaike_xuanzhong.imageset/Contents.json -------------------------------------------------------------------------------- /Example/ZMJImageEditor/ZMJImageEditor/Images.xcassets/Icons/icon_masaike_xuanzhong.imageset/icon_masaike_xuanzhong.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QinminiOS/ZMJImageEditor/HEAD/Example/ZMJImageEditor/ZMJImageEditor/Images.xcassets/Icons/icon_masaike_xuanzhong.imageset/icon_masaike_xuanzhong.png -------------------------------------------------------------------------------- /Example/ZMJImageEditor/ZMJImageEditor/Images.xcassets/Icons/icon_queren.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QinminiOS/ZMJImageEditor/HEAD/Example/ZMJImageEditor/ZMJImageEditor/Images.xcassets/Icons/icon_queren.imageset/Contents.json -------------------------------------------------------------------------------- /Example/ZMJImageEditor/ZMJImageEditor/Images.xcassets/Icons/icon_queren.imageset/icon_queren.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QinminiOS/ZMJImageEditor/HEAD/Example/ZMJImageEditor/ZMJImageEditor/Images.xcassets/Icons/icon_queren.imageset/icon_queren.png -------------------------------------------------------------------------------- /Example/ZMJImageEditor/ZMJImageEditor/Images.xcassets/Icons/icon_quxiao.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QinminiOS/ZMJImageEditor/HEAD/Example/ZMJImageEditor/ZMJImageEditor/Images.xcassets/Icons/icon_quxiao.imageset/Contents.json -------------------------------------------------------------------------------- /Example/ZMJImageEditor/ZMJImageEditor/Images.xcassets/Icons/icon_quxiao.imageset/icon_quxiao.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QinminiOS/ZMJImageEditor/HEAD/Example/ZMJImageEditor/ZMJImageEditor/Images.xcassets/Icons/icon_quxiao.imageset/icon_quxiao.png -------------------------------------------------------------------------------- /Example/ZMJImageEditor/ZMJImageEditor/Images.xcassets/Icons/icon_shanchushangyibu.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QinminiOS/ZMJImageEditor/HEAD/Example/ZMJImageEditor/ZMJImageEditor/Images.xcassets/Icons/icon_shanchushangyibu.imageset/Contents.json -------------------------------------------------------------------------------- /Example/ZMJImageEditor/ZMJImageEditor/Images.xcassets/Icons/icon_shanchushangyibu.imageset/icon_shanchushangyibu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QinminiOS/ZMJImageEditor/HEAD/Example/ZMJImageEditor/ZMJImageEditor/Images.xcassets/Icons/icon_shanchushangyibu.imageset/icon_shanchushangyibu.png -------------------------------------------------------------------------------- /Example/ZMJImageEditor/ZMJImageEditor/Images.xcassets/Icons/icon_tianjiawenzi_wukuang.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QinminiOS/ZMJImageEditor/HEAD/Example/ZMJImageEditor/ZMJImageEditor/Images.xcassets/Icons/icon_tianjiawenzi_wukuang.imageset/Contents.json -------------------------------------------------------------------------------- /Example/ZMJImageEditor/ZMJImageEditor/Images.xcassets/Icons/icon_tianjiawenzi_wukuang.imageset/icon_tianjiawenzi_wukuang.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QinminiOS/ZMJImageEditor/HEAD/Example/ZMJImageEditor/ZMJImageEditor/Images.xcassets/Icons/icon_tianjiawenzi_wukuang.imageset/icon_tianjiawenzi_wukuang.png -------------------------------------------------------------------------------- /Example/ZMJImageEditor/ZMJImageEditor/Images.xcassets/Icons/icon_tianjiawenzi_youkuang.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QinminiOS/ZMJImageEditor/HEAD/Example/ZMJImageEditor/ZMJImageEditor/Images.xcassets/Icons/icon_tianjiawenzi_youkuang.imageset/Contents.json -------------------------------------------------------------------------------- /Example/ZMJImageEditor/ZMJImageEditor/Images.xcassets/Icons/icon_tianjiawenzi_youkuang.imageset/icon_tianjiawenzi_youkuang.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QinminiOS/ZMJImageEditor/HEAD/Example/ZMJImageEditor/ZMJImageEditor/Images.xcassets/Icons/icon_tianjiawenzi_youkuang.imageset/icon_tianjiawenzi_youkuang.png -------------------------------------------------------------------------------- /Example/ZMJImageEditor/ZMJImageEditor/Images.xcassets/Icons/icon_tuya.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QinminiOS/ZMJImageEditor/HEAD/Example/ZMJImageEditor/ZMJImageEditor/Images.xcassets/Icons/icon_tuya.imageset/Contents.json -------------------------------------------------------------------------------- /Example/ZMJImageEditor/ZMJImageEditor/Images.xcassets/Icons/icon_tuya.imageset/icon_tuya.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QinminiOS/ZMJImageEditor/HEAD/Example/ZMJImageEditor/ZMJImageEditor/Images.xcassets/Icons/icon_tuya.imageset/icon_tuya.png -------------------------------------------------------------------------------- /Example/ZMJImageEditor/ZMJImageEditor/Images.xcassets/Icons/icon_tuya_xuanzhong.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QinminiOS/ZMJImageEditor/HEAD/Example/ZMJImageEditor/ZMJImageEditor/Images.xcassets/Icons/icon_tuya_xuanzhong.imageset/Contents.json -------------------------------------------------------------------------------- /Example/ZMJImageEditor/ZMJImageEditor/Images.xcassets/Icons/icon_tuya_xuanzhong.imageset/icon_tuya_xuanzhong.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QinminiOS/ZMJImageEditor/HEAD/Example/ZMJImageEditor/ZMJImageEditor/Images.xcassets/Icons/icon_tuya_xuanzhong.imageset/icon_tuya_xuanzhong.png -------------------------------------------------------------------------------- /Example/ZMJImageEditor/ZMJImageEditor/Images.xcassets/bg.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QinminiOS/ZMJImageEditor/HEAD/Example/ZMJImageEditor/ZMJImageEditor/Images.xcassets/bg.imageset/Contents.json -------------------------------------------------------------------------------- /Example/ZMJImageEditor/ZMJImageEditor/Images.xcassets/bg.imageset/IMG_1805.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QinminiOS/ZMJImageEditor/HEAD/Example/ZMJImageEditor/ZMJImageEditor/Images.xcassets/bg.imageset/IMG_1805.jpg -------------------------------------------------------------------------------- /Example/ZMJImageEditor/ZMJImageEditor/Images.xcassets/p1.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QinminiOS/ZMJImageEditor/HEAD/Example/ZMJImageEditor/ZMJImageEditor/Images.xcassets/p1.imageset/Contents.json -------------------------------------------------------------------------------- /Example/ZMJImageEditor/ZMJImageEditor/Images.xcassets/p1.imageset/githubicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QinminiOS/ZMJImageEditor/HEAD/Example/ZMJImageEditor/ZMJImageEditor/Images.xcassets/p1.imageset/githubicon.png -------------------------------------------------------------------------------- /Example/ZMJImageEditor/ZMJImageEditor/Images.xcassets/p2.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QinminiOS/ZMJImageEditor/HEAD/Example/ZMJImageEditor/ZMJImageEditor/Images.xcassets/p2.imageset/Contents.json -------------------------------------------------------------------------------- /Example/ZMJImageEditor/ZMJImageEditor/Images.xcassets/p2.imageset/photo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QinminiOS/ZMJImageEditor/HEAD/Example/ZMJImageEditor/ZMJImageEditor/Images.xcassets/p2.imageset/photo.png -------------------------------------------------------------------------------- /Example/ZMJImageEditor/ZMJImageEditor/Macros/WBGChatMacros.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QinminiOS/ZMJImageEditor/HEAD/Example/ZMJImageEditor/ZMJImageEditor/Macros/WBGChatMacros.h -------------------------------------------------------------------------------- /Example/ZMJImageEditor/ZMJImageEditor/Manager/WBGImageEditorGestureManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QinminiOS/ZMJImageEditor/HEAD/Example/ZMJImageEditor/ZMJImageEditor/Manager/WBGImageEditorGestureManager.h -------------------------------------------------------------------------------- /Example/ZMJImageEditor/ZMJImageEditor/Manager/WBGImageEditorGestureManager.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QinminiOS/ZMJImageEditor/HEAD/Example/ZMJImageEditor/ZMJImageEditor/Manager/WBGImageEditorGestureManager.m -------------------------------------------------------------------------------- /Example/ZMJImageEditor/ZMJImageEditor/Modules/Crop/Controller/TOCropViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QinminiOS/ZMJImageEditor/HEAD/Example/ZMJImageEditor/ZMJImageEditor/Modules/Crop/Controller/TOCropViewController.h -------------------------------------------------------------------------------- /Example/ZMJImageEditor/ZMJImageEditor/Modules/Crop/Controller/TOCropViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QinminiOS/ZMJImageEditor/HEAD/Example/ZMJImageEditor/ZMJImageEditor/Modules/Crop/Controller/TOCropViewController.m -------------------------------------------------------------------------------- /Example/ZMJImageEditor/ZMJImageEditor/Modules/Crop/Controller/TOCropViewControllerTransitioning.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QinminiOS/ZMJImageEditor/HEAD/Example/ZMJImageEditor/ZMJImageEditor/Modules/Crop/Controller/TOCropViewControllerTransitioning.h -------------------------------------------------------------------------------- /Example/ZMJImageEditor/ZMJImageEditor/Modules/Crop/Controller/TOCropViewControllerTransitioning.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QinminiOS/ZMJImageEditor/HEAD/Example/ZMJImageEditor/ZMJImageEditor/Modules/Crop/Controller/TOCropViewControllerTransitioning.m -------------------------------------------------------------------------------- /Example/ZMJImageEditor/ZMJImageEditor/Modules/Crop/Model/TOCroppedImageAttributes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QinminiOS/ZMJImageEditor/HEAD/Example/ZMJImageEditor/ZMJImageEditor/Modules/Crop/Model/TOCroppedImageAttributes.h -------------------------------------------------------------------------------- /Example/ZMJImageEditor/ZMJImageEditor/Modules/Crop/Model/TOCroppedImageAttributes.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QinminiOS/ZMJImageEditor/HEAD/Example/ZMJImageEditor/ZMJImageEditor/Modules/Crop/Model/TOCroppedImageAttributes.m -------------------------------------------------------------------------------- /Example/ZMJImageEditor/ZMJImageEditor/Modules/Crop/Provider/TOActivityCroppedImageProvider.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QinminiOS/ZMJImageEditor/HEAD/Example/ZMJImageEditor/ZMJImageEditor/Modules/Crop/Provider/TOActivityCroppedImageProvider.h -------------------------------------------------------------------------------- /Example/ZMJImageEditor/ZMJImageEditor/Modules/Crop/Provider/TOActivityCroppedImageProvider.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QinminiOS/ZMJImageEditor/HEAD/Example/ZMJImageEditor/ZMJImageEditor/Modules/Crop/Provider/TOActivityCroppedImageProvider.m -------------------------------------------------------------------------------- /Example/ZMJImageEditor/ZMJImageEditor/Modules/Crop/View/TOCropOverlayView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QinminiOS/ZMJImageEditor/HEAD/Example/ZMJImageEditor/ZMJImageEditor/Modules/Crop/View/TOCropOverlayView.h -------------------------------------------------------------------------------- /Example/ZMJImageEditor/ZMJImageEditor/Modules/Crop/View/TOCropOverlayView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QinminiOS/ZMJImageEditor/HEAD/Example/ZMJImageEditor/ZMJImageEditor/Modules/Crop/View/TOCropOverlayView.m -------------------------------------------------------------------------------- /Example/ZMJImageEditor/ZMJImageEditor/Modules/Crop/View/TOCropToolbar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QinminiOS/ZMJImageEditor/HEAD/Example/ZMJImageEditor/ZMJImageEditor/Modules/Crop/View/TOCropToolbar.h -------------------------------------------------------------------------------- /Example/ZMJImageEditor/ZMJImageEditor/Modules/Crop/View/TOCropToolbar.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QinminiOS/ZMJImageEditor/HEAD/Example/ZMJImageEditor/ZMJImageEditor/Modules/Crop/View/TOCropToolbar.m -------------------------------------------------------------------------------- /Example/ZMJImageEditor/ZMJImageEditor/Modules/Crop/View/TOCropView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QinminiOS/ZMJImageEditor/HEAD/Example/ZMJImageEditor/ZMJImageEditor/Modules/Crop/View/TOCropView.h -------------------------------------------------------------------------------- /Example/ZMJImageEditor/ZMJImageEditor/Modules/Crop/View/TOCropView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QinminiOS/ZMJImageEditor/HEAD/Example/ZMJImageEditor/ZMJImageEditor/Modules/Crop/View/TOCropView.m -------------------------------------------------------------------------------- /Example/ZMJImageEditor/ZMJImageEditor/Modules/Draw/Model/WBGPath.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QinminiOS/ZMJImageEditor/HEAD/Example/ZMJImageEditor/ZMJImageEditor/Modules/Draw/Model/WBGPath.h -------------------------------------------------------------------------------- /Example/ZMJImageEditor/ZMJImageEditor/Modules/Draw/Model/WBGPath.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QinminiOS/ZMJImageEditor/HEAD/Example/ZMJImageEditor/ZMJImageEditor/Modules/Draw/Model/WBGPath.m -------------------------------------------------------------------------------- /Example/ZMJImageEditor/ZMJImageEditor/Modules/Draw/Views/WBGColorPanel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QinminiOS/ZMJImageEditor/HEAD/Example/ZMJImageEditor/ZMJImageEditor/Modules/Draw/Views/WBGColorPanel.h -------------------------------------------------------------------------------- /Example/ZMJImageEditor/ZMJImageEditor/Modules/Draw/Views/WBGColorPanel.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QinminiOS/ZMJImageEditor/HEAD/Example/ZMJImageEditor/ZMJImageEditor/Modules/Draw/Views/WBGColorPanel.m -------------------------------------------------------------------------------- /Example/ZMJImageEditor/ZMJImageEditor/Modules/Draw/Views/WBGColorPanel.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QinminiOS/ZMJImageEditor/HEAD/Example/ZMJImageEditor/ZMJImageEditor/Modules/Draw/Views/WBGColorPanel.xib -------------------------------------------------------------------------------- /Example/ZMJImageEditor/ZMJImageEditor/Modules/Draw/WBGDrawTool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QinminiOS/ZMJImageEditor/HEAD/Example/ZMJImageEditor/ZMJImageEditor/Modules/Draw/WBGDrawTool.h -------------------------------------------------------------------------------- /Example/ZMJImageEditor/ZMJImageEditor/Modules/Draw/WBGDrawTool.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QinminiOS/ZMJImageEditor/HEAD/Example/ZMJImageEditor/ZMJImageEditor/Modules/Draw/WBGDrawTool.m -------------------------------------------------------------------------------- /Example/ZMJImageEditor/ZMJImageEditor/Modules/Main/WBGImageEditorViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QinminiOS/ZMJImageEditor/HEAD/Example/ZMJImageEditor/ZMJImageEditor/Modules/Main/WBGImageEditorViewController.h -------------------------------------------------------------------------------- /Example/ZMJImageEditor/ZMJImageEditor/Modules/Main/WBGImageEditorViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QinminiOS/ZMJImageEditor/HEAD/Example/ZMJImageEditor/ZMJImageEditor/Modules/Main/WBGImageEditorViewController.m -------------------------------------------------------------------------------- /Example/ZMJImageEditor/ZMJImageEditor/Modules/Main/WBGImageEditorViewController.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QinminiOS/ZMJImageEditor/HEAD/Example/ZMJImageEditor/ZMJImageEditor/Modules/Main/WBGImageEditorViewController.xib -------------------------------------------------------------------------------- /Example/ZMJImageEditor/ZMJImageEditor/Modules/Mosica/Model/WBGMosicaPath.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QinminiOS/ZMJImageEditor/HEAD/Example/ZMJImageEditor/ZMJImageEditor/Modules/Mosica/Model/WBGMosicaPath.h -------------------------------------------------------------------------------- /Example/ZMJImageEditor/ZMJImageEditor/Modules/Mosica/Model/WBGMosicaPath.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QinminiOS/ZMJImageEditor/HEAD/Example/ZMJImageEditor/ZMJImageEditor/Modules/Mosica/Model/WBGMosicaPath.m -------------------------------------------------------------------------------- /Example/ZMJImageEditor/ZMJImageEditor/Modules/Mosica/Utils/XRGBTool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QinminiOS/ZMJImageEditor/HEAD/Example/ZMJImageEditor/ZMJImageEditor/Modules/Mosica/Utils/XRGBTool.h -------------------------------------------------------------------------------- /Example/ZMJImageEditor/ZMJImageEditor/Modules/Mosica/Utils/XRGBTool.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QinminiOS/ZMJImageEditor/HEAD/Example/ZMJImageEditor/ZMJImageEditor/Modules/Mosica/Utils/XRGBTool.m -------------------------------------------------------------------------------- /Example/ZMJImageEditor/ZMJImageEditor/Modules/Mosica/View/WBGMosicaToolBar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QinminiOS/ZMJImageEditor/HEAD/Example/ZMJImageEditor/ZMJImageEditor/Modules/Mosica/View/WBGMosicaToolBar.h -------------------------------------------------------------------------------- /Example/ZMJImageEditor/ZMJImageEditor/Modules/Mosica/View/WBGMosicaToolBar.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QinminiOS/ZMJImageEditor/HEAD/Example/ZMJImageEditor/ZMJImageEditor/Modules/Mosica/View/WBGMosicaToolBar.m -------------------------------------------------------------------------------- /Example/ZMJImageEditor/ZMJImageEditor/Modules/Mosica/View/WBGMosicaToolBar.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QinminiOS/ZMJImageEditor/HEAD/Example/ZMJImageEditor/ZMJImageEditor/Modules/Mosica/View/WBGMosicaToolBar.xib -------------------------------------------------------------------------------- /Example/ZMJImageEditor/ZMJImageEditor/Modules/Mosica/View/WBGScratchView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QinminiOS/ZMJImageEditor/HEAD/Example/ZMJImageEditor/ZMJImageEditor/Modules/Mosica/View/WBGScratchView.h -------------------------------------------------------------------------------- /Example/ZMJImageEditor/ZMJImageEditor/Modules/Mosica/View/WBGScratchView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QinminiOS/ZMJImageEditor/HEAD/Example/ZMJImageEditor/ZMJImageEditor/Modules/Mosica/View/WBGScratchView.m -------------------------------------------------------------------------------- /Example/ZMJImageEditor/ZMJImageEditor/Modules/Mosica/WBGMosicaTool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QinminiOS/ZMJImageEditor/HEAD/Example/ZMJImageEditor/ZMJImageEditor/Modules/Mosica/WBGMosicaTool.h -------------------------------------------------------------------------------- /Example/ZMJImageEditor/ZMJImageEditor/Modules/Mosica/WBGMosicaTool.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QinminiOS/ZMJImageEditor/HEAD/Example/ZMJImageEditor/ZMJImageEditor/Modules/Mosica/WBGMosicaTool.m -------------------------------------------------------------------------------- /Example/ZMJImageEditor/ZMJImageEditor/Modules/Text/View/WBGTextColorPanel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QinminiOS/ZMJImageEditor/HEAD/Example/ZMJImageEditor/ZMJImageEditor/Modules/Text/View/WBGTextColorPanel.h -------------------------------------------------------------------------------- /Example/ZMJImageEditor/ZMJImageEditor/Modules/Text/View/WBGTextColorPanel.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QinminiOS/ZMJImageEditor/HEAD/Example/ZMJImageEditor/ZMJImageEditor/Modules/Text/View/WBGTextColorPanel.m -------------------------------------------------------------------------------- /Example/ZMJImageEditor/ZMJImageEditor/Modules/Text/View/WBGTextColorPanel.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QinminiOS/ZMJImageEditor/HEAD/Example/ZMJImageEditor/ZMJImageEditor/Modules/Text/View/WBGTextColorPanel.xib -------------------------------------------------------------------------------- /Example/ZMJImageEditor/ZMJImageEditor/Modules/Text/View/WBGTextToolOverlapView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QinminiOS/ZMJImageEditor/HEAD/Example/ZMJImageEditor/ZMJImageEditor/Modules/Text/View/WBGTextToolOverlapView.h -------------------------------------------------------------------------------- /Example/ZMJImageEditor/ZMJImageEditor/Modules/Text/View/WBGTextToolOverlapView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QinminiOS/ZMJImageEditor/HEAD/Example/ZMJImageEditor/ZMJImageEditor/Modules/Text/View/WBGTextToolOverlapView.m -------------------------------------------------------------------------------- /Example/ZMJImageEditor/ZMJImageEditor/Modules/Text/View/WBGTextToolView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QinminiOS/ZMJImageEditor/HEAD/Example/ZMJImageEditor/ZMJImageEditor/Modules/Text/View/WBGTextToolView.h -------------------------------------------------------------------------------- /Example/ZMJImageEditor/ZMJImageEditor/Modules/Text/View/WBGTextToolView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QinminiOS/ZMJImageEditor/HEAD/Example/ZMJImageEditor/ZMJImageEditor/Modules/Text/View/WBGTextToolView.m -------------------------------------------------------------------------------- /Example/ZMJImageEditor/ZMJImageEditor/Modules/Text/WBGTextTool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QinminiOS/ZMJImageEditor/HEAD/Example/ZMJImageEditor/ZMJImageEditor/Modules/Text/WBGTextTool.h -------------------------------------------------------------------------------- /Example/ZMJImageEditor/ZMJImageEditor/Modules/Text/WBGTextTool.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QinminiOS/ZMJImageEditor/HEAD/Example/ZMJImageEditor/ZMJImageEditor/Modules/Text/WBGTextTool.m -------------------------------------------------------------------------------- /Example/ZMJImageEditor/ZMJImageEditor/Modules/Widget/Keyboard/WBGBaseKeyboard.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QinminiOS/ZMJImageEditor/HEAD/Example/ZMJImageEditor/ZMJImageEditor/Modules/Widget/Keyboard/WBGBaseKeyboard.h -------------------------------------------------------------------------------- /Example/ZMJImageEditor/ZMJImageEditor/Modules/Widget/Keyboard/WBGBaseKeyboard.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QinminiOS/ZMJImageEditor/HEAD/Example/ZMJImageEditor/ZMJImageEditor/Modules/Widget/Keyboard/WBGBaseKeyboard.m -------------------------------------------------------------------------------- /Example/ZMJImageEditor/ZMJImageEditor/Modules/Widget/Keyboard/WBGMoreKeyboardItem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QinminiOS/ZMJImageEditor/HEAD/Example/ZMJImageEditor/ZMJImageEditor/Modules/Widget/Keyboard/WBGMoreKeyboardItem.h -------------------------------------------------------------------------------- /Example/ZMJImageEditor/ZMJImageEditor/Modules/Widget/Keyboard/WBGMoreKeyboardItem.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QinminiOS/ZMJImageEditor/HEAD/Example/ZMJImageEditor/ZMJImageEditor/Modules/Widget/Keyboard/WBGMoreKeyboardItem.m -------------------------------------------------------------------------------- /Example/ZMJImageEditor/ZMJImageEditor/Modules/Widget/Views/WBGMoreKeyboardCell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QinminiOS/ZMJImageEditor/HEAD/Example/ZMJImageEditor/ZMJImageEditor/Modules/Widget/Views/WBGMoreKeyboardCell.h -------------------------------------------------------------------------------- /Example/ZMJImageEditor/ZMJImageEditor/Modules/Widget/Views/WBGMoreKeyboardCell.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QinminiOS/ZMJImageEditor/HEAD/Example/ZMJImageEditor/ZMJImageEditor/Modules/Widget/Views/WBGMoreKeyboardCell.m -------------------------------------------------------------------------------- /Example/ZMJImageEditor/ZMJImageEditor/Modules/Widget/WBGMoreKeyboard.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QinminiOS/ZMJImageEditor/HEAD/Example/ZMJImageEditor/ZMJImageEditor/Modules/Widget/WBGMoreKeyboard.h -------------------------------------------------------------------------------- /Example/ZMJImageEditor/ZMJImageEditor/Modules/Widget/WBGMoreKeyboard.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QinminiOS/ZMJImageEditor/HEAD/Example/ZMJImageEditor/ZMJImageEditor/Modules/Widget/WBGMoreKeyboard.m -------------------------------------------------------------------------------- /Example/ZMJImageEditor/ZMJImageEditor/WBGImageEditor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QinminiOS/ZMJImageEditor/HEAD/Example/ZMJImageEditor/ZMJImageEditor/WBGImageEditor.h -------------------------------------------------------------------------------- /Example/ZMJImageEditor/ZMJImageEditor/WBGImageEditor.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QinminiOS/ZMJImageEditor/HEAD/Example/ZMJImageEditor/ZMJImageEditor/WBGImageEditor.m -------------------------------------------------------------------------------- /Example/ZMJImageEditor/ZMJViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QinminiOS/ZMJImageEditor/HEAD/Example/ZMJImageEditor/ZMJViewController.h -------------------------------------------------------------------------------- /Example/ZMJImageEditor/ZMJViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QinminiOS/ZMJImageEditor/HEAD/Example/ZMJImageEditor/ZMJViewController.m -------------------------------------------------------------------------------- /Example/ZMJImageEditor/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /Example/ZMJImageEditor/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QinminiOS/ZMJImageEditor/HEAD/Example/ZMJImageEditor/main.m -------------------------------------------------------------------------------- /Example/ZMJImageEditor/zh-Hans.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /Example/ZMJImageEditor/zh-Hans.lproj/LaunchScreen.strings: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /Example/build/XCBuildData/BuildDescriptionCacheIndex-c8f9f522ee8ce203effec18a38a7657c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QinminiOS/ZMJImageEditor/HEAD/Example/build/XCBuildData/BuildDescriptionCacheIndex-c8f9f522ee8ce203effec18a38a7657c -------------------------------------------------------------------------------- /Example/build/XCBuildData/dd59c412ff0bd9bdb3221f3420897930-desc.xcbuild: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QinminiOS/ZMJImageEditor/HEAD/Example/build/XCBuildData/dd59c412ff0bd9bdb3221f3420897930-desc.xcbuild -------------------------------------------------------------------------------- /Example/build/XCBuildData/dd59c412ff0bd9bdb3221f3420897930-manifest.xcbuild: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QinminiOS/ZMJImageEditor/HEAD/Example/build/XCBuildData/dd59c412ff0bd9bdb3221f3420897930-manifest.xcbuild -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QinminiOS/ZMJImageEditor/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QinminiOS/ZMJImageEditor/HEAD/README.md -------------------------------------------------------------------------------- /WBGMosicaViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QinminiOS/ZMJImageEditor/HEAD/WBGMosicaViewController.h -------------------------------------------------------------------------------- /WBGMosicaViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QinminiOS/ZMJImageEditor/HEAD/WBGMosicaViewController.m -------------------------------------------------------------------------------- /ZMJImageEditor.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QinminiOS/ZMJImageEditor/HEAD/ZMJImageEditor.podspec -------------------------------------------------------------------------------- /_Pods.xcodeproj: -------------------------------------------------------------------------------- 1 | Example/Pods/Pods.xcodeproj -------------------------------------------------------------------------------- /screenShot/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QinminiOS/ZMJImageEditor/HEAD/screenShot/1.png -------------------------------------------------------------------------------- /screenShot/10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QinminiOS/ZMJImageEditor/HEAD/screenShot/10.png -------------------------------------------------------------------------------- /screenShot/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QinminiOS/ZMJImageEditor/HEAD/screenShot/2.png -------------------------------------------------------------------------------- /screenShot/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QinminiOS/ZMJImageEditor/HEAD/screenShot/3.png -------------------------------------------------------------------------------- /screenShot/4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QinminiOS/ZMJImageEditor/HEAD/screenShot/4.png -------------------------------------------------------------------------------- /screenShot/5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QinminiOS/ZMJImageEditor/HEAD/screenShot/5.png -------------------------------------------------------------------------------- /screenShot/6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QinminiOS/ZMJImageEditor/HEAD/screenShot/6.png -------------------------------------------------------------------------------- /screenShot/7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QinminiOS/ZMJImageEditor/HEAD/screenShot/7.png -------------------------------------------------------------------------------- /screenShot/8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QinminiOS/ZMJImageEditor/HEAD/screenShot/8.png -------------------------------------------------------------------------------- /screenShot/9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QinminiOS/ZMJImageEditor/HEAD/screenShot/9.png --------------------------------------------------------------------------------