├── .gitignore ├── Example ├── Podfile ├── Podfile.lock ├── Tests │ ├── Tests-Info.plist │ ├── Tests-Prefix.pch │ ├── Tests.m │ └── en.lproj │ │ └── InfoPlist.strings ├── XYQuick.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ └── contents.xcworkspacedata │ └── xcshareddata │ │ └── xcschemes │ │ └── XYQuick-Example.xcscheme ├── XYQuick.xcworkspace │ ├── contents.xcworkspacedata │ └── xcshareddata │ │ └── IDEWorkspaceChecks.plist └── XYQuick │ ├── Controller │ ├── AnimationVC2.h │ ├── AnimationVC2.m │ ├── BlackMagicVC.h │ ├── BlackMagicVC.m │ ├── DatabaseVC.h │ ├── DatabaseVC.m │ ├── DemoTableViewController.h │ ├── DemoTableViewController.m │ ├── DemoViewController.h │ ├── DemoViewController.m │ ├── ImageVC.h │ ├── ImageVC.m │ ├── JSONVC.h │ ├── JSONVC.m │ ├── KeyboardVC.h │ ├── KeyboardVC.m │ ├── SignalVC.h │ ├── SignalVC.m │ ├── TestVC.h │ ├── TestVC.m │ ├── TestVC2.h │ ├── TestVC2.m │ ├── UISignalVC.h │ ├── UISignalVC.m │ └── ViewControllerDemo.h │ ├── Images.xcassets │ ├── AppIcon.appiconset │ │ └── Contents.json │ └── LaunchImage.launchimage │ │ └── Contents.json │ ├── Laboratory │ ├── IndicatorHelper.h │ ├── IndicatorHelper.m │ ├── LKDBHelperExtension.h │ ├── LKDBHelperExtension.m │ ├── XYAppController.h │ ├── XYAppController.m │ ├── XYAppModuleProtocol.h │ ├── XYApplicationWorkspace.h │ ├── XYApplicationWorkspace.m │ ├── XYBaseDao.h │ ├── XYBaseDao.m │ ├── XYBaseDataSource.h │ ├── XYBaseDataSource.m │ ├── XYBaseModel.h │ ├── XYBaseModel.m │ ├── XYBaseView.h │ ├── XYBaseView.m │ ├── XYChainMethod.h │ ├── XYClassLoader.h │ ├── XYClassLoader.m │ ├── XYEvent.h │ ├── XYEvent.m │ ├── XYMaterial.h │ ├── XYMaterial.m │ ├── XYMenuItem.h │ ├── XYObjectCache.h │ ├── XYObjectCache.m │ ├── XYRepository.h │ ├── XYRepository.m │ ├── XYServiceBase.h │ ├── XYServiceBase.m │ ├── XYUISignal.h │ ├── XYUISignal.m │ └── module │ │ ├── XYInterfaceManager.h │ │ ├── XYInterfaceManager.m │ │ ├── XYModuleLifecycle.h │ │ ├── XYModuleLifecycle.m │ │ ├── XYModuleManager.h │ │ ├── XYModuleManager.m │ │ ├── XYWidget.h │ │ └── XYWidget.m │ ├── Main.storyboard │ ├── Model │ ├── AopTestM.h │ ├── AopTestM.m │ ├── Associated.h │ ├── Associated.m │ ├── AutoCodingEntity.h │ ├── AutoCodingEntity.m │ ├── CarEntity.h │ ├── CarEntity.m │ ├── ConfigManager.h │ ├── ConfigManager.m │ ├── EntityBaseModel.h │ ├── EntityBaseModel.m │ ├── GirlEntity.h │ ├── GirlEntity.m │ ├── JsonTestEntity.h │ ├── JsonTestEntity.m │ ├── LKTestModels.h │ ├── LKTestModels.m │ ├── RubyChinaNodeEntity.h │ ├── RubyChinaNodeEntity.m │ ├── Test1Model.h │ ├── Test1Model.m │ ├── Test2Model.h │ └── Test2Model.m │ ├── Modules │ ├── ModuleA.h │ └── ModuleA.m │ ├── Resource │ ├── bg.jpg │ ├── bg_trends.png │ ├── default_TestDic.plist │ ├── headportrait.jpg │ ├── icon_facebook.png │ ├── icon_google.png │ ├── icon_tencent.png │ ├── icon_twitter.png │ ├── image.png │ ├── json0.json │ ├── json1.json │ ├── json2.json │ ├── json2_2.json │ ├── json3.json │ ├── json4.json │ ├── json5.json │ ├── json6.json │ ├── json7.json │ └── user_currentstandings.png │ ├── Test │ ├── Test_NSNull.m │ ├── Test_XYCache.m │ ├── Test_XYJSON.m │ ├── Test_XYSandbox.m │ ├── Test_XYSystem.m │ └── Test_XYThead.m │ ├── View │ ├── PaintCodeView.h │ ├── PaintCodeView.m │ ├── Test2View.h │ ├── Test2View.m │ ├── TestView.h │ └── TestView.m │ ├── XYAppDelegate.h │ ├── XYAppDelegate.m │ ├── XYQuick-Info.plist │ ├── XYQuick-Prefix.pch │ ├── XYViewController.h │ ├── XYViewController.m │ ├── en.lproj │ └── InfoPlist.strings │ └── main.m ├── LICENSE ├── Pod ├── Assets │ └── .gitkeep └── Classes │ ├── .gitkeep │ ├── XYQuick.h │ ├── XYQuick.m │ ├── core │ ├── XYQuick_Core.h │ ├── extension │ │ ├── NSArray+XY.h │ │ ├── NSArray+XY.m │ │ ├── NSData+XY.h │ │ ├── NSData+XY.m │ │ ├── NSDate+XY.h │ │ ├── NSDate+XY.m │ │ ├── NSDictionary+XY.h │ │ ├── NSDictionary+XY.m │ │ ├── NSNull+XY.h │ │ ├── NSNull+XY.m │ │ ├── NSNumber+XY.h │ │ ├── NSNumber+XY.m │ │ ├── NSObject+XY.h │ │ ├── NSObject+XY.m │ │ ├── NSSet+XY.h │ │ ├── NSSet+XY.m │ │ ├── NSString+XY.h │ │ └── NSString+XY.m │ └── modules │ │ ├── XYAOP.h │ │ ├── XYAOP.m │ │ ├── XYBaseBuilder.h │ │ ├── XYBaseBuilder.m │ │ ├── XYBlackMagic.h │ │ ├── XYBlackMagic.m │ │ ├── XYCommon.h │ │ ├── XYCommon.m │ │ ├── XYCommonDefine.h │ │ ├── XYJSON.h │ │ ├── XYJSON.m │ │ ├── XYReachability.h │ │ ├── XYReachability.m │ │ ├── XYRuntime.h │ │ ├── XYRuntime.m │ │ ├── XYSandbox.h │ │ ├── XYSandbox.m │ │ ├── XYSystemInfo.h │ │ ├── XYSystemInfo.m │ │ ├── XYThread.h │ │ ├── XYThread.m │ │ ├── XYTimer.h │ │ ├── XYTimer.m │ │ ├── cache │ │ ├── XYAutoCoding.h │ │ ├── XYAutoCoding.m │ │ ├── XYCacheProtocol.h │ │ ├── XYFileCache.h │ │ ├── XYFileCache.m │ │ ├── XYMemoryCache.h │ │ ├── XYMemoryCache.m │ │ ├── XYQuick_Cache.h │ │ ├── XYUserDefaults.h │ │ └── XYUserDefaults.m │ │ └── debug │ │ ├── XYDebugToy.h │ │ ├── XYDebugToy.m │ │ ├── XYPerformance.h │ │ ├── XYPerformance.m │ │ ├── XYQuick_Debug.h │ │ ├── XYUnitTest.h │ │ └── XYUnitTest.m │ ├── event │ ├── XYQuick_Event.h │ └── modules │ │ ├── XYFlyweightTransmit.h │ │ ├── XYFlyweightTransmit.m │ │ ├── XYKVO.h │ │ ├── XYKVO.m │ │ ├── XYMulticastDelegate.h │ │ ├── XYMulticastDelegate.m │ │ ├── XYNotification.h │ │ ├── XYNotification.m │ │ ├── XYSignal.h │ │ └── XYSignal.m │ ├── predefine │ ├── XYMetamacros.h │ ├── XYQuick_Predefine.h │ └── XYQuick_Predefine.m │ └── ui │ ├── XYQuick_UI.h │ ├── extension │ ├── UIActionSheet+XY.h │ ├── UIActionSheet+XY.m │ ├── UIAlertView+XY.h │ ├── UIAlertView+XY.m │ ├── UIButton+XY.h │ ├── UIButton+XY.m │ ├── UIColor+XY.h │ ├── UIColor+XY.m │ ├── UIControl+XY.h │ ├── UIControl+XY.m │ ├── UIImage+XY.h │ ├── UIImage+XY.m │ ├── UILabel+XY.h │ ├── UILabel+XY.m │ ├── UINavigationBar+XY.h │ ├── UINavigationBar+XY.m │ ├── UITable+XY.h │ ├── UITable+XY.m │ ├── UIView+XY.h │ ├── UIView+XY.m │ ├── UIViewController+XY.h │ ├── UIViewController+XY.m │ ├── UIWebView+XY.h │ ├── UIWebView+XY.m │ ├── UIWindow+XY.h │ └── UIWindow+XY.m │ └── modules │ ├── XYAnimate.h │ ├── XYAnimate.m │ ├── XYBaseViewController.h │ ├── XYBaseViewController.m │ ├── XYHUDProtocol.h │ ├── XYKeyboardHelper.h │ ├── XYKeyboardHelper.m │ ├── XYTabBar.h │ ├── XYTabBar.m │ ├── XYTabBarController.h │ ├── XYTabBarController.m │ ├── XYUIDefine.h │ ├── XYViewControllerManager.h │ ├── XYViewControllerManager.m │ ├── XYViewLayout.h │ └── XYViewLayout.m ├── README.md ├── XYQuick.podspec └── _Pods.xcodeproj /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxyheaven/XYQuick/HEAD/.gitignore -------------------------------------------------------------------------------- /Example/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxyheaven/XYQuick/HEAD/Example/Podfile -------------------------------------------------------------------------------- /Example/Podfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxyheaven/XYQuick/HEAD/Example/Podfile.lock -------------------------------------------------------------------------------- /Example/Tests/Tests-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxyheaven/XYQuick/HEAD/Example/Tests/Tests-Info.plist -------------------------------------------------------------------------------- /Example/Tests/Tests-Prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxyheaven/XYQuick/HEAD/Example/Tests/Tests-Prefix.pch -------------------------------------------------------------------------------- /Example/Tests/Tests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxyheaven/XYQuick/HEAD/Example/Tests/Tests.m -------------------------------------------------------------------------------- /Example/Tests/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /Example/XYQuick.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxyheaven/XYQuick/HEAD/Example/XYQuick.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Example/XYQuick.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxyheaven/XYQuick/HEAD/Example/XYQuick.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Example/XYQuick.xcodeproj/xcshareddata/xcschemes/XYQuick-Example.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxyheaven/XYQuick/HEAD/Example/XYQuick.xcodeproj/xcshareddata/xcschemes/XYQuick-Example.xcscheme -------------------------------------------------------------------------------- /Example/XYQuick.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxyheaven/XYQuick/HEAD/Example/XYQuick.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Example/XYQuick.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxyheaven/XYQuick/HEAD/Example/XYQuick.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /Example/XYQuick/Controller/AnimationVC2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxyheaven/XYQuick/HEAD/Example/XYQuick/Controller/AnimationVC2.h -------------------------------------------------------------------------------- /Example/XYQuick/Controller/AnimationVC2.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxyheaven/XYQuick/HEAD/Example/XYQuick/Controller/AnimationVC2.m -------------------------------------------------------------------------------- /Example/XYQuick/Controller/BlackMagicVC.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxyheaven/XYQuick/HEAD/Example/XYQuick/Controller/BlackMagicVC.h -------------------------------------------------------------------------------- /Example/XYQuick/Controller/BlackMagicVC.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxyheaven/XYQuick/HEAD/Example/XYQuick/Controller/BlackMagicVC.m -------------------------------------------------------------------------------- /Example/XYQuick/Controller/DatabaseVC.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxyheaven/XYQuick/HEAD/Example/XYQuick/Controller/DatabaseVC.h -------------------------------------------------------------------------------- /Example/XYQuick/Controller/DatabaseVC.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxyheaven/XYQuick/HEAD/Example/XYQuick/Controller/DatabaseVC.m -------------------------------------------------------------------------------- /Example/XYQuick/Controller/DemoTableViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxyheaven/XYQuick/HEAD/Example/XYQuick/Controller/DemoTableViewController.h -------------------------------------------------------------------------------- /Example/XYQuick/Controller/DemoTableViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxyheaven/XYQuick/HEAD/Example/XYQuick/Controller/DemoTableViewController.m -------------------------------------------------------------------------------- /Example/XYQuick/Controller/DemoViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxyheaven/XYQuick/HEAD/Example/XYQuick/Controller/DemoViewController.h -------------------------------------------------------------------------------- /Example/XYQuick/Controller/DemoViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxyheaven/XYQuick/HEAD/Example/XYQuick/Controller/DemoViewController.m -------------------------------------------------------------------------------- /Example/XYQuick/Controller/ImageVC.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxyheaven/XYQuick/HEAD/Example/XYQuick/Controller/ImageVC.h -------------------------------------------------------------------------------- /Example/XYQuick/Controller/ImageVC.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxyheaven/XYQuick/HEAD/Example/XYQuick/Controller/ImageVC.m -------------------------------------------------------------------------------- /Example/XYQuick/Controller/JSONVC.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxyheaven/XYQuick/HEAD/Example/XYQuick/Controller/JSONVC.h -------------------------------------------------------------------------------- /Example/XYQuick/Controller/JSONVC.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxyheaven/XYQuick/HEAD/Example/XYQuick/Controller/JSONVC.m -------------------------------------------------------------------------------- /Example/XYQuick/Controller/KeyboardVC.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxyheaven/XYQuick/HEAD/Example/XYQuick/Controller/KeyboardVC.h -------------------------------------------------------------------------------- /Example/XYQuick/Controller/KeyboardVC.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxyheaven/XYQuick/HEAD/Example/XYQuick/Controller/KeyboardVC.m -------------------------------------------------------------------------------- /Example/XYQuick/Controller/SignalVC.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxyheaven/XYQuick/HEAD/Example/XYQuick/Controller/SignalVC.h -------------------------------------------------------------------------------- /Example/XYQuick/Controller/SignalVC.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxyheaven/XYQuick/HEAD/Example/XYQuick/Controller/SignalVC.m -------------------------------------------------------------------------------- /Example/XYQuick/Controller/TestVC.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxyheaven/XYQuick/HEAD/Example/XYQuick/Controller/TestVC.h -------------------------------------------------------------------------------- /Example/XYQuick/Controller/TestVC.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxyheaven/XYQuick/HEAD/Example/XYQuick/Controller/TestVC.m -------------------------------------------------------------------------------- /Example/XYQuick/Controller/TestVC2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxyheaven/XYQuick/HEAD/Example/XYQuick/Controller/TestVC2.h -------------------------------------------------------------------------------- /Example/XYQuick/Controller/TestVC2.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxyheaven/XYQuick/HEAD/Example/XYQuick/Controller/TestVC2.m -------------------------------------------------------------------------------- /Example/XYQuick/Controller/UISignalVC.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxyheaven/XYQuick/HEAD/Example/XYQuick/Controller/UISignalVC.h -------------------------------------------------------------------------------- /Example/XYQuick/Controller/UISignalVC.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxyheaven/XYQuick/HEAD/Example/XYQuick/Controller/UISignalVC.m -------------------------------------------------------------------------------- /Example/XYQuick/Controller/ViewControllerDemo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxyheaven/XYQuick/HEAD/Example/XYQuick/Controller/ViewControllerDemo.h -------------------------------------------------------------------------------- /Example/XYQuick/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxyheaven/XYQuick/HEAD/Example/XYQuick/Images.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /Example/XYQuick/Images.xcassets/LaunchImage.launchimage/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxyheaven/XYQuick/HEAD/Example/XYQuick/Images.xcassets/LaunchImage.launchimage/Contents.json -------------------------------------------------------------------------------- /Example/XYQuick/Laboratory/IndicatorHelper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxyheaven/XYQuick/HEAD/Example/XYQuick/Laboratory/IndicatorHelper.h -------------------------------------------------------------------------------- /Example/XYQuick/Laboratory/IndicatorHelper.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxyheaven/XYQuick/HEAD/Example/XYQuick/Laboratory/IndicatorHelper.m -------------------------------------------------------------------------------- /Example/XYQuick/Laboratory/LKDBHelperExtension.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxyheaven/XYQuick/HEAD/Example/XYQuick/Laboratory/LKDBHelperExtension.h -------------------------------------------------------------------------------- /Example/XYQuick/Laboratory/LKDBHelperExtension.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxyheaven/XYQuick/HEAD/Example/XYQuick/Laboratory/LKDBHelperExtension.m -------------------------------------------------------------------------------- /Example/XYQuick/Laboratory/XYAppController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxyheaven/XYQuick/HEAD/Example/XYQuick/Laboratory/XYAppController.h -------------------------------------------------------------------------------- /Example/XYQuick/Laboratory/XYAppController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxyheaven/XYQuick/HEAD/Example/XYQuick/Laboratory/XYAppController.m -------------------------------------------------------------------------------- /Example/XYQuick/Laboratory/XYAppModuleProtocol.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxyheaven/XYQuick/HEAD/Example/XYQuick/Laboratory/XYAppModuleProtocol.h -------------------------------------------------------------------------------- /Example/XYQuick/Laboratory/XYApplicationWorkspace.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxyheaven/XYQuick/HEAD/Example/XYQuick/Laboratory/XYApplicationWorkspace.h -------------------------------------------------------------------------------- /Example/XYQuick/Laboratory/XYApplicationWorkspace.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxyheaven/XYQuick/HEAD/Example/XYQuick/Laboratory/XYApplicationWorkspace.m -------------------------------------------------------------------------------- /Example/XYQuick/Laboratory/XYBaseDao.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxyheaven/XYQuick/HEAD/Example/XYQuick/Laboratory/XYBaseDao.h -------------------------------------------------------------------------------- /Example/XYQuick/Laboratory/XYBaseDao.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxyheaven/XYQuick/HEAD/Example/XYQuick/Laboratory/XYBaseDao.m -------------------------------------------------------------------------------- /Example/XYQuick/Laboratory/XYBaseDataSource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxyheaven/XYQuick/HEAD/Example/XYQuick/Laboratory/XYBaseDataSource.h -------------------------------------------------------------------------------- /Example/XYQuick/Laboratory/XYBaseDataSource.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxyheaven/XYQuick/HEAD/Example/XYQuick/Laboratory/XYBaseDataSource.m -------------------------------------------------------------------------------- /Example/XYQuick/Laboratory/XYBaseModel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxyheaven/XYQuick/HEAD/Example/XYQuick/Laboratory/XYBaseModel.h -------------------------------------------------------------------------------- /Example/XYQuick/Laboratory/XYBaseModel.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxyheaven/XYQuick/HEAD/Example/XYQuick/Laboratory/XYBaseModel.m -------------------------------------------------------------------------------- /Example/XYQuick/Laboratory/XYBaseView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxyheaven/XYQuick/HEAD/Example/XYQuick/Laboratory/XYBaseView.h -------------------------------------------------------------------------------- /Example/XYQuick/Laboratory/XYBaseView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxyheaven/XYQuick/HEAD/Example/XYQuick/Laboratory/XYBaseView.m -------------------------------------------------------------------------------- /Example/XYQuick/Laboratory/XYChainMethod.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxyheaven/XYQuick/HEAD/Example/XYQuick/Laboratory/XYChainMethod.h -------------------------------------------------------------------------------- /Example/XYQuick/Laboratory/XYClassLoader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxyheaven/XYQuick/HEAD/Example/XYQuick/Laboratory/XYClassLoader.h -------------------------------------------------------------------------------- /Example/XYQuick/Laboratory/XYClassLoader.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxyheaven/XYQuick/HEAD/Example/XYQuick/Laboratory/XYClassLoader.m -------------------------------------------------------------------------------- /Example/XYQuick/Laboratory/XYEvent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxyheaven/XYQuick/HEAD/Example/XYQuick/Laboratory/XYEvent.h -------------------------------------------------------------------------------- /Example/XYQuick/Laboratory/XYEvent.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxyheaven/XYQuick/HEAD/Example/XYQuick/Laboratory/XYEvent.m -------------------------------------------------------------------------------- /Example/XYQuick/Laboratory/XYMaterial.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxyheaven/XYQuick/HEAD/Example/XYQuick/Laboratory/XYMaterial.h -------------------------------------------------------------------------------- /Example/XYQuick/Laboratory/XYMaterial.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxyheaven/XYQuick/HEAD/Example/XYQuick/Laboratory/XYMaterial.m -------------------------------------------------------------------------------- /Example/XYQuick/Laboratory/XYMenuItem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxyheaven/XYQuick/HEAD/Example/XYQuick/Laboratory/XYMenuItem.h -------------------------------------------------------------------------------- /Example/XYQuick/Laboratory/XYObjectCache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxyheaven/XYQuick/HEAD/Example/XYQuick/Laboratory/XYObjectCache.h -------------------------------------------------------------------------------- /Example/XYQuick/Laboratory/XYObjectCache.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxyheaven/XYQuick/HEAD/Example/XYQuick/Laboratory/XYObjectCache.m -------------------------------------------------------------------------------- /Example/XYQuick/Laboratory/XYRepository.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxyheaven/XYQuick/HEAD/Example/XYQuick/Laboratory/XYRepository.h -------------------------------------------------------------------------------- /Example/XYQuick/Laboratory/XYRepository.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxyheaven/XYQuick/HEAD/Example/XYQuick/Laboratory/XYRepository.m -------------------------------------------------------------------------------- /Example/XYQuick/Laboratory/XYServiceBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxyheaven/XYQuick/HEAD/Example/XYQuick/Laboratory/XYServiceBase.h -------------------------------------------------------------------------------- /Example/XYQuick/Laboratory/XYServiceBase.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxyheaven/XYQuick/HEAD/Example/XYQuick/Laboratory/XYServiceBase.m -------------------------------------------------------------------------------- /Example/XYQuick/Laboratory/XYUISignal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxyheaven/XYQuick/HEAD/Example/XYQuick/Laboratory/XYUISignal.h -------------------------------------------------------------------------------- /Example/XYQuick/Laboratory/XYUISignal.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxyheaven/XYQuick/HEAD/Example/XYQuick/Laboratory/XYUISignal.m -------------------------------------------------------------------------------- /Example/XYQuick/Laboratory/module/XYInterfaceManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxyheaven/XYQuick/HEAD/Example/XYQuick/Laboratory/module/XYInterfaceManager.h -------------------------------------------------------------------------------- /Example/XYQuick/Laboratory/module/XYInterfaceManager.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxyheaven/XYQuick/HEAD/Example/XYQuick/Laboratory/module/XYInterfaceManager.m -------------------------------------------------------------------------------- /Example/XYQuick/Laboratory/module/XYModuleLifecycle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxyheaven/XYQuick/HEAD/Example/XYQuick/Laboratory/module/XYModuleLifecycle.h -------------------------------------------------------------------------------- /Example/XYQuick/Laboratory/module/XYModuleLifecycle.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxyheaven/XYQuick/HEAD/Example/XYQuick/Laboratory/module/XYModuleLifecycle.m -------------------------------------------------------------------------------- /Example/XYQuick/Laboratory/module/XYModuleManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxyheaven/XYQuick/HEAD/Example/XYQuick/Laboratory/module/XYModuleManager.h -------------------------------------------------------------------------------- /Example/XYQuick/Laboratory/module/XYModuleManager.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxyheaven/XYQuick/HEAD/Example/XYQuick/Laboratory/module/XYModuleManager.m -------------------------------------------------------------------------------- /Example/XYQuick/Laboratory/module/XYWidget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxyheaven/XYQuick/HEAD/Example/XYQuick/Laboratory/module/XYWidget.h -------------------------------------------------------------------------------- /Example/XYQuick/Laboratory/module/XYWidget.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxyheaven/XYQuick/HEAD/Example/XYQuick/Laboratory/module/XYWidget.m -------------------------------------------------------------------------------- /Example/XYQuick/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxyheaven/XYQuick/HEAD/Example/XYQuick/Main.storyboard -------------------------------------------------------------------------------- /Example/XYQuick/Model/AopTestM.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxyheaven/XYQuick/HEAD/Example/XYQuick/Model/AopTestM.h -------------------------------------------------------------------------------- /Example/XYQuick/Model/AopTestM.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxyheaven/XYQuick/HEAD/Example/XYQuick/Model/AopTestM.m -------------------------------------------------------------------------------- /Example/XYQuick/Model/Associated.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxyheaven/XYQuick/HEAD/Example/XYQuick/Model/Associated.h -------------------------------------------------------------------------------- /Example/XYQuick/Model/Associated.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxyheaven/XYQuick/HEAD/Example/XYQuick/Model/Associated.m -------------------------------------------------------------------------------- /Example/XYQuick/Model/AutoCodingEntity.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxyheaven/XYQuick/HEAD/Example/XYQuick/Model/AutoCodingEntity.h -------------------------------------------------------------------------------- /Example/XYQuick/Model/AutoCodingEntity.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxyheaven/XYQuick/HEAD/Example/XYQuick/Model/AutoCodingEntity.m -------------------------------------------------------------------------------- /Example/XYQuick/Model/CarEntity.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxyheaven/XYQuick/HEAD/Example/XYQuick/Model/CarEntity.h -------------------------------------------------------------------------------- /Example/XYQuick/Model/CarEntity.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxyheaven/XYQuick/HEAD/Example/XYQuick/Model/CarEntity.m -------------------------------------------------------------------------------- /Example/XYQuick/Model/ConfigManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxyheaven/XYQuick/HEAD/Example/XYQuick/Model/ConfigManager.h -------------------------------------------------------------------------------- /Example/XYQuick/Model/ConfigManager.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxyheaven/XYQuick/HEAD/Example/XYQuick/Model/ConfigManager.m -------------------------------------------------------------------------------- /Example/XYQuick/Model/EntityBaseModel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxyheaven/XYQuick/HEAD/Example/XYQuick/Model/EntityBaseModel.h -------------------------------------------------------------------------------- /Example/XYQuick/Model/EntityBaseModel.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxyheaven/XYQuick/HEAD/Example/XYQuick/Model/EntityBaseModel.m -------------------------------------------------------------------------------- /Example/XYQuick/Model/GirlEntity.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxyheaven/XYQuick/HEAD/Example/XYQuick/Model/GirlEntity.h -------------------------------------------------------------------------------- /Example/XYQuick/Model/GirlEntity.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxyheaven/XYQuick/HEAD/Example/XYQuick/Model/GirlEntity.m -------------------------------------------------------------------------------- /Example/XYQuick/Model/JsonTestEntity.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxyheaven/XYQuick/HEAD/Example/XYQuick/Model/JsonTestEntity.h -------------------------------------------------------------------------------- /Example/XYQuick/Model/JsonTestEntity.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxyheaven/XYQuick/HEAD/Example/XYQuick/Model/JsonTestEntity.m -------------------------------------------------------------------------------- /Example/XYQuick/Model/LKTestModels.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxyheaven/XYQuick/HEAD/Example/XYQuick/Model/LKTestModels.h -------------------------------------------------------------------------------- /Example/XYQuick/Model/LKTestModels.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxyheaven/XYQuick/HEAD/Example/XYQuick/Model/LKTestModels.m -------------------------------------------------------------------------------- /Example/XYQuick/Model/RubyChinaNodeEntity.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxyheaven/XYQuick/HEAD/Example/XYQuick/Model/RubyChinaNodeEntity.h -------------------------------------------------------------------------------- /Example/XYQuick/Model/RubyChinaNodeEntity.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxyheaven/XYQuick/HEAD/Example/XYQuick/Model/RubyChinaNodeEntity.m -------------------------------------------------------------------------------- /Example/XYQuick/Model/Test1Model.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxyheaven/XYQuick/HEAD/Example/XYQuick/Model/Test1Model.h -------------------------------------------------------------------------------- /Example/XYQuick/Model/Test1Model.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxyheaven/XYQuick/HEAD/Example/XYQuick/Model/Test1Model.m -------------------------------------------------------------------------------- /Example/XYQuick/Model/Test2Model.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxyheaven/XYQuick/HEAD/Example/XYQuick/Model/Test2Model.h -------------------------------------------------------------------------------- /Example/XYQuick/Model/Test2Model.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxyheaven/XYQuick/HEAD/Example/XYQuick/Model/Test2Model.m -------------------------------------------------------------------------------- /Example/XYQuick/Modules/ModuleA.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxyheaven/XYQuick/HEAD/Example/XYQuick/Modules/ModuleA.h -------------------------------------------------------------------------------- /Example/XYQuick/Modules/ModuleA.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxyheaven/XYQuick/HEAD/Example/XYQuick/Modules/ModuleA.m -------------------------------------------------------------------------------- /Example/XYQuick/Resource/bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxyheaven/XYQuick/HEAD/Example/XYQuick/Resource/bg.jpg -------------------------------------------------------------------------------- /Example/XYQuick/Resource/bg_trends.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxyheaven/XYQuick/HEAD/Example/XYQuick/Resource/bg_trends.png -------------------------------------------------------------------------------- /Example/XYQuick/Resource/default_TestDic.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxyheaven/XYQuick/HEAD/Example/XYQuick/Resource/default_TestDic.plist -------------------------------------------------------------------------------- /Example/XYQuick/Resource/headportrait.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxyheaven/XYQuick/HEAD/Example/XYQuick/Resource/headportrait.jpg -------------------------------------------------------------------------------- /Example/XYQuick/Resource/icon_facebook.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxyheaven/XYQuick/HEAD/Example/XYQuick/Resource/icon_facebook.png -------------------------------------------------------------------------------- /Example/XYQuick/Resource/icon_google.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxyheaven/XYQuick/HEAD/Example/XYQuick/Resource/icon_google.png -------------------------------------------------------------------------------- /Example/XYQuick/Resource/icon_tencent.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxyheaven/XYQuick/HEAD/Example/XYQuick/Resource/icon_tencent.png -------------------------------------------------------------------------------- /Example/XYQuick/Resource/icon_twitter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxyheaven/XYQuick/HEAD/Example/XYQuick/Resource/icon_twitter.png -------------------------------------------------------------------------------- /Example/XYQuick/Resource/image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxyheaven/XYQuick/HEAD/Example/XYQuick/Resource/image.png -------------------------------------------------------------------------------- /Example/XYQuick/Resource/json0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxyheaven/XYQuick/HEAD/Example/XYQuick/Resource/json0.json -------------------------------------------------------------------------------- /Example/XYQuick/Resource/json1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxyheaven/XYQuick/HEAD/Example/XYQuick/Resource/json1.json -------------------------------------------------------------------------------- /Example/XYQuick/Resource/json2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxyheaven/XYQuick/HEAD/Example/XYQuick/Resource/json2.json -------------------------------------------------------------------------------- /Example/XYQuick/Resource/json2_2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxyheaven/XYQuick/HEAD/Example/XYQuick/Resource/json2_2.json -------------------------------------------------------------------------------- /Example/XYQuick/Resource/json3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxyheaven/XYQuick/HEAD/Example/XYQuick/Resource/json3.json -------------------------------------------------------------------------------- /Example/XYQuick/Resource/json4.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxyheaven/XYQuick/HEAD/Example/XYQuick/Resource/json4.json -------------------------------------------------------------------------------- /Example/XYQuick/Resource/json5.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxyheaven/XYQuick/HEAD/Example/XYQuick/Resource/json5.json -------------------------------------------------------------------------------- /Example/XYQuick/Resource/json6.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxyheaven/XYQuick/HEAD/Example/XYQuick/Resource/json6.json -------------------------------------------------------------------------------- /Example/XYQuick/Resource/json7.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxyheaven/XYQuick/HEAD/Example/XYQuick/Resource/json7.json -------------------------------------------------------------------------------- /Example/XYQuick/Resource/user_currentstandings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxyheaven/XYQuick/HEAD/Example/XYQuick/Resource/user_currentstandings.png -------------------------------------------------------------------------------- /Example/XYQuick/Test/Test_NSNull.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxyheaven/XYQuick/HEAD/Example/XYQuick/Test/Test_NSNull.m -------------------------------------------------------------------------------- /Example/XYQuick/Test/Test_XYCache.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxyheaven/XYQuick/HEAD/Example/XYQuick/Test/Test_XYCache.m -------------------------------------------------------------------------------- /Example/XYQuick/Test/Test_XYJSON.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxyheaven/XYQuick/HEAD/Example/XYQuick/Test/Test_XYJSON.m -------------------------------------------------------------------------------- /Example/XYQuick/Test/Test_XYSandbox.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxyheaven/XYQuick/HEAD/Example/XYQuick/Test/Test_XYSandbox.m -------------------------------------------------------------------------------- /Example/XYQuick/Test/Test_XYSystem.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxyheaven/XYQuick/HEAD/Example/XYQuick/Test/Test_XYSystem.m -------------------------------------------------------------------------------- /Example/XYQuick/Test/Test_XYThead.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxyheaven/XYQuick/HEAD/Example/XYQuick/Test/Test_XYThead.m -------------------------------------------------------------------------------- /Example/XYQuick/View/PaintCodeView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxyheaven/XYQuick/HEAD/Example/XYQuick/View/PaintCodeView.h -------------------------------------------------------------------------------- /Example/XYQuick/View/PaintCodeView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxyheaven/XYQuick/HEAD/Example/XYQuick/View/PaintCodeView.m -------------------------------------------------------------------------------- /Example/XYQuick/View/Test2View.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxyheaven/XYQuick/HEAD/Example/XYQuick/View/Test2View.h -------------------------------------------------------------------------------- /Example/XYQuick/View/Test2View.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxyheaven/XYQuick/HEAD/Example/XYQuick/View/Test2View.m -------------------------------------------------------------------------------- /Example/XYQuick/View/TestView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxyheaven/XYQuick/HEAD/Example/XYQuick/View/TestView.h -------------------------------------------------------------------------------- /Example/XYQuick/View/TestView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxyheaven/XYQuick/HEAD/Example/XYQuick/View/TestView.m -------------------------------------------------------------------------------- /Example/XYQuick/XYAppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxyheaven/XYQuick/HEAD/Example/XYQuick/XYAppDelegate.h -------------------------------------------------------------------------------- /Example/XYQuick/XYAppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxyheaven/XYQuick/HEAD/Example/XYQuick/XYAppDelegate.m -------------------------------------------------------------------------------- /Example/XYQuick/XYQuick-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxyheaven/XYQuick/HEAD/Example/XYQuick/XYQuick-Info.plist -------------------------------------------------------------------------------- /Example/XYQuick/XYQuick-Prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxyheaven/XYQuick/HEAD/Example/XYQuick/XYQuick-Prefix.pch -------------------------------------------------------------------------------- /Example/XYQuick/XYViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxyheaven/XYQuick/HEAD/Example/XYQuick/XYViewController.h -------------------------------------------------------------------------------- /Example/XYQuick/XYViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxyheaven/XYQuick/HEAD/Example/XYQuick/XYViewController.m -------------------------------------------------------------------------------- /Example/XYQuick/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /Example/XYQuick/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxyheaven/XYQuick/HEAD/Example/XYQuick/main.m -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxyheaven/XYQuick/HEAD/LICENSE -------------------------------------------------------------------------------- /Pod/Assets/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Pod/Classes/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Pod/Classes/XYQuick.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxyheaven/XYQuick/HEAD/Pod/Classes/XYQuick.h -------------------------------------------------------------------------------- /Pod/Classes/XYQuick.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxyheaven/XYQuick/HEAD/Pod/Classes/XYQuick.m -------------------------------------------------------------------------------- /Pod/Classes/core/XYQuick_Core.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxyheaven/XYQuick/HEAD/Pod/Classes/core/XYQuick_Core.h -------------------------------------------------------------------------------- /Pod/Classes/core/extension/NSArray+XY.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxyheaven/XYQuick/HEAD/Pod/Classes/core/extension/NSArray+XY.h -------------------------------------------------------------------------------- /Pod/Classes/core/extension/NSArray+XY.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxyheaven/XYQuick/HEAD/Pod/Classes/core/extension/NSArray+XY.m -------------------------------------------------------------------------------- /Pod/Classes/core/extension/NSData+XY.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxyheaven/XYQuick/HEAD/Pod/Classes/core/extension/NSData+XY.h -------------------------------------------------------------------------------- /Pod/Classes/core/extension/NSData+XY.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxyheaven/XYQuick/HEAD/Pod/Classes/core/extension/NSData+XY.m -------------------------------------------------------------------------------- /Pod/Classes/core/extension/NSDate+XY.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxyheaven/XYQuick/HEAD/Pod/Classes/core/extension/NSDate+XY.h -------------------------------------------------------------------------------- /Pod/Classes/core/extension/NSDate+XY.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxyheaven/XYQuick/HEAD/Pod/Classes/core/extension/NSDate+XY.m -------------------------------------------------------------------------------- /Pod/Classes/core/extension/NSDictionary+XY.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxyheaven/XYQuick/HEAD/Pod/Classes/core/extension/NSDictionary+XY.h -------------------------------------------------------------------------------- /Pod/Classes/core/extension/NSDictionary+XY.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxyheaven/XYQuick/HEAD/Pod/Classes/core/extension/NSDictionary+XY.m -------------------------------------------------------------------------------- /Pod/Classes/core/extension/NSNull+XY.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxyheaven/XYQuick/HEAD/Pod/Classes/core/extension/NSNull+XY.h -------------------------------------------------------------------------------- /Pod/Classes/core/extension/NSNull+XY.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxyheaven/XYQuick/HEAD/Pod/Classes/core/extension/NSNull+XY.m -------------------------------------------------------------------------------- /Pod/Classes/core/extension/NSNumber+XY.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxyheaven/XYQuick/HEAD/Pod/Classes/core/extension/NSNumber+XY.h -------------------------------------------------------------------------------- /Pod/Classes/core/extension/NSNumber+XY.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxyheaven/XYQuick/HEAD/Pod/Classes/core/extension/NSNumber+XY.m -------------------------------------------------------------------------------- /Pod/Classes/core/extension/NSObject+XY.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxyheaven/XYQuick/HEAD/Pod/Classes/core/extension/NSObject+XY.h -------------------------------------------------------------------------------- /Pod/Classes/core/extension/NSObject+XY.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxyheaven/XYQuick/HEAD/Pod/Classes/core/extension/NSObject+XY.m -------------------------------------------------------------------------------- /Pod/Classes/core/extension/NSSet+XY.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxyheaven/XYQuick/HEAD/Pod/Classes/core/extension/NSSet+XY.h -------------------------------------------------------------------------------- /Pod/Classes/core/extension/NSSet+XY.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxyheaven/XYQuick/HEAD/Pod/Classes/core/extension/NSSet+XY.m -------------------------------------------------------------------------------- /Pod/Classes/core/extension/NSString+XY.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxyheaven/XYQuick/HEAD/Pod/Classes/core/extension/NSString+XY.h -------------------------------------------------------------------------------- /Pod/Classes/core/extension/NSString+XY.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxyheaven/XYQuick/HEAD/Pod/Classes/core/extension/NSString+XY.m -------------------------------------------------------------------------------- /Pod/Classes/core/modules/XYAOP.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxyheaven/XYQuick/HEAD/Pod/Classes/core/modules/XYAOP.h -------------------------------------------------------------------------------- /Pod/Classes/core/modules/XYAOP.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxyheaven/XYQuick/HEAD/Pod/Classes/core/modules/XYAOP.m -------------------------------------------------------------------------------- /Pod/Classes/core/modules/XYBaseBuilder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxyheaven/XYQuick/HEAD/Pod/Classes/core/modules/XYBaseBuilder.h -------------------------------------------------------------------------------- /Pod/Classes/core/modules/XYBaseBuilder.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxyheaven/XYQuick/HEAD/Pod/Classes/core/modules/XYBaseBuilder.m -------------------------------------------------------------------------------- /Pod/Classes/core/modules/XYBlackMagic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxyheaven/XYQuick/HEAD/Pod/Classes/core/modules/XYBlackMagic.h -------------------------------------------------------------------------------- /Pod/Classes/core/modules/XYBlackMagic.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxyheaven/XYQuick/HEAD/Pod/Classes/core/modules/XYBlackMagic.m -------------------------------------------------------------------------------- /Pod/Classes/core/modules/XYCommon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxyheaven/XYQuick/HEAD/Pod/Classes/core/modules/XYCommon.h -------------------------------------------------------------------------------- /Pod/Classes/core/modules/XYCommon.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxyheaven/XYQuick/HEAD/Pod/Classes/core/modules/XYCommon.m -------------------------------------------------------------------------------- /Pod/Classes/core/modules/XYCommonDefine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxyheaven/XYQuick/HEAD/Pod/Classes/core/modules/XYCommonDefine.h -------------------------------------------------------------------------------- /Pod/Classes/core/modules/XYJSON.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxyheaven/XYQuick/HEAD/Pod/Classes/core/modules/XYJSON.h -------------------------------------------------------------------------------- /Pod/Classes/core/modules/XYJSON.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxyheaven/XYQuick/HEAD/Pod/Classes/core/modules/XYJSON.m -------------------------------------------------------------------------------- /Pod/Classes/core/modules/XYReachability.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxyheaven/XYQuick/HEAD/Pod/Classes/core/modules/XYReachability.h -------------------------------------------------------------------------------- /Pod/Classes/core/modules/XYReachability.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxyheaven/XYQuick/HEAD/Pod/Classes/core/modules/XYReachability.m -------------------------------------------------------------------------------- /Pod/Classes/core/modules/XYRuntime.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxyheaven/XYQuick/HEAD/Pod/Classes/core/modules/XYRuntime.h -------------------------------------------------------------------------------- /Pod/Classes/core/modules/XYRuntime.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxyheaven/XYQuick/HEAD/Pod/Classes/core/modules/XYRuntime.m -------------------------------------------------------------------------------- /Pod/Classes/core/modules/XYSandbox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxyheaven/XYQuick/HEAD/Pod/Classes/core/modules/XYSandbox.h -------------------------------------------------------------------------------- /Pod/Classes/core/modules/XYSandbox.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxyheaven/XYQuick/HEAD/Pod/Classes/core/modules/XYSandbox.m -------------------------------------------------------------------------------- /Pod/Classes/core/modules/XYSystemInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxyheaven/XYQuick/HEAD/Pod/Classes/core/modules/XYSystemInfo.h -------------------------------------------------------------------------------- /Pod/Classes/core/modules/XYSystemInfo.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxyheaven/XYQuick/HEAD/Pod/Classes/core/modules/XYSystemInfo.m -------------------------------------------------------------------------------- /Pod/Classes/core/modules/XYThread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxyheaven/XYQuick/HEAD/Pod/Classes/core/modules/XYThread.h -------------------------------------------------------------------------------- /Pod/Classes/core/modules/XYThread.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxyheaven/XYQuick/HEAD/Pod/Classes/core/modules/XYThread.m -------------------------------------------------------------------------------- /Pod/Classes/core/modules/XYTimer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxyheaven/XYQuick/HEAD/Pod/Classes/core/modules/XYTimer.h -------------------------------------------------------------------------------- /Pod/Classes/core/modules/XYTimer.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxyheaven/XYQuick/HEAD/Pod/Classes/core/modules/XYTimer.m -------------------------------------------------------------------------------- /Pod/Classes/core/modules/cache/XYAutoCoding.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxyheaven/XYQuick/HEAD/Pod/Classes/core/modules/cache/XYAutoCoding.h -------------------------------------------------------------------------------- /Pod/Classes/core/modules/cache/XYAutoCoding.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxyheaven/XYQuick/HEAD/Pod/Classes/core/modules/cache/XYAutoCoding.m -------------------------------------------------------------------------------- /Pod/Classes/core/modules/cache/XYCacheProtocol.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxyheaven/XYQuick/HEAD/Pod/Classes/core/modules/cache/XYCacheProtocol.h -------------------------------------------------------------------------------- /Pod/Classes/core/modules/cache/XYFileCache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxyheaven/XYQuick/HEAD/Pod/Classes/core/modules/cache/XYFileCache.h -------------------------------------------------------------------------------- /Pod/Classes/core/modules/cache/XYFileCache.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxyheaven/XYQuick/HEAD/Pod/Classes/core/modules/cache/XYFileCache.m -------------------------------------------------------------------------------- /Pod/Classes/core/modules/cache/XYMemoryCache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxyheaven/XYQuick/HEAD/Pod/Classes/core/modules/cache/XYMemoryCache.h -------------------------------------------------------------------------------- /Pod/Classes/core/modules/cache/XYMemoryCache.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxyheaven/XYQuick/HEAD/Pod/Classes/core/modules/cache/XYMemoryCache.m -------------------------------------------------------------------------------- /Pod/Classes/core/modules/cache/XYQuick_Cache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxyheaven/XYQuick/HEAD/Pod/Classes/core/modules/cache/XYQuick_Cache.h -------------------------------------------------------------------------------- /Pod/Classes/core/modules/cache/XYUserDefaults.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxyheaven/XYQuick/HEAD/Pod/Classes/core/modules/cache/XYUserDefaults.h -------------------------------------------------------------------------------- /Pod/Classes/core/modules/cache/XYUserDefaults.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxyheaven/XYQuick/HEAD/Pod/Classes/core/modules/cache/XYUserDefaults.m -------------------------------------------------------------------------------- /Pod/Classes/core/modules/debug/XYDebugToy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxyheaven/XYQuick/HEAD/Pod/Classes/core/modules/debug/XYDebugToy.h -------------------------------------------------------------------------------- /Pod/Classes/core/modules/debug/XYDebugToy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxyheaven/XYQuick/HEAD/Pod/Classes/core/modules/debug/XYDebugToy.m -------------------------------------------------------------------------------- /Pod/Classes/core/modules/debug/XYPerformance.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxyheaven/XYQuick/HEAD/Pod/Classes/core/modules/debug/XYPerformance.h -------------------------------------------------------------------------------- /Pod/Classes/core/modules/debug/XYPerformance.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxyheaven/XYQuick/HEAD/Pod/Classes/core/modules/debug/XYPerformance.m -------------------------------------------------------------------------------- /Pod/Classes/core/modules/debug/XYQuick_Debug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxyheaven/XYQuick/HEAD/Pod/Classes/core/modules/debug/XYQuick_Debug.h -------------------------------------------------------------------------------- /Pod/Classes/core/modules/debug/XYUnitTest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxyheaven/XYQuick/HEAD/Pod/Classes/core/modules/debug/XYUnitTest.h -------------------------------------------------------------------------------- /Pod/Classes/core/modules/debug/XYUnitTest.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxyheaven/XYQuick/HEAD/Pod/Classes/core/modules/debug/XYUnitTest.m -------------------------------------------------------------------------------- /Pod/Classes/event/XYQuick_Event.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxyheaven/XYQuick/HEAD/Pod/Classes/event/XYQuick_Event.h -------------------------------------------------------------------------------- /Pod/Classes/event/modules/XYFlyweightTransmit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxyheaven/XYQuick/HEAD/Pod/Classes/event/modules/XYFlyweightTransmit.h -------------------------------------------------------------------------------- /Pod/Classes/event/modules/XYFlyweightTransmit.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxyheaven/XYQuick/HEAD/Pod/Classes/event/modules/XYFlyweightTransmit.m -------------------------------------------------------------------------------- /Pod/Classes/event/modules/XYKVO.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxyheaven/XYQuick/HEAD/Pod/Classes/event/modules/XYKVO.h -------------------------------------------------------------------------------- /Pod/Classes/event/modules/XYKVO.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxyheaven/XYQuick/HEAD/Pod/Classes/event/modules/XYKVO.m -------------------------------------------------------------------------------- /Pod/Classes/event/modules/XYMulticastDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxyheaven/XYQuick/HEAD/Pod/Classes/event/modules/XYMulticastDelegate.h -------------------------------------------------------------------------------- /Pod/Classes/event/modules/XYMulticastDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxyheaven/XYQuick/HEAD/Pod/Classes/event/modules/XYMulticastDelegate.m -------------------------------------------------------------------------------- /Pod/Classes/event/modules/XYNotification.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxyheaven/XYQuick/HEAD/Pod/Classes/event/modules/XYNotification.h -------------------------------------------------------------------------------- /Pod/Classes/event/modules/XYNotification.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxyheaven/XYQuick/HEAD/Pod/Classes/event/modules/XYNotification.m -------------------------------------------------------------------------------- /Pod/Classes/event/modules/XYSignal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxyheaven/XYQuick/HEAD/Pod/Classes/event/modules/XYSignal.h -------------------------------------------------------------------------------- /Pod/Classes/event/modules/XYSignal.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxyheaven/XYQuick/HEAD/Pod/Classes/event/modules/XYSignal.m -------------------------------------------------------------------------------- /Pod/Classes/predefine/XYMetamacros.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxyheaven/XYQuick/HEAD/Pod/Classes/predefine/XYMetamacros.h -------------------------------------------------------------------------------- /Pod/Classes/predefine/XYQuick_Predefine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxyheaven/XYQuick/HEAD/Pod/Classes/predefine/XYQuick_Predefine.h -------------------------------------------------------------------------------- /Pod/Classes/predefine/XYQuick_Predefine.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxyheaven/XYQuick/HEAD/Pod/Classes/predefine/XYQuick_Predefine.m -------------------------------------------------------------------------------- /Pod/Classes/ui/XYQuick_UI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxyheaven/XYQuick/HEAD/Pod/Classes/ui/XYQuick_UI.h -------------------------------------------------------------------------------- /Pod/Classes/ui/extension/UIActionSheet+XY.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxyheaven/XYQuick/HEAD/Pod/Classes/ui/extension/UIActionSheet+XY.h -------------------------------------------------------------------------------- /Pod/Classes/ui/extension/UIActionSheet+XY.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxyheaven/XYQuick/HEAD/Pod/Classes/ui/extension/UIActionSheet+XY.m -------------------------------------------------------------------------------- /Pod/Classes/ui/extension/UIAlertView+XY.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxyheaven/XYQuick/HEAD/Pod/Classes/ui/extension/UIAlertView+XY.h -------------------------------------------------------------------------------- /Pod/Classes/ui/extension/UIAlertView+XY.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxyheaven/XYQuick/HEAD/Pod/Classes/ui/extension/UIAlertView+XY.m -------------------------------------------------------------------------------- /Pod/Classes/ui/extension/UIButton+XY.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxyheaven/XYQuick/HEAD/Pod/Classes/ui/extension/UIButton+XY.h -------------------------------------------------------------------------------- /Pod/Classes/ui/extension/UIButton+XY.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxyheaven/XYQuick/HEAD/Pod/Classes/ui/extension/UIButton+XY.m -------------------------------------------------------------------------------- /Pod/Classes/ui/extension/UIColor+XY.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxyheaven/XYQuick/HEAD/Pod/Classes/ui/extension/UIColor+XY.h -------------------------------------------------------------------------------- /Pod/Classes/ui/extension/UIColor+XY.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxyheaven/XYQuick/HEAD/Pod/Classes/ui/extension/UIColor+XY.m -------------------------------------------------------------------------------- /Pod/Classes/ui/extension/UIControl+XY.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxyheaven/XYQuick/HEAD/Pod/Classes/ui/extension/UIControl+XY.h -------------------------------------------------------------------------------- /Pod/Classes/ui/extension/UIControl+XY.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxyheaven/XYQuick/HEAD/Pod/Classes/ui/extension/UIControl+XY.m -------------------------------------------------------------------------------- /Pod/Classes/ui/extension/UIImage+XY.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxyheaven/XYQuick/HEAD/Pod/Classes/ui/extension/UIImage+XY.h -------------------------------------------------------------------------------- /Pod/Classes/ui/extension/UIImage+XY.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxyheaven/XYQuick/HEAD/Pod/Classes/ui/extension/UIImage+XY.m -------------------------------------------------------------------------------- /Pod/Classes/ui/extension/UILabel+XY.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxyheaven/XYQuick/HEAD/Pod/Classes/ui/extension/UILabel+XY.h -------------------------------------------------------------------------------- /Pod/Classes/ui/extension/UILabel+XY.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxyheaven/XYQuick/HEAD/Pod/Classes/ui/extension/UILabel+XY.m -------------------------------------------------------------------------------- /Pod/Classes/ui/extension/UINavigationBar+XY.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxyheaven/XYQuick/HEAD/Pod/Classes/ui/extension/UINavigationBar+XY.h -------------------------------------------------------------------------------- /Pod/Classes/ui/extension/UINavigationBar+XY.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxyheaven/XYQuick/HEAD/Pod/Classes/ui/extension/UINavigationBar+XY.m -------------------------------------------------------------------------------- /Pod/Classes/ui/extension/UITable+XY.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxyheaven/XYQuick/HEAD/Pod/Classes/ui/extension/UITable+XY.h -------------------------------------------------------------------------------- /Pod/Classes/ui/extension/UITable+XY.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxyheaven/XYQuick/HEAD/Pod/Classes/ui/extension/UITable+XY.m -------------------------------------------------------------------------------- /Pod/Classes/ui/extension/UIView+XY.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxyheaven/XYQuick/HEAD/Pod/Classes/ui/extension/UIView+XY.h -------------------------------------------------------------------------------- /Pod/Classes/ui/extension/UIView+XY.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxyheaven/XYQuick/HEAD/Pod/Classes/ui/extension/UIView+XY.m -------------------------------------------------------------------------------- /Pod/Classes/ui/extension/UIViewController+XY.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxyheaven/XYQuick/HEAD/Pod/Classes/ui/extension/UIViewController+XY.h -------------------------------------------------------------------------------- /Pod/Classes/ui/extension/UIViewController+XY.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxyheaven/XYQuick/HEAD/Pod/Classes/ui/extension/UIViewController+XY.m -------------------------------------------------------------------------------- /Pod/Classes/ui/extension/UIWebView+XY.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxyheaven/XYQuick/HEAD/Pod/Classes/ui/extension/UIWebView+XY.h -------------------------------------------------------------------------------- /Pod/Classes/ui/extension/UIWebView+XY.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxyheaven/XYQuick/HEAD/Pod/Classes/ui/extension/UIWebView+XY.m -------------------------------------------------------------------------------- /Pod/Classes/ui/extension/UIWindow+XY.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxyheaven/XYQuick/HEAD/Pod/Classes/ui/extension/UIWindow+XY.h -------------------------------------------------------------------------------- /Pod/Classes/ui/extension/UIWindow+XY.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxyheaven/XYQuick/HEAD/Pod/Classes/ui/extension/UIWindow+XY.m -------------------------------------------------------------------------------- /Pod/Classes/ui/modules/XYAnimate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxyheaven/XYQuick/HEAD/Pod/Classes/ui/modules/XYAnimate.h -------------------------------------------------------------------------------- /Pod/Classes/ui/modules/XYAnimate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxyheaven/XYQuick/HEAD/Pod/Classes/ui/modules/XYAnimate.m -------------------------------------------------------------------------------- /Pod/Classes/ui/modules/XYBaseViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxyheaven/XYQuick/HEAD/Pod/Classes/ui/modules/XYBaseViewController.h -------------------------------------------------------------------------------- /Pod/Classes/ui/modules/XYBaseViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxyheaven/XYQuick/HEAD/Pod/Classes/ui/modules/XYBaseViewController.m -------------------------------------------------------------------------------- /Pod/Classes/ui/modules/XYHUDProtocol.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxyheaven/XYQuick/HEAD/Pod/Classes/ui/modules/XYHUDProtocol.h -------------------------------------------------------------------------------- /Pod/Classes/ui/modules/XYKeyboardHelper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxyheaven/XYQuick/HEAD/Pod/Classes/ui/modules/XYKeyboardHelper.h -------------------------------------------------------------------------------- /Pod/Classes/ui/modules/XYKeyboardHelper.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxyheaven/XYQuick/HEAD/Pod/Classes/ui/modules/XYKeyboardHelper.m -------------------------------------------------------------------------------- /Pod/Classes/ui/modules/XYTabBar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxyheaven/XYQuick/HEAD/Pod/Classes/ui/modules/XYTabBar.h -------------------------------------------------------------------------------- /Pod/Classes/ui/modules/XYTabBar.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxyheaven/XYQuick/HEAD/Pod/Classes/ui/modules/XYTabBar.m -------------------------------------------------------------------------------- /Pod/Classes/ui/modules/XYTabBarController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxyheaven/XYQuick/HEAD/Pod/Classes/ui/modules/XYTabBarController.h -------------------------------------------------------------------------------- /Pod/Classes/ui/modules/XYTabBarController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxyheaven/XYQuick/HEAD/Pod/Classes/ui/modules/XYTabBarController.m -------------------------------------------------------------------------------- /Pod/Classes/ui/modules/XYUIDefine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxyheaven/XYQuick/HEAD/Pod/Classes/ui/modules/XYUIDefine.h -------------------------------------------------------------------------------- /Pod/Classes/ui/modules/XYViewControllerManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxyheaven/XYQuick/HEAD/Pod/Classes/ui/modules/XYViewControllerManager.h -------------------------------------------------------------------------------- /Pod/Classes/ui/modules/XYViewControllerManager.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxyheaven/XYQuick/HEAD/Pod/Classes/ui/modules/XYViewControllerManager.m -------------------------------------------------------------------------------- /Pod/Classes/ui/modules/XYViewLayout.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxyheaven/XYQuick/HEAD/Pod/Classes/ui/modules/XYViewLayout.h -------------------------------------------------------------------------------- /Pod/Classes/ui/modules/XYViewLayout.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxyheaven/XYQuick/HEAD/Pod/Classes/ui/modules/XYViewLayout.m -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxyheaven/XYQuick/HEAD/README.md -------------------------------------------------------------------------------- /XYQuick.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxyheaven/XYQuick/HEAD/XYQuick.podspec -------------------------------------------------------------------------------- /_Pods.xcodeproj: -------------------------------------------------------------------------------- 1 | Example/Pods/Pods.xcodeproj --------------------------------------------------------------------------------