├── .DS_Store ├── .gitignore ├── 3DTouchDemo ├── 3DTouchDemo.xcodeproj │ ├── project.pbxproj │ └── project.xcworkspace │ │ └── contents.xcworkspacedata └── 3DTouchDemo │ ├── AppDelegate.h │ ├── AppDelegate.m │ ├── Assets.xcassets │ └── AppIcon.appiconset │ │ └── Contents.json │ ├── Base.lproj │ ├── LaunchScreen.storyboard │ └── Main.storyboard │ ├── Info.plist │ ├── PrefixHeader.pch │ ├── SecondViewController.h │ ├── SecondViewController.m │ ├── SecondViewController.xib │ ├── ThirdViewController.h │ ├── ThirdViewController.m │ ├── ThirdViewController.xib │ ├── ViewController.h │ ├── ViewController.m │ └── main.m ├── AudioServiceDemo ├── AudioServiceDemo.xcodeproj │ ├── project.pbxproj │ └── project.xcworkspace │ │ └── contents.xcworkspacedata └── AudioServiceDemo │ ├── AppDelegate.h │ ├── AppDelegate.m │ ├── Assets.xcassets │ └── AppIcon.appiconset │ │ └── Contents.json │ ├── Base.lproj │ ├── LaunchScreen.storyboard │ └── Main.storyboard │ ├── Info.plist │ ├── ViewController.h │ ├── ViewController.m │ ├── main.m │ └── success.mp3 ├── BlockDemo ├── BlockDemo.xcodeproj │ ├── project.pbxproj │ └── project.xcworkspace │ │ ├── contents.xcworkspacedata │ │ └── xcshareddata │ │ └── IDEWorkspaceChecks.plist └── BlockDemo │ ├── AppDelegate.h │ ├── AppDelegate.m │ ├── Assets.xcassets │ ├── AppIcon.appiconset │ │ └── Contents.json │ └── Contents.json │ ├── Base.lproj │ ├── LaunchScreen.storyboard │ └── Main.storyboard │ ├── BlockViewController.h │ ├── BlockViewController.m │ ├── Calculator.h │ ├── Calculator.m │ ├── Info.plist │ ├── Person.h │ ├── Person.m │ ├── SceneDelegate.h │ ├── SceneDelegate.m │ ├── ViewController.h │ ├── ViewController.m │ ├── main.cpp │ └── main.m ├── CALayerDemo ├── CALayerDemo.xcodeproj │ ├── project.pbxproj │ └── project.xcworkspace │ │ └── contents.xcworkspacedata └── CALayerDemo │ ├── AppDelegate.h │ ├── AppDelegate.m │ ├── Assets.xcassets │ └── AppIcon.appiconset │ │ └── Contents.json │ ├── Base.lproj │ ├── LaunchScreen.storyboard │ └── Main.storyboard │ ├── Info.plist │ ├── ViewController.h │ ├── ViewController.m │ ├── image.png │ └── main.m ├── CALayerDemo1 ├── CALayerDemo1.xcodeproj │ ├── project.pbxproj │ └── project.xcworkspace │ │ ├── contents.xcworkspacedata │ │ └── xcshareddata │ │ └── IDEWorkspaceChecks.plist └── CALayerDemo1 │ ├── AppDelegate.h │ ├── AppDelegate.m │ ├── Assets.xcassets │ ├── AppIcon.appiconset │ │ └── Contents.json │ └── Contents.json │ ├── Base.lproj │ ├── LaunchScreen.storyboard │ └── Main.storyboard │ ├── Info.plist │ ├── ViewController.h │ ├── ViewController.m │ └── main.m ├── CMAttitudeDemo ├── CMAttitudeDemo.xcodeproj │ ├── project.pbxproj │ └── project.xcworkspace │ │ └── contents.xcworkspacedata ├── CMAttitudeDemo │ ├── AppDelegate.h │ ├── AppDelegate.m │ ├── Assets.xcassets │ │ └── AppIcon.appiconset │ │ │ └── Contents.json │ ├── Base.lproj │ │ ├── LaunchScreen.storyboard │ │ └── Main.storyboard │ ├── Info.plist │ ├── ViewController.h │ ├── ViewController.m │ └── main.m ├── CMAttitudeDemoTests │ ├── CMAttitudeDemoTests.m │ └── Info.plist └── CMAttitudeDemoUITests │ ├── CMAttitudeDemoUITests.m │ └── Info.plist ├── CMMotionActivityManagerDemo ├── TestDemo.xcodeproj │ ├── project.pbxproj │ └── project.xcworkspace │ │ └── contents.xcworkspacedata ├── TestDemo │ ├── AppDelegate.h │ ├── AppDelegate.m │ ├── Assets.xcassets │ │ └── AppIcon.appiconset │ │ │ └── Contents.json │ ├── Base.lproj │ │ ├── LaunchScreen.storyboard │ │ └── Main.storyboard │ ├── Info.plist │ ├── ViewController.h │ ├── ViewController.m │ └── main.m ├── TestDemoTests │ ├── Info.plist │ └── TestDemoTests.m └── TestDemoUITests │ ├── Info.plist │ └── TestDemoUITests.m ├── CMPedometerDemo ├── CMPedometerDemo.xcodeproj │ ├── project.pbxproj │ └── project.xcworkspace │ │ └── contents.xcworkspacedata ├── CMPedometerDemo │ ├── AppDelegate.h │ ├── AppDelegate.m │ ├── Assets.xcassets │ │ └── AppIcon.appiconset │ │ │ └── Contents.json │ ├── Base.lproj │ │ ├── LaunchScreen.storyboard │ │ └── Main.storyboard │ ├── Info.plist │ ├── ViewController.h │ ├── ViewController.m │ └── main.m ├── CMPedometerDemoTests │ ├── CMPedometerDemoTests.m │ └── Info.plist └── CMPedometerDemoUITests │ ├── CMPedometerDemoUITests.m │ └── Info.plist ├── CalculatorDemo ├── CalculatorDemo.xcodeproj │ ├── project.pbxproj │ └── project.xcworkspace │ │ └── contents.xcworkspacedata ├── CalculatorDemo.xcworkspace │ └── contents.xcworkspacedata ├── CalculatorDemo │ ├── AppDelegate.swift │ ├── Assets.xcassets │ │ └── AppIcon.appiconset │ │ │ └── Contents.json │ ├── Base.lproj │ │ ├── LaunchScreen.storyboard │ │ └── Main.storyboard │ ├── Info.plist │ └── ViewController.swift ├── Podfile.lock ├── Pods │ ├── Headers │ │ ├── Private │ │ │ └── MJRefresh │ │ │ │ ├── MJRefresh.h │ │ │ │ ├── MJRefreshComponent.h │ │ │ │ ├── MJRefreshConst.h │ │ │ │ ├── MJRefreshFooter.h │ │ │ │ ├── MJRefreshGifFooter.h │ │ │ │ ├── MJRefreshGifHeader.h │ │ │ │ ├── MJRefreshHeader.h │ │ │ │ ├── MJRefreshLegendFooter.h │ │ │ │ ├── MJRefreshLegendHeader.h │ │ │ │ ├── UIScrollView+MJExtension.h │ │ │ │ ├── UIScrollView+MJRefresh.h │ │ │ │ └── UIView+MJExtension.h │ │ └── Public │ │ │ └── MJRefresh │ │ │ ├── MJRefresh.h │ │ │ ├── MJRefreshComponent.h │ │ │ ├── MJRefreshConst.h │ │ │ ├── MJRefreshFooter.h │ │ │ ├── MJRefreshGifFooter.h │ │ │ ├── MJRefreshGifHeader.h │ │ │ ├── MJRefreshHeader.h │ │ │ ├── MJRefreshLegendFooter.h │ │ │ ├── MJRefreshLegendHeader.h │ │ │ ├── UIScrollView+MJExtension.h │ │ │ ├── UIScrollView+MJRefresh.h │ │ │ └── UIView+MJExtension.h │ ├── MJRefresh │ │ ├── LICENSE │ │ ├── MJRefreshExample │ │ │ └── MJRefreshExample │ │ │ │ └── MJRefresh │ │ │ │ ├── MJRefresh.bundle │ │ │ │ └── arrow@2x.png │ │ │ │ ├── MJRefresh.h │ │ │ │ ├── MJRefreshComponent.h │ │ │ │ ├── MJRefreshComponent.m │ │ │ │ ├── MJRefreshConst.h │ │ │ │ ├── MJRefreshConst.m │ │ │ │ ├── MJRefreshFooter.h │ │ │ │ ├── MJRefreshFooter.m │ │ │ │ ├── MJRefreshGifFooter.h │ │ │ │ ├── MJRefreshGifFooter.m │ │ │ │ ├── MJRefreshGifHeader.h │ │ │ │ ├── MJRefreshGifHeader.m │ │ │ │ ├── MJRefreshHeader.h │ │ │ │ ├── MJRefreshHeader.m │ │ │ │ ├── MJRefreshLegendFooter.h │ │ │ │ ├── MJRefreshLegendFooter.m │ │ │ │ ├── MJRefreshLegendHeader.h │ │ │ │ ├── MJRefreshLegendHeader.m │ │ │ │ ├── UIScrollView+MJExtension.h │ │ │ │ ├── UIScrollView+MJExtension.m │ │ │ │ ├── UIScrollView+MJRefresh.h │ │ │ │ ├── UIScrollView+MJRefresh.m │ │ │ │ ├── UIView+MJExtension.h │ │ │ │ └── UIView+MJExtension.m │ │ └── README.md │ ├── Manifest.lock │ ├── Pods.xcodeproj │ │ └── project.pbxproj │ └── Target Support Files │ │ ├── MJRefresh │ │ ├── MJRefresh-dummy.m │ │ ├── MJRefresh-prefix.pch │ │ └── MJRefresh.xcconfig │ │ └── Pods │ │ ├── Pods-acknowledgements.markdown │ │ ├── Pods-acknowledgements.plist │ │ ├── Pods-dummy.m │ │ ├── Pods-frameworks.sh │ │ ├── Pods-resources.sh │ │ ├── Pods.debug.xcconfig │ │ └── Pods.release.xcconfig └── podfile ├── CheckFaceDemo ├── CheckFaceDemo.xcodeproj │ ├── project.pbxproj │ └── project.xcworkspace │ │ └── contents.xcworkspacedata └── CheckFaceDemo │ ├── AppDelegate.h │ ├── AppDelegate.m │ ├── Assets.xcassets │ └── AppIcon.appiconset │ │ └── Contents.json │ ├── Base.lproj │ ├── LaunchScreen.storyboard │ └── Main.storyboard │ ├── Info.plist │ ├── ViewController.h │ ├── ViewController.m │ ├── main.m │ └── 证件照.jpg ├── ClipViewController ├── ClipViewController.h └── ClipViewController.m ├── CloudAPIDemo ├── CloudAPIDemo.xcodeproj │ ├── project.pbxproj │ └── project.xcworkspace │ │ └── contents.xcworkspacedata ├── CloudAPIDemo │ ├── AppDelegate.h │ ├── AppDelegate.m │ ├── Assets.xcassets │ │ └── AppIcon.appiconset │ │ │ └── Contents.json │ ├── Base.lproj │ │ ├── LaunchScreen.storyboard │ │ └── Main.storyboard │ ├── CloudAPIDemo.entitlements │ ├── Info.plist │ ├── ViewController.h │ ├── ViewController.m │ └── main.m ├── CloudAPIDemoTests │ ├── CloudAPIDemoTests.m │ └── Info.plist └── CloudAPIDemoUITests │ ├── CloudAPIDemoUITests.m │ └── Info.plist ├── ColorfulQRCodeDemo ├── ColorfulQRCodeDemo.xcodeproj │ ├── project.pbxproj │ └── project.xcworkspace │ │ └── contents.xcworkspacedata └── ColorfulQRCodeDemo │ ├── AppDelegate.h │ ├── AppDelegate.m │ ├── Assets.xcassets │ └── AppIcon.appiconset │ │ └── Contents.json │ ├── Base.lproj │ ├── LaunchScreen.storyboard │ └── Main.storyboard │ ├── Info.plist │ ├── QRCodeImage.h │ ├── QRCodeImage.m │ ├── ViewController.h │ ├── ViewController.m │ └── main.m ├── Copy&Cut ├── Copy&Cut.xcodeproj │ ├── project.pbxproj │ └── project.xcworkspace │ │ └── contents.xcworkspacedata └── Copy&Cut │ ├── 1.png │ ├── 3.png │ ├── AppDelegate.h │ ├── AppDelegate.m │ ├── Assets.xcassets │ └── AppIcon.appiconset │ │ └── Contents.json │ ├── Base.lproj │ ├── LaunchScreen.storyboard │ └── Main.storyboard │ ├── EWCopyImageView.h │ ├── EWCopyImageView.m │ ├── EWCopyLabel.h │ ├── EWCopyLabel.m │ ├── Info.plist │ ├── SecondViewController.h │ ├── SecondViewController.m │ ├── ThirdViewController.h │ ├── ThirdViewController.m │ ├── ViewController.h │ ├── ViewController.m │ └── main.m ├── CoreImage ├── CoreImage.xcodeproj │ ├── project.pbxproj │ └── project.xcworkspace │ │ └── contents.xcworkspacedata └── CoreImage │ ├── 1.png │ ├── AppDelegate.h │ ├── AppDelegate.m │ ├── Assets.xcassets │ └── AppIcon.appiconset │ │ └── Contents.json │ ├── Base.lproj │ ├── LaunchScreen.storyboard │ └── Main.storyboard │ ├── Info.plist │ ├── ViewController.h │ ├── ViewController.m │ └── main.m ├── CustomAlertView ├── CustomAlertView.xcodeproj │ ├── project.pbxproj │ └── project.xcworkspace │ │ └── contents.xcworkspacedata └── CustomAlertView │ ├── 1.png │ ├── AppDelegate.h │ ├── AppDelegate.m │ ├── Assets.xcassets │ └── AppIcon.appiconset │ │ └── Contents.json │ ├── Base.lproj │ ├── LaunchScreen.storyboard │ └── Main.storyboard │ ├── Info.plist │ ├── ViewController.h │ ├── ViewController.m │ └── main.m ├── CustomButton ├── CustomButton.xcodeproj │ ├── project.pbxproj │ └── project.xcworkspace │ │ ├── contents.xcworkspacedata │ │ └── xcshareddata │ │ └── IDEWorkspaceChecks.plist └── CustomButton │ ├── AppDelegate.h │ ├── AppDelegate.m │ ├── Assets.xcassets │ ├── AppIcon.appiconset │ │ └── Contents.json │ └── Contents.json │ ├── Base.lproj │ ├── LaunchScreen.storyboard │ └── Main.storyboard │ ├── CustomButton.h │ ├── CustomButton.m │ ├── Info.plist │ ├── ViewController.h │ ├── ViewController.m │ └── main.m ├── CustomLetterIndexView ├── CustomLetterIndexView.xcodeproj │ ├── project.pbxproj │ └── project.xcworkspace │ │ ├── contents.xcworkspacedata │ │ └── xcshareddata │ │ └── IDEWorkspaceChecks.plist └── CustomLetterIndexView │ ├── AppDelegate.h │ ├── AppDelegate.m │ ├── Assets.xcassets │ ├── AppIcon.appiconset │ │ └── Contents.json │ └── Contents.json │ ├── Base.lproj │ ├── LaunchScreen.storyboard │ └── Main.storyboard │ ├── IndexedTableView.h │ ├── IndexedTableView.m │ ├── Info.plist │ ├── ViewController.h │ ├── ViewController.m │ ├── ViewReusePool.h │ ├── ViewReusePool.m │ └── main.m ├── CustomProgressHud ├── CustomProgressHud.xcodeproj │ ├── project.pbxproj │ └── project.xcworkspace │ │ └── contents.xcworkspacedata └── CustomProgressHud │ ├── AppDelegate.h │ ├── AppDelegate.m │ ├── Assets.xcassets │ └── AppIcon.appiconset │ │ └── Contents.json │ ├── Base.lproj │ ├── LaunchScreen.storyboard │ └── Main.storyboard │ ├── Info.plist │ ├── ProgressHUD.h │ ├── ProgressHUD.m │ ├── ProgressViewWithActivityView.h │ ├── ProgressViewWithActivityView.m │ ├── RootViewController.h │ ├── RootViewController.m │ └── main.m ├── EWWaterFallLayout ├── EWWaterFallLayout.xcodeproj │ ├── project.pbxproj │ └── project.xcworkspace │ │ ├── contents.xcworkspacedata │ │ └── xcshareddata │ │ └── IDEWorkspaceChecks.plist └── EWWaterFallLayout │ ├── AppDelegate.h │ ├── AppDelegate.m │ ├── Assets.xcassets │ ├── AppIcon.appiconset │ │ └── Contents.json │ └── Contents.json │ ├── Base.lproj │ ├── LaunchScreen.storyboard │ └── Main.storyboard │ ├── EWWaterFallLayout.h │ ├── EWWaterFallLayout.m │ ├── Info.plist │ ├── ViewController.h │ ├── ViewController.m │ └── main.m ├── EditingTest ├── EditingTest.xcodeproj │ ├── project.pbxproj │ └── project.xcworkspace │ │ └── contents.xcworkspacedata └── EditingTest │ ├── AppDelegate.h │ ├── AppDelegate.m │ ├── Assets.xcassets │ └── AppIcon.appiconset │ │ └── Contents.json │ ├── Base.lproj │ ├── LaunchScreen.storyboard │ └── Main.storyboard │ ├── Info.plist │ ├── ViewController.h │ ├── ViewController.m │ └── main.m ├── ExceptionDemo ├── ExceptionDemo.xcodeproj │ ├── project.pbxproj │ └── project.xcworkspace │ │ ├── contents.xcworkspacedata │ │ └── xcshareddata │ │ └── IDEWorkspaceChecks.plist └── ExceptionDemo │ ├── AppDelegate.h │ ├── AppDelegate.m │ ├── Assets.xcassets │ ├── AppIcon.appiconset │ │ └── Contents.json │ └── Contents.json │ ├── Base.lproj │ ├── LaunchScreen.storyboard │ └── Main.storyboard │ ├── Info.plist │ ├── NSMutableArray+Extension.h │ ├── NSMutableArray+Extension.m │ ├── ViewController.h │ ├── ViewController.m │ └── main.m ├── FlowButtonDemo ├── FlowButtonDemo.xcodeproj │ ├── project.pbxproj │ └── project.xcworkspace │ │ ├── contents.xcworkspacedata │ │ └── xcshareddata │ │ └── IDEWorkspaceChecks.plist └── FlowButtonDemo │ ├── AppDelegate.h │ ├── AppDelegate.m │ ├── Assets.xcassets │ ├── AppIcon.appiconset │ │ └── Contents.json │ └── Contents.json │ ├── Base.lproj │ ├── LaunchScreen.storyboard │ └── Main.storyboard │ ├── FlowButton.h │ ├── FlowButton.m │ ├── Info.plist │ ├── ViewController.h │ ├── ViewController.m │ ├── btnLightMask.png │ └── main.m ├── GetDeviceDemo ├── GetDeviceDemo.xcodeproj │ ├── project.pbxproj │ └── project.xcworkspace │ │ └── contents.xcworkspacedata └── GetDeviceDemo │ ├── AppDelegate.h │ ├── AppDelegate.m │ ├── Assets.xcassets │ └── AppIcon.appiconset │ │ └── Contents.json │ ├── Base.lproj │ ├── LaunchScreen.storyboard │ └── Main.storyboard │ ├── Info.plist │ ├── ViewController.h │ ├── ViewController.m │ └── main.m ├── GradientView ├── GradientView.xcodeproj │ ├── project.pbxproj │ └── project.xcworkspace │ │ ├── contents.xcworkspacedata │ │ └── xcshareddata │ │ └── IDEWorkspaceChecks.plist └── GradientView │ ├── AppDelegate.h │ ├── AppDelegate.m │ ├── Assets.xcassets │ ├── AppIcon.appiconset │ │ └── Contents.json │ └── Contents.json │ ├── Base.lproj │ ├── LaunchScreen.storyboard │ └── Main.storyboard │ ├── Info.plist │ ├── ViewController.h │ ├── ViewController.m │ ├── main.m │ └── zh_buttonbg@3x.png ├── GreedySnakeDemo ├── GreedySnakeDemo.xcodeproj │ ├── project.pbxproj │ └── project.xcworkspace │ │ └── contents.xcworkspacedata ├── GreedySnakeDemo │ ├── AppDelegate.h │ ├── AppDelegate.m │ ├── Assets.xcassets │ │ └── AppIcon.appiconset │ │ │ └── Contents.json │ ├── Base.lproj │ │ ├── LaunchScreen.storyboard │ │ └── Main.storyboard │ ├── CustomPoint.h │ ├── CustomPoint.m │ ├── GreedySnakeView.h │ ├── GreedySnakeView.m │ ├── Info.plist │ ├── ReferenceViewController.h │ ├── ReferenceViewController.m │ ├── ReferenceViewController.xib │ ├── ViewController.h │ ├── ViewController.m │ ├── close.png │ ├── crash.wav │ ├── gu.mp3 │ ├── icon.png │ ├── main.m │ ├── pause.png │ └── start.png ├── GreedySnakeDemoTests │ ├── GreedySnakeDemoTests.m │ └── Info.plist └── GreedySnakeDemoUITests │ ├── GreedySnakeDemoUITests.m │ └── Info.plist ├── HealthKitDemo ├── HealthKitDemo.xcodeproj │ ├── project.pbxproj │ └── project.xcworkspace │ │ └── contents.xcworkspacedata └── HealthKitDemo │ ├── AppDelegate.h │ ├── AppDelegate.m │ ├── Assets.xcassets │ └── AppIcon.appiconset │ │ └── Contents.json │ ├── Base.lproj │ ├── LaunchScreen.storyboard │ └── Main.storyboard │ ├── HealthKitDemo.entitlements │ ├── Info.plist │ ├── ViewController.h │ ├── ViewController.m │ └── main.m ├── ImageMoveAnimationDemo ├── ImageMoveAnimationDemo.xcodeproj │ ├── project.pbxproj │ └── project.xcworkspace │ │ └── contents.xcworkspacedata └── ImageMoveAnimationDemo │ ├── AppDelegate.h │ ├── AppDelegate.m │ ├── Assets.xcassets │ ├── AppIcon.appiconset │ │ └── Contents.json │ ├── Contents.json │ └── nvtou.imageset │ │ ├── Contents.json │ │ └── nvtou.jpg │ ├── Base.lproj │ ├── LaunchScreen.storyboard │ └── Main.storyboard │ ├── Info.plist │ ├── ViewController.h │ ├── ViewController.m │ └── main.m ├── JpushDemo ├── Demo.xcodeproj │ ├── project.pbxproj │ └── project.xcworkspace │ │ └── contents.xcworkspacedata ├── Demo.xcworkspace │ └── contents.xcworkspacedata ├── Demo │ ├── AppDelegate.h │ ├── AppDelegate.m │ ├── Assets.xcassets │ │ └── AppIcon.appiconset │ │ │ └── Contents.json │ ├── Base.lproj │ │ ├── LaunchScreen.storyboard │ │ └── Main.storyboard │ ├── Info.plist │ ├── ViewController.h │ ├── ViewController.m │ ├── icon.png │ └── main.m ├── Podfile ├── Podfile.lock ├── Pods │ ├── Headers │ │ ├── Private │ │ │ └── JPush │ │ │ │ └── JPUSHService.h │ │ └── Public │ │ │ └── JPush │ │ │ └── JPUSHService.h │ ├── JPush │ │ ├── LICENSE │ │ ├── README.md │ │ └── lib │ │ │ ├── JPUSHService.h │ │ │ └── libjpush-ios-2.1.8.a │ ├── Manifest.lock │ ├── Pods.xcodeproj │ │ └── project.pbxproj │ └── Target Support Files │ │ └── Pods │ │ ├── Pods-acknowledgements.markdown │ │ ├── Pods-acknowledgements.plist │ │ ├── Pods-dummy.m │ │ ├── Pods-frameworks.sh │ │ ├── Pods-resources.sh │ │ ├── Pods.debug.xcconfig │ │ └── Pods.release.xcconfig └── PushConfig.plist ├── MoonDemo ├── imageDemo.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ ├── contents.xcworkspacedata │ │ ├── xcshareddata │ │ │ └── IDEWorkspaceChecks.plist │ │ └── xcuserdata │ │ │ └── zhenghao.xcuserdatad │ │ │ └── UserInterfaceState.xcuserstate │ └── xcuserdata │ │ └── zhenghao.xcuserdatad │ │ └── xcschemes │ │ └── xcschememanagement.plist └── imageDemo │ ├── AppDelegate.h │ ├── AppDelegate.m │ ├── Assets.xcassets │ ├── AppIcon.appiconset │ │ └── Contents.json │ └── Contents.json │ ├── Base.lproj │ ├── LaunchScreen.storyboard │ └── Main.storyboard │ ├── Info.plist │ ├── ViewController.h │ ├── ViewController.m │ ├── image1.png │ └── main.m ├── MotionLaunchDemo ├── MotionLaunchDemo.xcodeproj │ ├── project.pbxproj │ └── project.xcworkspace │ │ └── contents.xcworkspacedata └── MotionLaunchDemo │ ├── AppDelegate.h │ ├── AppDelegate.m │ ├── Assets.xcassets │ └── AppIcon.appiconset │ │ └── Contents.json │ ├── Base.lproj │ ├── LaunchScreen.storyboard │ └── Main.storyboard │ ├── SpeedDialView.h │ ├── SpeedDialView.m │ ├── ViewController.h │ ├── ViewController.m │ ├── heihei.png │ ├── main.m │ ├── shi.png │ └── xv.png ├── MotionManagerDemo ├── IMG_0017.PNG ├── IMG_0018.PNG ├── MotionManagerDemo.xcodeproj │ ├── project.pbxproj │ └── project.xcworkspace │ │ └── contents.xcworkspacedata ├── MotionManagerDemo │ ├── AppDelegate.h │ ├── AppDelegate.m │ ├── Assets.xcassets │ │ └── AppIcon.appiconset │ │ │ └── Contents.json │ ├── Base.lproj │ │ ├── LaunchScreen.storyboard │ │ └── Main.storyboard │ ├── Info.plist │ ├── ViewController.h │ ├── ViewController.m │ └── main.m ├── MotionManagerDemoTests │ ├── Info.plist │ └── MotionManagerDemoTests.m └── MotionManagerDemoUITests │ ├── Info.plist │ └── MotionManagerDemoUITests.m ├── Multi-TargetDemo ├── Multi-TargetDemo.xcodeproj │ ├── project.pbxproj │ └── project.xcworkspace │ │ └── contents.xcworkspacedata ├── Multi-TargetDemo │ ├── AppDelegate.h │ ├── AppDelegate.m │ ├── Assets.xcassets │ │ └── AppIcon.appiconset │ │ │ └── Contents.json │ ├── Base.lproj │ │ ├── LaunchScreen.storyboard │ │ └── Main.storyboard │ ├── Info.plist │ ├── ViewController.h │ ├── ViewController.m │ └── main.m └── Target2 │ ├── Assets.xcassets │ └── AppIcon.appiconset │ │ └── Contents.json │ ├── Base.lproj │ └── LaunchScreen.storyboard │ ├── Info.plist │ ├── Target2AppDelegate.h │ ├── Target2AppDelegate.m │ └── main.m ├── NSLocaleDemo ├── NSLocaleDemo.xcodeproj │ ├── project.pbxproj │ └── project.xcworkspace │ │ ├── contents.xcworkspacedata │ │ └── xcshareddata │ │ └── IDEWorkspaceChecks.plist ├── NSLocaleDemo │ ├── AppDelegate.h │ ├── AppDelegate.m │ ├── Assets.xcassets │ │ └── AppIcon.appiconset │ │ │ └── Contents.json │ ├── Base.lproj │ │ ├── InfoPlist.strings │ │ ├── LaunchScreen.storyboard │ │ └── Main.storyboard │ ├── Info.plist │ ├── ViewController.h │ ├── ViewController.m │ ├── en.lproj │ │ ├── InfoPlist.strings │ │ ├── Localizable.strings │ │ └── img.png │ ├── main.m │ └── zh-Hans.lproj │ │ ├── InfoPlist.strings │ │ ├── LaunchScreen.strings │ │ ├── Main.storyboard │ │ └── img.png ├── NSLocaleDemoTests │ ├── Info.plist │ └── NSLocaleDemoTests.m ├── NSLocaleDemoUITests │ ├── Info.plist │ └── NSLocaleDemoUITests.m └── zh-Hans.lproj │ └── Localizable.strings ├── ProgressTest ├── ProgressTest.xcodeproj │ ├── project.pbxproj │ └── project.xcworkspace │ │ └── contents.xcworkspacedata └── ProgressTest │ ├── AppDelegate.h │ ├── AppDelegate.m │ ├── Assets.xcassets │ └── AppIcon.appiconset │ │ └── Contents.json │ ├── Base.lproj │ ├── LaunchScreen.storyboard │ └── Main.storyboard │ ├── Info.plist │ ├── ViewController.h │ ├── ViewController.m │ └── main.m ├── Quartz2DDemo ├── Quartz2DDemo.xcodeproj │ ├── project.pbxproj │ └── project.xcworkspace │ │ └── contents.xcworkspacedata └── Quartz2DDemo │ ├── AppDelegate.h │ ├── AppDelegate.m │ ├── Assets.xcassets │ └── AppIcon.appiconset │ │ └── Contents.json │ ├── BarChartView.h │ ├── BarChartView.m │ ├── Base.lproj │ ├── LaunchScreen.storyboard │ └── Main.storyboard │ ├── CustomImageView.h │ ├── CustomImageView.m │ ├── CustomProgressView.h │ ├── CustomProgressView.m │ ├── CustomTextView.h │ ├── CustomTextView.m │ ├── CustomView.h │ ├── CustomView.m │ ├── Info.plist │ ├── PieView.h │ ├── PieView.m │ ├── ViewController.h │ ├── ViewController.m │ ├── image.png │ └── main.m ├── ReadAddressBookDemo ├── ReadAddressBookDemo.xcodeproj │ ├── project.pbxproj │ └── project.xcworkspace │ │ └── contents.xcworkspacedata └── ReadAddressBookDemo │ ├── AppDelegate.h │ ├── AppDelegate.m │ ├── Assets.xcassets │ └── AppIcon.appiconset │ │ └── Contents.json │ ├── Base.lproj │ ├── LaunchScreen.storyboard │ └── Main.storyboard │ ├── Info.plist │ ├── ViewController.h │ ├── ViewController.m │ ├── main.m │ └── tx.png ├── ReadBrightnessDemo ├── ReadBrightnessDemo.xcodeproj │ ├── project.pbxproj │ └── project.xcworkspace │ │ └── contents.xcworkspacedata └── ReadBrightnessDemo │ ├── AppDelegate.h │ ├── AppDelegate.m │ ├── Assets.xcassets │ └── AppIcon.appiconset │ │ └── Contents.json │ ├── Base.lproj │ ├── LaunchScreen.storyboard │ └── Main.storyboard │ ├── Info.plist │ ├── ViewController.h │ ├── ViewController.m │ └── main.m ├── ResponderChainDemo ├── ResponderChainDemo.xcodeproj │ ├── project.pbxproj │ └── project.xcworkspace │ │ ├── contents.xcworkspacedata │ │ └── xcshareddata │ │ └── IDEWorkspaceChecks.plist └── ResponderChainDemo │ ├── AppDelegate.h │ ├── AppDelegate.m │ ├── Assets.xcassets │ ├── AppIcon.appiconset │ │ └── Contents.json │ └── Contents.json │ ├── Base.lproj │ ├── LaunchScreen.storyboard │ └── Main.storyboard │ ├── EnlageButtonView.h │ ├── EnlageButtonView.m │ ├── Hook.h │ ├── Hook.m │ ├── Info.plist │ ├── SceneDelegate.h │ ├── SceneDelegate.m │ ├── SubView.h │ ├── SubView.m │ ├── SubViewController.h │ ├── SubViewController.m │ ├── SuperView.h │ ├── SuperView.m │ ├── UIButton+ClickAction.h │ ├── UIButton+ClickAction.m │ ├── UIButton+EventInterval.h │ ├── UIButton+EventInterval.m │ ├── ViewController.h │ ├── ViewController.m │ └── main.m ├── RunLabel ├── RunLabel.xcodeproj │ ├── project.pbxproj │ └── project.xcworkspace │ │ └── contents.xcworkspacedata └── RunLabel │ ├── AppDelegate.h │ ├── AppDelegate.m │ ├── Assets.xcassets │ └── AppIcon.appiconset │ │ └── Contents.json │ ├── AutoScrollLabel.h │ ├── AutoScrollLabel.m │ ├── Base.lproj │ ├── LaunchScreen.storyboard │ └── Main.storyboard │ ├── Info.plist │ ├── UIMarqueeBarView.h │ ├── UIMarqueeBarView.m │ ├── ViewController.h │ ├── ViewController.m │ └── main.m ├── RuntimeEGDemo ├── RuntimeEGDemo.xcodeproj │ ├── project.pbxproj │ └── project.xcworkspace │ │ ├── contents.xcworkspacedata │ │ └── xcshareddata │ │ └── IDEWorkspaceChecks.plist └── RuntimeEGDemo │ ├── Runtime │ ├── RuntimeKit.h │ └── RuntimeKit.m │ ├── TestClass │ ├── TestClass+AssociatedObject.h │ ├── TestClass+AssociatedObject.m │ ├── TestClass+Category.h │ ├── TestClass+Category.m │ ├── TestClass+ExchangeMethod.h │ ├── TestClass+ExchangeMethod.m │ ├── TestClass.h │ └── TestClass.m │ └── main.m ├── SDWebImage进度条 ├── SDWebImage进度条.xcodeproj │ ├── project.pbxproj │ └── project.xcworkspace │ │ └── contents.xcworkspacedata └── SDWebImage进度条 │ ├── AppDelegate.h │ ├── AppDelegate.m │ ├── Assets.xcassets │ └── AppIcon.appiconset │ │ └── Contents.json │ ├── Base.lproj │ ├── LaunchScreen.storyboard │ └── Main.storyboard │ ├── Info.plist │ ├── SDWebImage │ ├── MKAnnotationView+WebCache.h │ ├── MKAnnotationView+WebCache.m │ ├── NSData+ImageContentType.h │ ├── NSData+ImageContentType.m │ ├── SDImageCache.h │ ├── SDImageCache.m │ ├── SDWebImageCompat.h │ ├── SDWebImageCompat.m │ ├── SDWebImageDecoder.h │ ├── SDWebImageDecoder.m │ ├── SDWebImageDownloader.h │ ├── SDWebImageDownloader.m │ ├── SDWebImageDownloaderOperation.h │ ├── SDWebImageDownloaderOperation.m │ ├── SDWebImageManager.h │ ├── SDWebImageManager.m │ ├── SDWebImageOperation.h │ ├── SDWebImagePrefetcher.h │ ├── SDWebImagePrefetcher.m │ ├── UIButton+WebCache.h │ ├── UIButton+WebCache.m │ ├── UIImage+GIF.h │ ├── UIImage+GIF.m │ ├── UIImage+MultiFormat.h │ ├── UIImage+MultiFormat.m │ ├── UIImage+WebP.h │ ├── UIImage+WebP.m │ ├── UIImageView+HighlightedWebCache.h │ ├── UIImageView+HighlightedWebCache.m │ ├── UIImageView+WebCache.h │ ├── UIImageView+WebCache.m │ ├── UIView+WebCacheOperation.h │ └── UIView+WebCacheOperation.m │ ├── ViewController.h │ ├── ViewController.m │ └── main.m ├── SSZipArchive ├── Podfile ├── Podfile.lock ├── Pods │ ├── Headers │ │ ├── Private │ │ │ └── SSZipArchive │ │ │ │ ├── SSZipArchive.h │ │ │ │ ├── SSZipCommon.h │ │ │ │ ├── ZipArchive.h │ │ │ │ ├── aes.h │ │ │ │ ├── aes_via_ace.h │ │ │ │ ├── aesopt.h │ │ │ │ ├── aestab.h │ │ │ │ ├── brg_endian.h │ │ │ │ ├── brg_types.h │ │ │ │ ├── crypt.h │ │ │ │ ├── entropy.h │ │ │ │ ├── fileenc.h │ │ │ │ ├── hmac.h │ │ │ │ ├── ioapi.h │ │ │ │ ├── mztools.h │ │ │ │ ├── prng.h │ │ │ │ ├── pwd2key.h │ │ │ │ ├── sha1.h │ │ │ │ ├── unzip.h │ │ │ │ └── zip.h │ │ └── Public │ │ │ └── SSZipArchive │ │ │ ├── SSZipArchive.h │ │ │ ├── SSZipCommon.h │ │ │ └── ZipArchive.h │ ├── Manifest.lock │ ├── Pods.xcodeproj │ │ └── project.pbxproj │ ├── SSZipArchive │ │ ├── LICENSE.txt │ │ ├── README.md │ │ └── SSZipArchive │ │ │ ├── SSZipArchive.h │ │ │ ├── SSZipArchive.m │ │ │ ├── SSZipCommon.h │ │ │ ├── ZipArchive.h │ │ │ ├── aes │ │ │ ├── aes.h │ │ │ ├── aes_via_ace.h │ │ │ ├── aescrypt.c │ │ │ ├── aeskey.c │ │ │ ├── aesopt.h │ │ │ ├── aestab.c │ │ │ ├── aestab.h │ │ │ ├── brg_endian.h │ │ │ ├── brg_types.h │ │ │ ├── entropy.c │ │ │ ├── entropy.h │ │ │ ├── fileenc.c │ │ │ ├── fileenc.h │ │ │ ├── hmac.c │ │ │ ├── hmac.h │ │ │ ├── prng.c │ │ │ ├── prng.h │ │ │ ├── pwd2key.c │ │ │ ├── pwd2key.h │ │ │ ├── sha1.c │ │ │ └── sha1.h │ │ │ └── minizip │ │ │ ├── crypt.h │ │ │ ├── ioapi.c │ │ │ ├── ioapi.h │ │ │ ├── mztools.c │ │ │ ├── mztools.h │ │ │ ├── unzip.c │ │ │ ├── unzip.h │ │ │ ├── zip.c │ │ │ └── zip.h │ └── Target Support Files │ │ ├── Pods-SSZipArchive │ │ ├── Pods-SSZipArchive-acknowledgements.markdown │ │ ├── Pods-SSZipArchive-acknowledgements.plist │ │ ├── Pods-SSZipArchive-dummy.m │ │ ├── Pods-SSZipArchive-frameworks.sh │ │ ├── Pods-SSZipArchive-resources.sh │ │ ├── Pods-SSZipArchive.debug.xcconfig │ │ └── Pods-SSZipArchive.release.xcconfig │ │ └── SSZipArchive │ │ ├── SSZipArchive-dummy.m │ │ ├── SSZipArchive-prefix.pch │ │ └── SSZipArchive.xcconfig ├── SSZipArchive.xcodeproj │ ├── project.pbxproj │ └── project.xcworkspace │ │ └── contents.xcworkspacedata ├── SSZipArchive.xcworkspace │ └── contents.xcworkspacedata └── SSZipArchive │ ├── AppDelegate.h │ ├── AppDelegate.m │ ├── Assets.xcassets │ └── AppIcon.appiconset │ │ └── Contents.json │ ├── Base.lproj │ ├── LaunchScreen.storyboard │ └── Main.storyboard │ ├── Info.plist │ ├── ViewController.h │ ├── ViewController.m │ └── main.m ├── SendTest ├── SendTest.xcodeproj │ ├── project.pbxproj │ └── project.xcworkspace │ │ └── contents.xcworkspacedata └── SendTest │ ├── AppDelegate.h │ ├── AppDelegate.m │ ├── Assets.xcassets │ └── AppIcon.appiconset │ │ └── Contents.json │ ├── Base.lproj │ ├── LaunchScreen.storyboard │ └── Main.storyboard │ ├── Info.plist │ ├── ViewController.h │ ├── ViewController.m │ └── main.m ├── ShowLivePhotoDemo ├── ShowLivePhotoDemo.xcodeproj │ ├── project.pbxproj │ └── project.xcworkspace │ │ ├── contents.xcworkspacedata │ │ └── xcshareddata │ │ └── IDEWorkspaceChecks.plist └── ShowLivePhotoDemo │ ├── AppDelegate.h │ ├── AppDelegate.m │ ├── Assets.xcassets │ ├── AppIcon.appiconset │ │ └── Contents.json │ └── Contents.json │ ├── Base.lproj │ ├── LaunchScreen.storyboard │ └── Main.storyboard │ ├── Info.plist │ ├── ViewController.h │ ├── ViewController.m │ └── main.m ├── SpringAnimation ├── SpringAnimation.xcodeproj │ ├── project.pbxproj │ └── project.xcworkspace │ │ └── contents.xcworkspacedata └── SpringAnimation │ ├── AppDelegate.h │ ├── AppDelegate.m │ ├── Assets.xcassets │ └── AppIcon.appiconset │ │ └── Contents.json │ ├── Base.lproj │ ├── LaunchScreen.storyboard │ └── Main.storyboard │ ├── Info.plist │ ├── ViewController.h │ ├── ViewController.m │ ├── main.m │ └── wangyanhua.png ├── SwapCamera ├── SwapCamera.xcodeproj │ ├── project.pbxproj │ └── project.xcworkspace │ │ └── contents.xcworkspacedata └── SwapCamera │ ├── AppDelegate.h │ ├── AppDelegate.m │ ├── Assets.xcassets │ └── AppIcon.appiconset │ │ └── Contents.json │ ├── Base.lproj │ ├── LaunchScreen.storyboard │ └── Main.storyboard │ ├── Info.plist │ ├── SwapCamera.xcdatamodeld │ ├── .xccurrentversion │ └── SwapCamera.xcdatamodel │ │ └── contents │ ├── ViewController.h │ ├── ViewController.m │ └── main.m ├── TableViewHeaderViewEnlarge ├── TableViewHeaderViewEnlarge.xcodeproj │ ├── project.pbxproj │ └── project.xcworkspace │ │ └── contents.xcworkspacedata └── TableViewHeaderViewEnlarge │ ├── AppDelegate.h │ ├── AppDelegate.m │ ├── Assets.xcassets │ └── AppIcon.appiconset │ │ └── Contents.json │ ├── Base.lproj │ ├── LaunchScreen.storyboard │ └── Main.storyboard │ ├── Info.plist │ ├── TableViewController.h │ ├── TableViewController.m │ ├── main.m │ └── xiyou.jpg ├── TouchIDDemo ├── TouchIDDemo.xcodeproj │ ├── project.pbxproj │ └── project.xcworkspace │ │ └── contents.xcworkspacedata └── TouchIDDemo │ ├── AppDelegate.h │ ├── AppDelegate.m │ ├── Assets.xcassets │ └── AppIcon.appiconset │ │ └── Contents.json │ ├── Base.lproj │ ├── LaunchScreen.storyboard │ └── Main.storyboard │ ├── Info.plist │ ├── ViewController.h │ ├── ViewController.m │ └── main.m ├── UIAlertController ├── UIAlertController.xcodeproj │ ├── project.pbxproj │ └── project.xcworkspace │ │ └── contents.xcworkspacedata └── UIAlertController │ ├── AppDelegate.h │ ├── AppDelegate.m │ ├── Assets.xcassets │ └── AppIcon.appiconset │ │ └── Contents.json │ ├── Base.lproj │ ├── LaunchScreen.storyboard │ └── Main.storyboard │ ├── Info.plist │ ├── ViewController.h │ ├── ViewController.m │ └── main.m ├── UIAlertControllerAlert ├── UIAlertControllerAlert.xcodeproj │ ├── project.pbxproj │ └── project.xcworkspace │ │ └── contents.xcworkspacedata └── UIAlertControllerAlert │ ├── AppDelegate.h │ ├── AppDelegate.m │ ├── Assets.xcassets │ └── AppIcon.appiconset │ │ └── Contents.json │ ├── Base.lproj │ ├── LaunchScreen.storyboard │ └── Main.storyboard │ ├── Info.plist │ ├── ViewController.h │ ├── ViewController.m │ └── main.m ├── UIBackBarButton ├── UIBackBarButton.xcodeproj │ ├── project.pbxproj │ └── project.xcworkspace │ │ └── contents.xcworkspacedata ├── UIBackBarButton │ ├── AppDelegate.h │ ├── AppDelegate.m │ ├── Assets.xcassets │ │ └── AppIcon.appiconset │ │ │ └── Contents.json │ ├── Base.lproj │ │ ├── LaunchScreen.storyboard │ │ └── Main.storyboard │ ├── Info.plist │ ├── SecondViewController.h │ ├── SecondViewController.m │ └── main.m ├── ViewController.h └── ViewController.m ├── UIColor16 ├── UIColor+NotRGB.h ├── UIColor+NotRGB.m ├── UIColor16.xcodeproj │ ├── project.pbxproj │ └── project.xcworkspace │ │ └── contents.xcworkspacedata └── UIColor16 │ ├── AppDelegate.h │ ├── AppDelegate.m │ ├── Assets.xcassets │ └── AppIcon.appiconset │ │ └── Contents.json │ ├── Base.lproj │ ├── LaunchScreen.storyboard │ └── Main.storyboard │ ├── Info.plist │ ├── ViewController.h │ ├── ViewController.m │ └── main.m ├── UITableViewDefaultFirstRow ├── UITableViewDefaultFirstRow.xcodeproj │ ├── project.pbxproj │ └── project.xcworkspace │ │ └── contents.xcworkspacedata └── UITableViewDefaultFirstRow │ ├── AppDelegate.h │ ├── AppDelegate.m │ ├── Assets.xcassets │ └── AppIcon.appiconset │ │ └── Contents.json │ ├── Base.lproj │ ├── LaunchScreen.storyboard │ └── Main.storyboard │ ├── Info.plist │ ├── TableViewController.h │ ├── TableViewController.m │ └── main.m ├── UUIDAndKeyChain ├── UUIDAndKeyChain.xcodeproj │ ├── project.pbxproj │ └── project.xcworkspace │ │ └── contents.xcworkspacedata └── UUIDAndKeyChain │ ├── AppDelegate.h │ ├── AppDelegate.m │ ├── Assets.xcassets │ └── AppIcon.appiconset │ │ └── Contents.json │ ├── Base.lproj │ ├── LaunchScreen.storyboard │ └── Main.storyboard │ ├── Info.plist │ ├── SSKeychain.h │ ├── SSKeychain.m │ ├── ViewController.h │ ├── ViewController.m │ └── main.m ├── VCTransitionDemo ├── VCTransitionDemo.xcodeproj │ ├── project.pbxproj │ └── project.xcworkspace │ │ └── contents.xcworkspacedata └── VCTransitionDemo │ ├── AppDelegate.h │ ├── AppDelegate.m │ ├── Assets.xcassets │ └── AppIcon.appiconset │ │ └── Contents.json │ ├── Base.lproj │ ├── LaunchScreen.storyboard │ └── Main.storyboard │ ├── BouncePresentAnimation.h │ ├── BouncePresentAnimation.m │ ├── Info.plist │ ├── MainViewController.h │ ├── MainViewController.m │ ├── ModalViewController.h │ ├── ModalViewController.m │ ├── NormalDismissAnimation.h │ ├── NormalDismissAnimation.m │ ├── SwipeUpInteractiveTransition.h │ ├── SwipeUpInteractiveTransition.m │ ├── VCTransitionDemo.xcdatamodeld │ ├── .xccurrentversion │ └── VCTransitionDemo.xcdatamodel │ │ └── contents │ └── main.m ├── VideoAddEngine ├── WatermarkEngine.h └── WatermarkEngine.m ├── WebpDemo ├── .DS_Store ├── WebpDemo.xcodeproj │ ├── project.pbxproj │ └── project.xcworkspace │ │ ├── contents.xcworkspacedata │ │ └── xcshareddata │ │ └── IDEWorkspaceChecks.plist ├── WebpDemo │ ├── AppDelegate.h │ ├── AppDelegate.m │ ├── Assets.xcassets │ │ ├── AppIcon.appiconset │ │ │ └── Contents.json │ │ └── Contents.json │ ├── Base.lproj │ │ ├── LaunchScreen.storyboard │ │ └── Main.storyboard │ ├── Info.plist │ ├── ViewController.h │ ├── ViewController.m │ └── main.m ├── WebpDemoTests │ ├── Info.plist │ └── WebpDemoTests.m └── WebpDemoUITests │ ├── Info.plist │ └── WebpDemoUITests.m ├── YHCustomMenu ├── YHCustomMenu.gif ├── YHCustomMenu.xcodeproj │ ├── project.pbxproj │ └── project.xcworkspace │ │ └── contents.xcworkspacedata ├── YHCustomMenu │ ├── AppDelegate.h │ ├── AppDelegate.m │ ├── Assets.xcassets │ │ └── AppIcon.appiconset │ │ │ └── Contents.json │ ├── Base.lproj │ │ ├── LaunchScreen.storyboard │ │ └── Main.storyboard │ ├── DYW.png │ ├── GXW.png │ ├── Info.plist │ ├── JGW.png │ ├── MMW.png │ ├── SJW.png │ ├── SSW.png │ ├── ViewController.h │ ├── ViewController.m │ ├── WZW.png │ ├── YHCustomMenu.h │ ├── YHCustomMenu.m │ └── main.m ├── YHCustomMenuTests │ ├── Info.plist │ └── YHCustomMenuTests.m ├── YHCustomMenuUITests │ ├── Info.plist │ └── YHCustomMenuUITests.m ├── YHCustomMenuView.h └── YHCustomMenuView.m ├── YHSegmentController ├── YHSegmentController.xcodeproj │ ├── project.pbxproj │ └── project.xcworkspace │ │ └── contents.xcworkspacedata └── YHSegmentController │ ├── AppDelegate.h │ ├── AppDelegate.m │ ├── Assets.xcassets │ └── AppIcon.appiconset │ │ └── Contents.json │ ├── Base.lproj │ ├── LaunchScreen.storyboard │ └── Main.storyboard │ ├── Info.plist │ ├── ViewController.h │ ├── ViewController.m │ ├── YHSegmentView.h │ ├── YHSegmentView.m │ └── main.m ├── YingSheImageView ├── YingSheImageView.xcodeproj │ ├── project.pbxproj │ └── project.xcworkspace │ │ └── contents.xcworkspacedata └── YingSheImageView │ ├── AppDelegate.h │ ├── AppDelegate.m │ ├── Assets.xcassets │ └── AppIcon.appiconset │ │ └── Contents.json │ ├── Base.lproj │ ├── LaunchScreen.storyboard │ └── Main.storyboard │ ├── Info.plist │ ├── ViewController.h │ ├── ViewController.m │ ├── main.m │ └── nvtou.jpg ├── admob-new ├── AdMobExample.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ └── contents.xcworkspacedata │ └── xcshareddata │ │ └── xcschemes │ │ ├── AdMobExample.xcscheme │ │ └── AdMobExampleSwift.xcscheme ├── AdMobExample.xcworkspace │ └── contents.xcworkspacedata ├── AdMobExample │ ├── .clang-format │ ├── AppDelegate.h │ ├── AppDelegate.m │ ├── Base.lproj │ │ └── Main.storyboard │ ├── GoogleService-Info.plist │ ├── Info.plist │ ├── ViewController.h │ ├── ViewController.m │ └── main.m ├── AdMobExampleSwift │ ├── AppDelegate.swift │ ├── Info.plist │ └── ViewController.swift ├── AdMobExampleSwiftTests │ ├── AdMobExampleSwiftTests.swift │ └── Info.plist ├── AdMobExampleTests │ ├── AdMobExampleTests.m │ ├── Info.plist │ └── ViewController_Private.h ├── Podfile ├── Podfile.lock ├── Pods │ ├── Firebase │ │ ├── Core │ │ │ └── Sources │ │ │ │ ├── Firebase.h │ │ │ │ └── module.modulemap │ │ └── README.md │ ├── FirebaseAnalytics │ │ └── Frameworks │ │ │ └── frameworks │ │ │ └── FirebaseAnalytics.framework │ │ │ ├── FirebaseAnalytics │ │ │ ├── Headers │ │ │ ├── FIRAnalytics+AppDelegate.h │ │ │ ├── FIRAnalytics.h │ │ │ ├── FIRAnalyticsConfiguration.h │ │ │ ├── FIRApp.h │ │ │ ├── FIRConfiguration.h │ │ │ ├── FIREventNames.h │ │ │ ├── FIROptions.h │ │ │ ├── FIRParameterNames.h │ │ │ ├── FIRUserPropertyNames.h │ │ │ └── FirebaseAnalytics.h │ │ │ └── Modules │ │ │ └── module.modulemap │ ├── FirebaseCore │ │ └── Frameworks │ │ │ └── frameworks │ │ │ └── FirebaseCore.framework │ │ │ ├── FirebaseCore │ │ │ ├── Headers │ │ │ ├── FIRAnalyticsConfiguration.h │ │ │ ├── FIRApp.h │ │ │ ├── FIRConfiguration.h │ │ │ ├── FIROptions.h │ │ │ └── FirebaseCore.h │ │ │ └── Modules │ │ │ └── module.modulemap │ ├── FirebaseInstanceID │ │ ├── Frameworks │ │ │ └── frameworks │ │ │ │ └── FirebaseInstanceID.framework │ │ │ │ ├── FirebaseInstanceID │ │ │ │ ├── Headers │ │ │ │ ├── FIRInstanceID.h │ │ │ │ └── FirebaseInstanceID.h │ │ │ │ └── Modules │ │ │ │ └── module.modulemap │ │ └── Sources │ │ │ └── FIRInstanceID.h │ ├── Google-Mobile-Ads-SDK │ │ ├── Frameworks │ │ │ └── GoogleMobileAds.framework │ │ │ │ ├── GoogleMobileAds │ │ │ │ ├── Headers │ │ │ │ ├── Modules │ │ │ │ └── module.modulemap │ │ │ │ └── Versions │ │ │ │ ├── A │ │ │ │ ├── GoogleMobileAds │ │ │ │ └── Headers │ │ │ │ │ ├── DFPBannerView.h │ │ │ │ │ ├── DFPCustomRenderedAd.h │ │ │ │ │ ├── DFPCustomRenderedBannerViewDelegate.h │ │ │ │ │ ├── DFPCustomRenderedInterstitialDelegate.h │ │ │ │ │ ├── DFPInterstitial.h │ │ │ │ │ ├── DFPRequest.h │ │ │ │ │ ├── GADAdDelegate.h │ │ │ │ │ ├── GADAdLoader.h │ │ │ │ │ ├── GADAdLoaderAdTypes.h │ │ │ │ │ ├── GADAdLoaderDelegate.h │ │ │ │ │ ├── GADAdNetworkExtras.h │ │ │ │ │ ├── GADAdReward.h │ │ │ │ │ ├── GADAdSize.h │ │ │ │ │ ├── GADAdSizeDelegate.h │ │ │ │ │ ├── GADAppEventDelegate.h │ │ │ │ │ ├── GADBannerView.h │ │ │ │ │ ├── GADBannerViewDelegate.h │ │ │ │ │ ├── GADCorrelator.h │ │ │ │ │ ├── GADCorrelatorAdLoaderOptions.h │ │ │ │ │ ├── GADCustomEventBanner.h │ │ │ │ │ ├── GADCustomEventBannerDelegate.h │ │ │ │ │ ├── GADCustomEventExtras.h │ │ │ │ │ ├── GADCustomEventInterstitial.h │ │ │ │ │ ├── GADCustomEventInterstitialDelegate.h │ │ │ │ │ ├── GADCustomEventNativeAd.h │ │ │ │ │ ├── GADCustomEventNativeAdDelegate.h │ │ │ │ │ ├── GADCustomEventParameters.h │ │ │ │ │ ├── GADCustomEventRequest.h │ │ │ │ │ ├── GADDebugOptionsViewController.h │ │ │ │ │ ├── GADDynamicHeightSearchRequest.h │ │ │ │ │ ├── GADExtras.h │ │ │ │ │ ├── GADInAppPurchase.h │ │ │ │ │ ├── GADInAppPurchaseDelegate.h │ │ │ │ │ ├── GADInterstitial.h │ │ │ │ │ ├── GADInterstitialDelegate.h │ │ │ │ │ ├── GADMediaView.h │ │ │ │ │ ├── GADMediatedNativeAd.h │ │ │ │ │ ├── GADMediatedNativeAdDelegate.h │ │ │ │ │ ├── GADMediatedNativeAdNotificationSource.h │ │ │ │ │ ├── GADMediatedNativeAppInstallAd.h │ │ │ │ │ ├── GADMediatedNativeContentAd.h │ │ │ │ │ ├── GADMobileAds.h │ │ │ │ │ ├── GADNativeAd.h │ │ │ │ │ ├── GADNativeAdDelegate.h │ │ │ │ │ ├── GADNativeAdImage+Mediation.h │ │ │ │ │ ├── GADNativeAdImage.h │ │ │ │ │ ├── GADNativeAdImageAdLoaderOptions.h │ │ │ │ │ ├── GADNativeAdViewAdOptions.h │ │ │ │ │ ├── GADNativeAppInstallAd.h │ │ │ │ │ ├── GADNativeContentAd.h │ │ │ │ │ ├── GADNativeCustomTemplateAd.h │ │ │ │ │ ├── GADNativeExpressAdView.h │ │ │ │ │ ├── GADNativeExpressAdViewDelegate.h │ │ │ │ │ ├── GADRequest.h │ │ │ │ │ ├── GADRequestError.h │ │ │ │ │ ├── GADRewardBasedVideoAd.h │ │ │ │ │ ├── GADRewardBasedVideoAdDelegate.h │ │ │ │ │ ├── GADSearchBannerView.h │ │ │ │ │ ├── GADSearchRequest.h │ │ │ │ │ ├── GADVideoController.h │ │ │ │ │ ├── GADVideoControllerDelegate.h │ │ │ │ │ ├── GADVideoOptions.h │ │ │ │ │ ├── GoogleMobileAds.h │ │ │ │ │ ├── GoogleMobileAdsDefines.h │ │ │ │ │ └── Mediation │ │ │ │ │ ├── GADMAdNetworkAdapterProtocol.h │ │ │ │ │ ├── GADMAdNetworkConnectorProtocol.h │ │ │ │ │ ├── GADMEnums.h │ │ │ │ │ ├── GADMRewardBasedVideoAdNetworkAdapterProtocol.h │ │ │ │ │ ├── GADMRewardBasedVideoAdNetworkConnectorProtocol.h │ │ │ │ │ └── GADMediationAdRequest.h │ │ │ │ └── Current │ │ └── README.txt │ ├── GoogleInterchangeUtilities │ │ └── Frameworks │ │ │ └── frameworks │ │ │ └── GoogleInterchangeUtilities.framework │ │ │ └── GoogleInterchangeUtilities │ ├── GoogleSymbolUtilities │ │ └── Frameworks │ │ │ └── frameworks │ │ │ └── GoogleSymbolUtilities.framework │ │ │ └── GoogleSymbolUtilities │ ├── GoogleToolboxForMac │ │ ├── Foundation │ │ │ ├── GTMNSData+zlib.h │ │ │ └── GTMNSData+zlib.m │ │ ├── GTMDefines.h │ │ ├── LICENSE │ │ └── README.md │ ├── Headers │ │ ├── Private │ │ │ ├── Firebase │ │ │ │ └── Firebase.h │ │ │ └── FirebaseInstanceID │ │ │ │ └── FIRInstanceID.h │ │ └── Public │ │ │ ├── Firebase │ │ │ └── Firebase.h │ │ │ └── FirebaseInstanceID │ │ │ └── FIRInstanceID.h │ ├── Manifest.lock │ ├── Pods.xcodeproj │ │ └── project.pbxproj │ └── Target Support Files │ │ ├── GoogleToolboxForMac │ │ ├── GoogleToolboxForMac-dummy.m │ │ ├── GoogleToolboxForMac-prefix.pch │ │ ├── GoogleToolboxForMac-umbrella.h │ │ ├── GoogleToolboxForMac.modulemap │ │ ├── GoogleToolboxForMac.xcconfig │ │ └── Info.plist │ │ ├── Pods-AdMobExample │ │ ├── Info.plist │ │ ├── Pods-AdMobExample-acknowledgements.markdown │ │ ├── Pods-AdMobExample-acknowledgements.plist │ │ ├── Pods-AdMobExample-dummy.m │ │ ├── Pods-AdMobExample-frameworks.sh │ │ ├── Pods-AdMobExample-resources.sh │ │ ├── Pods-AdMobExample-umbrella.h │ │ ├── Pods-AdMobExample.debug.xcconfig │ │ ├── Pods-AdMobExample.modulemap │ │ └── Pods-AdMobExample.release.xcconfig │ │ ├── Pods-AdMobExampleSwift │ │ ├── Info.plist │ │ ├── Pods-AdMobExampleSwift-acknowledgements.markdown │ │ ├── Pods-AdMobExampleSwift-acknowledgements.plist │ │ ├── Pods-AdMobExampleSwift-dummy.m │ │ ├── Pods-AdMobExampleSwift-frameworks.sh │ │ ├── Pods-AdMobExampleSwift-resources.sh │ │ ├── Pods-AdMobExampleSwift-umbrella.h │ │ ├── Pods-AdMobExampleSwift.debug.xcconfig │ │ ├── Pods-AdMobExampleSwift.modulemap │ │ └── Pods-AdMobExampleSwift.release.xcconfig │ │ ├── Pods-AdMobExampleSwiftTests │ │ ├── Info.plist │ │ ├── Pods-AdMobExampleSwiftTests-acknowledgements.markdown │ │ ├── Pods-AdMobExampleSwiftTests-acknowledgements.plist │ │ ├── Pods-AdMobExampleSwiftTests-dummy.m │ │ ├── Pods-AdMobExampleSwiftTests-frameworks.sh │ │ ├── Pods-AdMobExampleSwiftTests-resources.sh │ │ ├── Pods-AdMobExampleSwiftTests-umbrella.h │ │ ├── Pods-AdMobExampleSwiftTests.debug.xcconfig │ │ ├── Pods-AdMobExampleSwiftTests.modulemap │ │ └── Pods-AdMobExampleSwiftTests.release.xcconfig │ │ └── Pods-AdMobExampleTests │ │ ├── Info.plist │ │ ├── Pods-AdMobExampleTests-acknowledgements.markdown │ │ ├── Pods-AdMobExampleTests-acknowledgements.plist │ │ ├── Pods-AdMobExampleTests-dummy.m │ │ ├── Pods-AdMobExampleTests-frameworks.sh │ │ ├── Pods-AdMobExampleTests-resources.sh │ │ ├── Pods-AdMobExampleTests-umbrella.h │ │ ├── Pods-AdMobExampleTests.debug.xcconfig │ │ ├── Pods-AdMobExampleTests.modulemap │ │ └── Pods-AdMobExampleTests.release.xcconfig ├── README.md └── Screenshot │ └── admob-sample.png ├── dottedLineDemo ├── dottedLineDemo.xcodeproj │ ├── project.pbxproj │ └── project.xcworkspace │ │ └── contents.xcworkspacedata └── dottedLineDemo │ ├── AppDelegate.h │ ├── AppDelegate.m │ ├── Assets.xcassets │ └── AppIcon.appiconset │ │ └── Contents.json │ ├── Base.lproj │ ├── LaunchScreen.storyboard │ └── Main.storyboard │ ├── Info.plist │ ├── ViewController.h │ ├── ViewController.m │ ├── dottedLineView.h │ ├── dottedLineView.m │ └── main.m ├── ellipseImageDemo ├── ellipseImageDemo.xcodeproj │ ├── project.pbxproj │ └── project.xcworkspace │ │ └── contents.xcworkspacedata └── ellipseImageDemo │ ├── AppDelegate.h │ ├── AppDelegate.m │ ├── Assets.xcassets │ └── AppIcon.appiconset │ │ └── Contents.json │ ├── Base.lproj │ ├── LaunchScreen.storyboard │ └── Main.storyboard │ ├── Info.plist │ ├── ViewController.h │ ├── ViewController.m │ ├── image.png │ └── main.m ├── emojiDemo ├── emojiDemo.xcodeproj │ ├── project.pbxproj │ └── project.xcworkspace │ │ ├── contents.xcworkspacedata │ │ └── xcshareddata │ │ └── IDEWorkspaceChecks.plist └── emojiDemo │ ├── AppDelegate.h │ ├── AppDelegate.m │ ├── Assets.xcassets │ ├── AppIcon.appiconset │ │ └── Contents.json │ └── Contents.json │ ├── Base.lproj │ ├── LaunchScreen.storyboard │ └── Main.storyboard │ ├── Info.plist │ ├── NSString+emoji.h │ ├── NSString+emoji.m │ ├── ViewController.h │ ├── ViewController.m │ └── main.m ├── inputTextDemo ├── inputTextDemo WatchKit App │ ├── Assets.xcassets │ │ ├── AppIcon.appiconset │ │ │ └── Contents.json │ │ └── Contents.json │ ├── Base.lproj │ │ └── Interface.storyboard │ └── Info.plist ├── inputTextDemo WatchKit Extension │ ├── Assets.xcassets │ │ ├── Complication.complicationset │ │ │ ├── Circular.imageset │ │ │ │ └── Contents.json │ │ │ ├── Contents.json │ │ │ ├── Extra Large.imageset │ │ │ │ └── Contents.json │ │ │ ├── Modular.imageset │ │ │ │ └── Contents.json │ │ │ └── Utilitarian.imageset │ │ │ │ └── Contents.json │ │ └── Contents.json │ ├── ExtensionDelegate.h │ ├── ExtensionDelegate.m │ ├── Info.plist │ ├── InterfaceController.h │ ├── InterfaceController.m │ ├── NotificationController.h │ ├── NotificationController.m │ └── PushNotificationPayload.apns ├── inputTextDemo.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ ├── contents.xcworkspacedata │ │ ├── xcshareddata │ │ │ └── IDEWorkspaceChecks.plist │ │ └── xcuserdata │ │ │ └── zhenghao.xcuserdatad │ │ │ └── UserInterfaceState.xcuserstate │ └── xcuserdata │ │ └── zhenghao.xcuserdatad │ │ └── xcschemes │ │ └── xcschememanagement.plist └── inputTextDemo │ ├── AppDelegate.h │ ├── AppDelegate.m │ ├── Assets.xcassets │ ├── AppIcon.appiconset │ │ └── Contents.json │ └── Contents.json │ ├── Base.lproj │ ├── LaunchScreen.storyboard │ └── Main.storyboard │ ├── Info.plist │ ├── ViewController.h │ ├── ViewController.m │ └── main.m ├── libqrencodeDemo ├── libqrencodeDemo.xcodeproj │ ├── project.pbxproj │ └── project.xcworkspace │ │ └── contents.xcworkspacedata └── libqrencodeDemo │ ├── AppDelegate.h │ ├── AppDelegate.m │ ├── Assets.xcassets │ └── AppIcon.appiconset │ │ └── Contents.json │ ├── Base.lproj │ ├── LaunchScreen.storyboard │ └── Main.storyboard │ ├── Info.plist │ ├── QRCodeGenerator.h │ ├── QRCodeGenerator.m │ ├── TimerDisappearAlertView.h │ ├── TimerDisappearAlertView.m │ ├── ViewController.h │ ├── ViewController.m │ ├── bitstream.c │ ├── bitstream.h │ ├── default.png │ ├── icon.png │ ├── main.m │ ├── mask.c │ ├── mask.h │ ├── null.png │ ├── qrencode.c │ ├── qrencode.h │ ├── qrinput.c │ ├── qrinput.h │ ├── qrspec.c │ ├── qrspec.h │ ├── rscode.c │ ├── rscode.h │ ├── split.c │ └── split.h ├── oneDemo ├── .DS_Store ├── oneDemo.xcodeproj │ ├── project.pbxproj │ └── project.xcworkspace │ │ └── contents.xcworkspacedata └── oneDemo │ ├── .DS_Store │ ├── AppDelegate.h │ ├── AppDelegate.m │ ├── Assets.xcassets │ └── AppIcon.appiconset │ │ └── Contents.json │ ├── Base.lproj │ ├── LaunchScreen.storyboard │ └── Main.storyboard │ ├── Info.plist │ ├── ViewController.h │ ├── ViewController.m │ ├── art.scnassets │ ├── .DS_Store │ ├── 0_1241_ZhouYu_D_512.png │ └── zhouyudaren.DAE │ └── main.m ├── scrollImageView ├── scrollImageView.xcodeproj │ ├── project.pbxproj │ └── project.xcworkspace │ │ └── contents.xcworkspacedata └── scrollImageView │ ├── AppDelegate.h │ ├── AppDelegate.m │ ├── Assets.xcassets │ ├── AppIcon.appiconset │ │ └── Contents.json │ ├── Contents.json │ └── 绿.imageset │ │ ├── Contents.json │ │ └── 绿.png │ ├── Base.lproj │ ├── LaunchScreen.storyboard │ └── Main.storyboard │ ├── Info.plist │ ├── RootViewController.h │ ├── RootViewController.m │ ├── ViewController.h │ ├── ViewController.m │ ├── background.jpg │ ├── main.m │ ├── 我的.png │ ├── 白.png │ └── 绿.png ├── sortDemo ├── sortDemo.xcodeproj │ ├── project.pbxproj │ └── project.xcworkspace │ │ ├── contents.xcworkspacedata │ │ └── xcshareddata │ │ └── IDEWorkspaceChecks.plist └── sortDemo │ ├── AppDelegate.h │ ├── AppDelegate.m │ ├── Assets.xcassets │ ├── AppIcon.appiconset │ │ └── Contents.json │ └── Contents.json │ ├── Base.lproj │ ├── LaunchScreen.storyboard │ └── Main.storyboard │ ├── Info.plist │ ├── SceneDelegate.h │ ├── SceneDelegate.m │ ├── ViewController.h │ ├── ViewController.m │ └── main.m ├── testDemo.zip ├── verificationCode ├── verificationCode.xcodeproj │ ├── project.pbxproj │ └── project.xcworkspace │ │ └── contents.xcworkspacedata └── verificationCode │ ├── AppDelegate.h │ ├── AppDelegate.m │ ├── Assets.xcassets │ └── AppIcon.appiconset │ │ └── Contents.json │ ├── Base.lproj │ ├── LaunchScreen.storyboard │ └── Main.storyboard │ ├── Info.plist │ ├── ViewController.h │ ├── ViewController.m │ └── main.m ├── watermarkDemo ├── watermarkDemo.xcodeproj │ ├── project.pbxproj │ └── project.xcworkspace │ │ └── contents.xcworkspacedata └── watermarkDemo │ ├── AppDelegate.h │ ├── AppDelegate.m │ ├── Assets.xcassets │ └── AppIcon.appiconset │ │ └── Contents.json │ ├── Base.lproj │ ├── LaunchScreen.storyboard │ └── Main.storyboard │ ├── Info.plist │ ├── ViewController.h │ ├── ViewController.m │ ├── main.m │ ├── watermarkDemo.xcdatamodeld │ ├── .xccurrentversion │ └── watermarkDemo.xcdatamodel │ │ └── contents │ ├── weibo.png │ └── weixiao.jpg ├── 图片 1.png └── 自定义字体 ├── ONETEST.xcodeproj ├── project.pbxproj └── project.xcworkspace │ └── contents.xcworkspacedata ├── ONETEST ├── AppDelegate.h ├── AppDelegate.m ├── Assets.xcassets │ └── AppIcon.appiconset │ │ └── Contents.json ├── Base.lproj │ ├── LaunchScreen.storyboard │ └── Main.storyboard ├── Info.plist ├── ViewController.h ├── ViewController.m └── main.m └── 庞门正道标题体2.0增强版.ttf /.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmyWong/PersonalUITech/HEAD/.DS_Store -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmyWong/PersonalUITech/HEAD/.gitignore -------------------------------------------------------------------------------- /3DTouchDemo/3DTouchDemo.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmyWong/PersonalUITech/HEAD/3DTouchDemo/3DTouchDemo.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /3DTouchDemo/3DTouchDemo/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmyWong/PersonalUITech/HEAD/3DTouchDemo/3DTouchDemo/AppDelegate.h -------------------------------------------------------------------------------- /3DTouchDemo/3DTouchDemo/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmyWong/PersonalUITech/HEAD/3DTouchDemo/3DTouchDemo/AppDelegate.m -------------------------------------------------------------------------------- /3DTouchDemo/3DTouchDemo/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmyWong/PersonalUITech/HEAD/3DTouchDemo/3DTouchDemo/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /3DTouchDemo/3DTouchDemo/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmyWong/PersonalUITech/HEAD/3DTouchDemo/3DTouchDemo/Info.plist -------------------------------------------------------------------------------- /3DTouchDemo/3DTouchDemo/PrefixHeader.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmyWong/PersonalUITech/HEAD/3DTouchDemo/3DTouchDemo/PrefixHeader.pch -------------------------------------------------------------------------------- /3DTouchDemo/3DTouchDemo/SecondViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmyWong/PersonalUITech/HEAD/3DTouchDemo/3DTouchDemo/SecondViewController.h -------------------------------------------------------------------------------- /3DTouchDemo/3DTouchDemo/SecondViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmyWong/PersonalUITech/HEAD/3DTouchDemo/3DTouchDemo/SecondViewController.m -------------------------------------------------------------------------------- /3DTouchDemo/3DTouchDemo/SecondViewController.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmyWong/PersonalUITech/HEAD/3DTouchDemo/3DTouchDemo/SecondViewController.xib -------------------------------------------------------------------------------- /3DTouchDemo/3DTouchDemo/ThirdViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmyWong/PersonalUITech/HEAD/3DTouchDemo/3DTouchDemo/ThirdViewController.h -------------------------------------------------------------------------------- /3DTouchDemo/3DTouchDemo/ThirdViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmyWong/PersonalUITech/HEAD/3DTouchDemo/3DTouchDemo/ThirdViewController.m -------------------------------------------------------------------------------- /3DTouchDemo/3DTouchDemo/ThirdViewController.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmyWong/PersonalUITech/HEAD/3DTouchDemo/3DTouchDemo/ThirdViewController.xib -------------------------------------------------------------------------------- /3DTouchDemo/3DTouchDemo/ViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmyWong/PersonalUITech/HEAD/3DTouchDemo/3DTouchDemo/ViewController.h -------------------------------------------------------------------------------- /3DTouchDemo/3DTouchDemo/ViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmyWong/PersonalUITech/HEAD/3DTouchDemo/3DTouchDemo/ViewController.m -------------------------------------------------------------------------------- /3DTouchDemo/3DTouchDemo/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmyWong/PersonalUITech/HEAD/3DTouchDemo/3DTouchDemo/main.m -------------------------------------------------------------------------------- /AudioServiceDemo/AudioServiceDemo/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmyWong/PersonalUITech/HEAD/AudioServiceDemo/AudioServiceDemo/AppDelegate.h -------------------------------------------------------------------------------- /AudioServiceDemo/AudioServiceDemo/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmyWong/PersonalUITech/HEAD/AudioServiceDemo/AudioServiceDemo/AppDelegate.m -------------------------------------------------------------------------------- /AudioServiceDemo/AudioServiceDemo/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmyWong/PersonalUITech/HEAD/AudioServiceDemo/AudioServiceDemo/Info.plist -------------------------------------------------------------------------------- /AudioServiceDemo/AudioServiceDemo/ViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmyWong/PersonalUITech/HEAD/AudioServiceDemo/AudioServiceDemo/ViewController.h -------------------------------------------------------------------------------- /AudioServiceDemo/AudioServiceDemo/ViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmyWong/PersonalUITech/HEAD/AudioServiceDemo/AudioServiceDemo/ViewController.m -------------------------------------------------------------------------------- /AudioServiceDemo/AudioServiceDemo/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmyWong/PersonalUITech/HEAD/AudioServiceDemo/AudioServiceDemo/main.m -------------------------------------------------------------------------------- /AudioServiceDemo/AudioServiceDemo/success.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmyWong/PersonalUITech/HEAD/AudioServiceDemo/AudioServiceDemo/success.mp3 -------------------------------------------------------------------------------- /BlockDemo/BlockDemo.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmyWong/PersonalUITech/HEAD/BlockDemo/BlockDemo.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /BlockDemo/BlockDemo/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmyWong/PersonalUITech/HEAD/BlockDemo/BlockDemo/AppDelegate.h -------------------------------------------------------------------------------- /BlockDemo/BlockDemo/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmyWong/PersonalUITech/HEAD/BlockDemo/BlockDemo/AppDelegate.m -------------------------------------------------------------------------------- /BlockDemo/BlockDemo/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmyWong/PersonalUITech/HEAD/BlockDemo/BlockDemo/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /BlockDemo/BlockDemo/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmyWong/PersonalUITech/HEAD/BlockDemo/BlockDemo/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /BlockDemo/BlockDemo/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmyWong/PersonalUITech/HEAD/BlockDemo/BlockDemo/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /BlockDemo/BlockDemo/BlockViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmyWong/PersonalUITech/HEAD/BlockDemo/BlockDemo/BlockViewController.h -------------------------------------------------------------------------------- /BlockDemo/BlockDemo/BlockViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmyWong/PersonalUITech/HEAD/BlockDemo/BlockDemo/BlockViewController.m -------------------------------------------------------------------------------- /BlockDemo/BlockDemo/Calculator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmyWong/PersonalUITech/HEAD/BlockDemo/BlockDemo/Calculator.h -------------------------------------------------------------------------------- /BlockDemo/BlockDemo/Calculator.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmyWong/PersonalUITech/HEAD/BlockDemo/BlockDemo/Calculator.m -------------------------------------------------------------------------------- /BlockDemo/BlockDemo/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmyWong/PersonalUITech/HEAD/BlockDemo/BlockDemo/Info.plist -------------------------------------------------------------------------------- /BlockDemo/BlockDemo/Person.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmyWong/PersonalUITech/HEAD/BlockDemo/BlockDemo/Person.h -------------------------------------------------------------------------------- /BlockDemo/BlockDemo/Person.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmyWong/PersonalUITech/HEAD/BlockDemo/BlockDemo/Person.m -------------------------------------------------------------------------------- /BlockDemo/BlockDemo/SceneDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmyWong/PersonalUITech/HEAD/BlockDemo/BlockDemo/SceneDelegate.h -------------------------------------------------------------------------------- /BlockDemo/BlockDemo/SceneDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmyWong/PersonalUITech/HEAD/BlockDemo/BlockDemo/SceneDelegate.m -------------------------------------------------------------------------------- /BlockDemo/BlockDemo/ViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmyWong/PersonalUITech/HEAD/BlockDemo/BlockDemo/ViewController.h -------------------------------------------------------------------------------- /BlockDemo/BlockDemo/ViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmyWong/PersonalUITech/HEAD/BlockDemo/BlockDemo/ViewController.m -------------------------------------------------------------------------------- /BlockDemo/BlockDemo/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmyWong/PersonalUITech/HEAD/BlockDemo/BlockDemo/main.cpp -------------------------------------------------------------------------------- /BlockDemo/BlockDemo/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmyWong/PersonalUITech/HEAD/BlockDemo/BlockDemo/main.m -------------------------------------------------------------------------------- /CALayerDemo/CALayerDemo.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmyWong/PersonalUITech/HEAD/CALayerDemo/CALayerDemo.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /CALayerDemo/CALayerDemo/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmyWong/PersonalUITech/HEAD/CALayerDemo/CALayerDemo/AppDelegate.h -------------------------------------------------------------------------------- /CALayerDemo/CALayerDemo/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmyWong/PersonalUITech/HEAD/CALayerDemo/CALayerDemo/AppDelegate.m -------------------------------------------------------------------------------- /CALayerDemo/CALayerDemo/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmyWong/PersonalUITech/HEAD/CALayerDemo/CALayerDemo/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /CALayerDemo/CALayerDemo/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmyWong/PersonalUITech/HEAD/CALayerDemo/CALayerDemo/Info.plist -------------------------------------------------------------------------------- /CALayerDemo/CALayerDemo/ViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmyWong/PersonalUITech/HEAD/CALayerDemo/CALayerDemo/ViewController.h -------------------------------------------------------------------------------- /CALayerDemo/CALayerDemo/ViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmyWong/PersonalUITech/HEAD/CALayerDemo/CALayerDemo/ViewController.m -------------------------------------------------------------------------------- /CALayerDemo/CALayerDemo/image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmyWong/PersonalUITech/HEAD/CALayerDemo/CALayerDemo/image.png -------------------------------------------------------------------------------- /CALayerDemo/CALayerDemo/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmyWong/PersonalUITech/HEAD/CALayerDemo/CALayerDemo/main.m -------------------------------------------------------------------------------- /CALayerDemo1/CALayerDemo1.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmyWong/PersonalUITech/HEAD/CALayerDemo1/CALayerDemo1.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /CALayerDemo1/CALayerDemo1/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmyWong/PersonalUITech/HEAD/CALayerDemo1/CALayerDemo1/AppDelegate.h -------------------------------------------------------------------------------- /CALayerDemo1/CALayerDemo1/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmyWong/PersonalUITech/HEAD/CALayerDemo1/CALayerDemo1/AppDelegate.m -------------------------------------------------------------------------------- /CALayerDemo1/CALayerDemo1/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmyWong/PersonalUITech/HEAD/CALayerDemo1/CALayerDemo1/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /CALayerDemo1/CALayerDemo1/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmyWong/PersonalUITech/HEAD/CALayerDemo1/CALayerDemo1/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /CALayerDemo1/CALayerDemo1/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmyWong/PersonalUITech/HEAD/CALayerDemo1/CALayerDemo1/Info.plist -------------------------------------------------------------------------------- /CALayerDemo1/CALayerDemo1/ViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmyWong/PersonalUITech/HEAD/CALayerDemo1/CALayerDemo1/ViewController.h -------------------------------------------------------------------------------- /CALayerDemo1/CALayerDemo1/ViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmyWong/PersonalUITech/HEAD/CALayerDemo1/CALayerDemo1/ViewController.m -------------------------------------------------------------------------------- /CALayerDemo1/CALayerDemo1/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmyWong/PersonalUITech/HEAD/CALayerDemo1/CALayerDemo1/main.m -------------------------------------------------------------------------------- /CMAttitudeDemo/CMAttitudeDemo.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmyWong/PersonalUITech/HEAD/CMAttitudeDemo/CMAttitudeDemo.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /CMAttitudeDemo/CMAttitudeDemo/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmyWong/PersonalUITech/HEAD/CMAttitudeDemo/CMAttitudeDemo/AppDelegate.h -------------------------------------------------------------------------------- /CMAttitudeDemo/CMAttitudeDemo/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmyWong/PersonalUITech/HEAD/CMAttitudeDemo/CMAttitudeDemo/AppDelegate.m -------------------------------------------------------------------------------- /CMAttitudeDemo/CMAttitudeDemo/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmyWong/PersonalUITech/HEAD/CMAttitudeDemo/CMAttitudeDemo/Info.plist -------------------------------------------------------------------------------- /CMAttitudeDemo/CMAttitudeDemo/ViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmyWong/PersonalUITech/HEAD/CMAttitudeDemo/CMAttitudeDemo/ViewController.h -------------------------------------------------------------------------------- /CMAttitudeDemo/CMAttitudeDemo/ViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmyWong/PersonalUITech/HEAD/CMAttitudeDemo/CMAttitudeDemo/ViewController.m -------------------------------------------------------------------------------- /CMAttitudeDemo/CMAttitudeDemo/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmyWong/PersonalUITech/HEAD/CMAttitudeDemo/CMAttitudeDemo/main.m -------------------------------------------------------------------------------- /CMAttitudeDemo/CMAttitudeDemoTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmyWong/PersonalUITech/HEAD/CMAttitudeDemo/CMAttitudeDemoTests/Info.plist -------------------------------------------------------------------------------- /CMAttitudeDemo/CMAttitudeDemoUITests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmyWong/PersonalUITech/HEAD/CMAttitudeDemo/CMAttitudeDemoUITests/Info.plist -------------------------------------------------------------------------------- /CMMotionActivityManagerDemo/TestDemo/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmyWong/PersonalUITech/HEAD/CMMotionActivityManagerDemo/TestDemo/AppDelegate.h -------------------------------------------------------------------------------- /CMMotionActivityManagerDemo/TestDemo/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmyWong/PersonalUITech/HEAD/CMMotionActivityManagerDemo/TestDemo/AppDelegate.m -------------------------------------------------------------------------------- /CMMotionActivityManagerDemo/TestDemo/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmyWong/PersonalUITech/HEAD/CMMotionActivityManagerDemo/TestDemo/Info.plist -------------------------------------------------------------------------------- /CMMotionActivityManagerDemo/TestDemo/ViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmyWong/PersonalUITech/HEAD/CMMotionActivityManagerDemo/TestDemo/ViewController.h -------------------------------------------------------------------------------- /CMMotionActivityManagerDemo/TestDemo/ViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmyWong/PersonalUITech/HEAD/CMMotionActivityManagerDemo/TestDemo/ViewController.m -------------------------------------------------------------------------------- /CMMotionActivityManagerDemo/TestDemo/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmyWong/PersonalUITech/HEAD/CMMotionActivityManagerDemo/TestDemo/main.m -------------------------------------------------------------------------------- /CMMotionActivityManagerDemo/TestDemoTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmyWong/PersonalUITech/HEAD/CMMotionActivityManagerDemo/TestDemoTests/Info.plist -------------------------------------------------------------------------------- /CMMotionActivityManagerDemo/TestDemoUITests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmyWong/PersonalUITech/HEAD/CMMotionActivityManagerDemo/TestDemoUITests/Info.plist -------------------------------------------------------------------------------- /CMPedometerDemo/CMPedometerDemo/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmyWong/PersonalUITech/HEAD/CMPedometerDemo/CMPedometerDemo/AppDelegate.h -------------------------------------------------------------------------------- /CMPedometerDemo/CMPedometerDemo/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmyWong/PersonalUITech/HEAD/CMPedometerDemo/CMPedometerDemo/AppDelegate.m -------------------------------------------------------------------------------- /CMPedometerDemo/CMPedometerDemo/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmyWong/PersonalUITech/HEAD/CMPedometerDemo/CMPedometerDemo/Info.plist -------------------------------------------------------------------------------- /CMPedometerDemo/CMPedometerDemo/ViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmyWong/PersonalUITech/HEAD/CMPedometerDemo/CMPedometerDemo/ViewController.h -------------------------------------------------------------------------------- /CMPedometerDemo/CMPedometerDemo/ViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmyWong/PersonalUITech/HEAD/CMPedometerDemo/CMPedometerDemo/ViewController.m -------------------------------------------------------------------------------- /CMPedometerDemo/CMPedometerDemo/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmyWong/PersonalUITech/HEAD/CMPedometerDemo/CMPedometerDemo/main.m -------------------------------------------------------------------------------- /CMPedometerDemo/CMPedometerDemoTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmyWong/PersonalUITech/HEAD/CMPedometerDemo/CMPedometerDemoTests/Info.plist -------------------------------------------------------------------------------- /CMPedometerDemo/CMPedometerDemoUITests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmyWong/PersonalUITech/HEAD/CMPedometerDemo/CMPedometerDemoUITests/Info.plist -------------------------------------------------------------------------------- /CalculatorDemo/CalculatorDemo.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmyWong/PersonalUITech/HEAD/CalculatorDemo/CalculatorDemo.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /CalculatorDemo/CalculatorDemo/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmyWong/PersonalUITech/HEAD/CalculatorDemo/CalculatorDemo/AppDelegate.swift -------------------------------------------------------------------------------- /CalculatorDemo/CalculatorDemo/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmyWong/PersonalUITech/HEAD/CalculatorDemo/CalculatorDemo/Info.plist -------------------------------------------------------------------------------- /CalculatorDemo/CalculatorDemo/ViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmyWong/PersonalUITech/HEAD/CalculatorDemo/CalculatorDemo/ViewController.swift -------------------------------------------------------------------------------- /CalculatorDemo/Podfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmyWong/PersonalUITech/HEAD/CalculatorDemo/Podfile.lock -------------------------------------------------------------------------------- /CalculatorDemo/Pods/Headers/Private/MJRefresh/MJRefresh.h: -------------------------------------------------------------------------------- 1 | ../../../MJRefresh/MJRefreshExample/MJRefreshExample/MJRefresh/MJRefresh.h -------------------------------------------------------------------------------- /CalculatorDemo/Pods/Headers/Private/MJRefresh/MJRefreshComponent.h: -------------------------------------------------------------------------------- 1 | ../../../MJRefresh/MJRefreshExample/MJRefreshExample/MJRefresh/MJRefreshComponent.h -------------------------------------------------------------------------------- /CalculatorDemo/Pods/Headers/Private/MJRefresh/MJRefreshConst.h: -------------------------------------------------------------------------------- 1 | ../../../MJRefresh/MJRefreshExample/MJRefreshExample/MJRefresh/MJRefreshConst.h -------------------------------------------------------------------------------- /CalculatorDemo/Pods/Headers/Private/MJRefresh/MJRefreshFooter.h: -------------------------------------------------------------------------------- 1 | ../../../MJRefresh/MJRefreshExample/MJRefreshExample/MJRefresh/MJRefreshFooter.h -------------------------------------------------------------------------------- /CalculatorDemo/Pods/Headers/Private/MJRefresh/MJRefreshGifFooter.h: -------------------------------------------------------------------------------- 1 | ../../../MJRefresh/MJRefreshExample/MJRefreshExample/MJRefresh/MJRefreshGifFooter.h -------------------------------------------------------------------------------- /CalculatorDemo/Pods/Headers/Private/MJRefresh/MJRefreshGifHeader.h: -------------------------------------------------------------------------------- 1 | ../../../MJRefresh/MJRefreshExample/MJRefreshExample/MJRefresh/MJRefreshGifHeader.h -------------------------------------------------------------------------------- /CalculatorDemo/Pods/Headers/Private/MJRefresh/MJRefreshHeader.h: -------------------------------------------------------------------------------- 1 | ../../../MJRefresh/MJRefreshExample/MJRefreshExample/MJRefresh/MJRefreshHeader.h -------------------------------------------------------------------------------- /CalculatorDemo/Pods/Headers/Private/MJRefresh/MJRefreshLegendFooter.h: -------------------------------------------------------------------------------- 1 | ../../../MJRefresh/MJRefreshExample/MJRefreshExample/MJRefresh/MJRefreshLegendFooter.h -------------------------------------------------------------------------------- /CalculatorDemo/Pods/Headers/Private/MJRefresh/MJRefreshLegendHeader.h: -------------------------------------------------------------------------------- 1 | ../../../MJRefresh/MJRefreshExample/MJRefreshExample/MJRefresh/MJRefreshLegendHeader.h -------------------------------------------------------------------------------- /CalculatorDemo/Pods/Headers/Private/MJRefresh/UIScrollView+MJExtension.h: -------------------------------------------------------------------------------- 1 | ../../../MJRefresh/MJRefreshExample/MJRefreshExample/MJRefresh/UIScrollView+MJExtension.h -------------------------------------------------------------------------------- /CalculatorDemo/Pods/Headers/Private/MJRefresh/UIScrollView+MJRefresh.h: -------------------------------------------------------------------------------- 1 | ../../../MJRefresh/MJRefreshExample/MJRefreshExample/MJRefresh/UIScrollView+MJRefresh.h -------------------------------------------------------------------------------- /CalculatorDemo/Pods/Headers/Private/MJRefresh/UIView+MJExtension.h: -------------------------------------------------------------------------------- 1 | ../../../MJRefresh/MJRefreshExample/MJRefreshExample/MJRefresh/UIView+MJExtension.h -------------------------------------------------------------------------------- /CalculatorDemo/Pods/Headers/Public/MJRefresh/MJRefresh.h: -------------------------------------------------------------------------------- 1 | ../../../MJRefresh/MJRefreshExample/MJRefreshExample/MJRefresh/MJRefresh.h -------------------------------------------------------------------------------- /CalculatorDemo/Pods/Headers/Public/MJRefresh/MJRefreshComponent.h: -------------------------------------------------------------------------------- 1 | ../../../MJRefresh/MJRefreshExample/MJRefreshExample/MJRefresh/MJRefreshComponent.h -------------------------------------------------------------------------------- /CalculatorDemo/Pods/Headers/Public/MJRefresh/MJRefreshConst.h: -------------------------------------------------------------------------------- 1 | ../../../MJRefresh/MJRefreshExample/MJRefreshExample/MJRefresh/MJRefreshConst.h -------------------------------------------------------------------------------- /CalculatorDemo/Pods/Headers/Public/MJRefresh/MJRefreshFooter.h: -------------------------------------------------------------------------------- 1 | ../../../MJRefresh/MJRefreshExample/MJRefreshExample/MJRefresh/MJRefreshFooter.h -------------------------------------------------------------------------------- /CalculatorDemo/Pods/Headers/Public/MJRefresh/MJRefreshGifFooter.h: -------------------------------------------------------------------------------- 1 | ../../../MJRefresh/MJRefreshExample/MJRefreshExample/MJRefresh/MJRefreshGifFooter.h -------------------------------------------------------------------------------- /CalculatorDemo/Pods/Headers/Public/MJRefresh/MJRefreshGifHeader.h: -------------------------------------------------------------------------------- 1 | ../../../MJRefresh/MJRefreshExample/MJRefreshExample/MJRefresh/MJRefreshGifHeader.h -------------------------------------------------------------------------------- /CalculatorDemo/Pods/Headers/Public/MJRefresh/MJRefreshHeader.h: -------------------------------------------------------------------------------- 1 | ../../../MJRefresh/MJRefreshExample/MJRefreshExample/MJRefresh/MJRefreshHeader.h -------------------------------------------------------------------------------- /CalculatorDemo/Pods/Headers/Public/MJRefresh/MJRefreshLegendFooter.h: -------------------------------------------------------------------------------- 1 | ../../../MJRefresh/MJRefreshExample/MJRefreshExample/MJRefresh/MJRefreshLegendFooter.h -------------------------------------------------------------------------------- /CalculatorDemo/Pods/Headers/Public/MJRefresh/MJRefreshLegendHeader.h: -------------------------------------------------------------------------------- 1 | ../../../MJRefresh/MJRefreshExample/MJRefreshExample/MJRefresh/MJRefreshLegendHeader.h -------------------------------------------------------------------------------- /CalculatorDemo/Pods/Headers/Public/MJRefresh/UIScrollView+MJExtension.h: -------------------------------------------------------------------------------- 1 | ../../../MJRefresh/MJRefreshExample/MJRefreshExample/MJRefresh/UIScrollView+MJExtension.h -------------------------------------------------------------------------------- /CalculatorDemo/Pods/Headers/Public/MJRefresh/UIScrollView+MJRefresh.h: -------------------------------------------------------------------------------- 1 | ../../../MJRefresh/MJRefreshExample/MJRefreshExample/MJRefresh/UIScrollView+MJRefresh.h -------------------------------------------------------------------------------- /CalculatorDemo/Pods/Headers/Public/MJRefresh/UIView+MJExtension.h: -------------------------------------------------------------------------------- 1 | ../../../MJRefresh/MJRefreshExample/MJRefreshExample/MJRefresh/UIView+MJExtension.h -------------------------------------------------------------------------------- /CalculatorDemo/Pods/MJRefresh/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmyWong/PersonalUITech/HEAD/CalculatorDemo/Pods/MJRefresh/LICENSE -------------------------------------------------------------------------------- /CalculatorDemo/Pods/MJRefresh/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmyWong/PersonalUITech/HEAD/CalculatorDemo/Pods/MJRefresh/README.md -------------------------------------------------------------------------------- /CalculatorDemo/Pods/Manifest.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmyWong/PersonalUITech/HEAD/CalculatorDemo/Pods/Manifest.lock -------------------------------------------------------------------------------- /CalculatorDemo/Pods/Pods.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmyWong/PersonalUITech/HEAD/CalculatorDemo/Pods/Pods.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /CalculatorDemo/podfile: -------------------------------------------------------------------------------- 1 | pod 'MJRefresh','~>1.0' 2 | -------------------------------------------------------------------------------- /CheckFaceDemo/CheckFaceDemo.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmyWong/PersonalUITech/HEAD/CheckFaceDemo/CheckFaceDemo.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /CheckFaceDemo/CheckFaceDemo/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmyWong/PersonalUITech/HEAD/CheckFaceDemo/CheckFaceDemo/AppDelegate.h -------------------------------------------------------------------------------- /CheckFaceDemo/CheckFaceDemo/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmyWong/PersonalUITech/HEAD/CheckFaceDemo/CheckFaceDemo/AppDelegate.m -------------------------------------------------------------------------------- /CheckFaceDemo/CheckFaceDemo/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmyWong/PersonalUITech/HEAD/CheckFaceDemo/CheckFaceDemo/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /CheckFaceDemo/CheckFaceDemo/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmyWong/PersonalUITech/HEAD/CheckFaceDemo/CheckFaceDemo/Info.plist -------------------------------------------------------------------------------- /CheckFaceDemo/CheckFaceDemo/ViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmyWong/PersonalUITech/HEAD/CheckFaceDemo/CheckFaceDemo/ViewController.h -------------------------------------------------------------------------------- /CheckFaceDemo/CheckFaceDemo/ViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmyWong/PersonalUITech/HEAD/CheckFaceDemo/CheckFaceDemo/ViewController.m -------------------------------------------------------------------------------- /CheckFaceDemo/CheckFaceDemo/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmyWong/PersonalUITech/HEAD/CheckFaceDemo/CheckFaceDemo/main.m -------------------------------------------------------------------------------- /CheckFaceDemo/CheckFaceDemo/证件照.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmyWong/PersonalUITech/HEAD/CheckFaceDemo/CheckFaceDemo/证件照.jpg -------------------------------------------------------------------------------- /ClipViewController/ClipViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmyWong/PersonalUITech/HEAD/ClipViewController/ClipViewController.h -------------------------------------------------------------------------------- /ClipViewController/ClipViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmyWong/PersonalUITech/HEAD/ClipViewController/ClipViewController.m -------------------------------------------------------------------------------- /CloudAPIDemo/CloudAPIDemo.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmyWong/PersonalUITech/HEAD/CloudAPIDemo/CloudAPIDemo.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /CloudAPIDemo/CloudAPIDemo/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmyWong/PersonalUITech/HEAD/CloudAPIDemo/CloudAPIDemo/AppDelegate.h -------------------------------------------------------------------------------- /CloudAPIDemo/CloudAPIDemo/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmyWong/PersonalUITech/HEAD/CloudAPIDemo/CloudAPIDemo/AppDelegate.m -------------------------------------------------------------------------------- /CloudAPIDemo/CloudAPIDemo/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmyWong/PersonalUITech/HEAD/CloudAPIDemo/CloudAPIDemo/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /CloudAPIDemo/CloudAPIDemo/CloudAPIDemo.entitlements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmyWong/PersonalUITech/HEAD/CloudAPIDemo/CloudAPIDemo/CloudAPIDemo.entitlements -------------------------------------------------------------------------------- /CloudAPIDemo/CloudAPIDemo/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmyWong/PersonalUITech/HEAD/CloudAPIDemo/CloudAPIDemo/Info.plist -------------------------------------------------------------------------------- /CloudAPIDemo/CloudAPIDemo/ViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmyWong/PersonalUITech/HEAD/CloudAPIDemo/CloudAPIDemo/ViewController.h -------------------------------------------------------------------------------- /CloudAPIDemo/CloudAPIDemo/ViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmyWong/PersonalUITech/HEAD/CloudAPIDemo/CloudAPIDemo/ViewController.m -------------------------------------------------------------------------------- /CloudAPIDemo/CloudAPIDemo/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmyWong/PersonalUITech/HEAD/CloudAPIDemo/CloudAPIDemo/main.m -------------------------------------------------------------------------------- /CloudAPIDemo/CloudAPIDemoTests/CloudAPIDemoTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmyWong/PersonalUITech/HEAD/CloudAPIDemo/CloudAPIDemoTests/CloudAPIDemoTests.m -------------------------------------------------------------------------------- /CloudAPIDemo/CloudAPIDemoTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmyWong/PersonalUITech/HEAD/CloudAPIDemo/CloudAPIDemoTests/Info.plist -------------------------------------------------------------------------------- /CloudAPIDemo/CloudAPIDemoUITests/CloudAPIDemoUITests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmyWong/PersonalUITech/HEAD/CloudAPIDemo/CloudAPIDemoUITests/CloudAPIDemoUITests.m -------------------------------------------------------------------------------- /CloudAPIDemo/CloudAPIDemoUITests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmyWong/PersonalUITech/HEAD/CloudAPIDemo/CloudAPIDemoUITests/Info.plist -------------------------------------------------------------------------------- /ColorfulQRCodeDemo/ColorfulQRCodeDemo/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmyWong/PersonalUITech/HEAD/ColorfulQRCodeDemo/ColorfulQRCodeDemo/AppDelegate.h -------------------------------------------------------------------------------- /ColorfulQRCodeDemo/ColorfulQRCodeDemo/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmyWong/PersonalUITech/HEAD/ColorfulQRCodeDemo/ColorfulQRCodeDemo/AppDelegate.m -------------------------------------------------------------------------------- /ColorfulQRCodeDemo/ColorfulQRCodeDemo/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmyWong/PersonalUITech/HEAD/ColorfulQRCodeDemo/ColorfulQRCodeDemo/Info.plist -------------------------------------------------------------------------------- /ColorfulQRCodeDemo/ColorfulQRCodeDemo/QRCodeImage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmyWong/PersonalUITech/HEAD/ColorfulQRCodeDemo/ColorfulQRCodeDemo/QRCodeImage.h -------------------------------------------------------------------------------- /ColorfulQRCodeDemo/ColorfulQRCodeDemo/QRCodeImage.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmyWong/PersonalUITech/HEAD/ColorfulQRCodeDemo/ColorfulQRCodeDemo/QRCodeImage.m -------------------------------------------------------------------------------- /ColorfulQRCodeDemo/ColorfulQRCodeDemo/ViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmyWong/PersonalUITech/HEAD/ColorfulQRCodeDemo/ColorfulQRCodeDemo/ViewController.h -------------------------------------------------------------------------------- /ColorfulQRCodeDemo/ColorfulQRCodeDemo/ViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmyWong/PersonalUITech/HEAD/ColorfulQRCodeDemo/ColorfulQRCodeDemo/ViewController.m -------------------------------------------------------------------------------- /ColorfulQRCodeDemo/ColorfulQRCodeDemo/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmyWong/PersonalUITech/HEAD/ColorfulQRCodeDemo/ColorfulQRCodeDemo/main.m -------------------------------------------------------------------------------- /Copy&Cut/Copy&Cut.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmyWong/PersonalUITech/HEAD/Copy&Cut/Copy&Cut.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Copy&Cut/Copy&Cut/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmyWong/PersonalUITech/HEAD/Copy&Cut/Copy&Cut/1.png -------------------------------------------------------------------------------- /Copy&Cut/Copy&Cut/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmyWong/PersonalUITech/HEAD/Copy&Cut/Copy&Cut/3.png -------------------------------------------------------------------------------- /Copy&Cut/Copy&Cut/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmyWong/PersonalUITech/HEAD/Copy&Cut/Copy&Cut/AppDelegate.h -------------------------------------------------------------------------------- /Copy&Cut/Copy&Cut/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmyWong/PersonalUITech/HEAD/Copy&Cut/Copy&Cut/AppDelegate.m -------------------------------------------------------------------------------- /Copy&Cut/Copy&Cut/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmyWong/PersonalUITech/HEAD/Copy&Cut/Copy&Cut/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /Copy&Cut/Copy&Cut/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmyWong/PersonalUITech/HEAD/Copy&Cut/Copy&Cut/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /Copy&Cut/Copy&Cut/EWCopyImageView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmyWong/PersonalUITech/HEAD/Copy&Cut/Copy&Cut/EWCopyImageView.h -------------------------------------------------------------------------------- /Copy&Cut/Copy&Cut/EWCopyImageView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmyWong/PersonalUITech/HEAD/Copy&Cut/Copy&Cut/EWCopyImageView.m -------------------------------------------------------------------------------- /Copy&Cut/Copy&Cut/EWCopyLabel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmyWong/PersonalUITech/HEAD/Copy&Cut/Copy&Cut/EWCopyLabel.h -------------------------------------------------------------------------------- /Copy&Cut/Copy&Cut/EWCopyLabel.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmyWong/PersonalUITech/HEAD/Copy&Cut/Copy&Cut/EWCopyLabel.m -------------------------------------------------------------------------------- /Copy&Cut/Copy&Cut/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmyWong/PersonalUITech/HEAD/Copy&Cut/Copy&Cut/Info.plist -------------------------------------------------------------------------------- /Copy&Cut/Copy&Cut/SecondViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmyWong/PersonalUITech/HEAD/Copy&Cut/Copy&Cut/SecondViewController.h -------------------------------------------------------------------------------- /Copy&Cut/Copy&Cut/SecondViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmyWong/PersonalUITech/HEAD/Copy&Cut/Copy&Cut/SecondViewController.m -------------------------------------------------------------------------------- /Copy&Cut/Copy&Cut/ThirdViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmyWong/PersonalUITech/HEAD/Copy&Cut/Copy&Cut/ThirdViewController.h -------------------------------------------------------------------------------- /Copy&Cut/Copy&Cut/ThirdViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmyWong/PersonalUITech/HEAD/Copy&Cut/Copy&Cut/ThirdViewController.m -------------------------------------------------------------------------------- /Copy&Cut/Copy&Cut/ViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmyWong/PersonalUITech/HEAD/Copy&Cut/Copy&Cut/ViewController.h -------------------------------------------------------------------------------- /Copy&Cut/Copy&Cut/ViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmyWong/PersonalUITech/HEAD/Copy&Cut/Copy&Cut/ViewController.m -------------------------------------------------------------------------------- /Copy&Cut/Copy&Cut/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmyWong/PersonalUITech/HEAD/Copy&Cut/Copy&Cut/main.m -------------------------------------------------------------------------------- /CoreImage/CoreImage.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmyWong/PersonalUITech/HEAD/CoreImage/CoreImage.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /CoreImage/CoreImage/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmyWong/PersonalUITech/HEAD/CoreImage/CoreImage/1.png -------------------------------------------------------------------------------- /CoreImage/CoreImage/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmyWong/PersonalUITech/HEAD/CoreImage/CoreImage/AppDelegate.h -------------------------------------------------------------------------------- /CoreImage/CoreImage/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmyWong/PersonalUITech/HEAD/CoreImage/CoreImage/AppDelegate.m -------------------------------------------------------------------------------- /CoreImage/CoreImage/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmyWong/PersonalUITech/HEAD/CoreImage/CoreImage/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /CoreImage/CoreImage/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmyWong/PersonalUITech/HEAD/CoreImage/CoreImage/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /CoreImage/CoreImage/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmyWong/PersonalUITech/HEAD/CoreImage/CoreImage/Info.plist -------------------------------------------------------------------------------- /CoreImage/CoreImage/ViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmyWong/PersonalUITech/HEAD/CoreImage/CoreImage/ViewController.h -------------------------------------------------------------------------------- /CoreImage/CoreImage/ViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmyWong/PersonalUITech/HEAD/CoreImage/CoreImage/ViewController.m -------------------------------------------------------------------------------- /CoreImage/CoreImage/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmyWong/PersonalUITech/HEAD/CoreImage/CoreImage/main.m -------------------------------------------------------------------------------- /CustomAlertView/CustomAlertView/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmyWong/PersonalUITech/HEAD/CustomAlertView/CustomAlertView/1.png -------------------------------------------------------------------------------- /CustomAlertView/CustomAlertView/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmyWong/PersonalUITech/HEAD/CustomAlertView/CustomAlertView/AppDelegate.h -------------------------------------------------------------------------------- /CustomAlertView/CustomAlertView/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmyWong/PersonalUITech/HEAD/CustomAlertView/CustomAlertView/AppDelegate.m -------------------------------------------------------------------------------- /CustomAlertView/CustomAlertView/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmyWong/PersonalUITech/HEAD/CustomAlertView/CustomAlertView/Info.plist -------------------------------------------------------------------------------- /CustomAlertView/CustomAlertView/ViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmyWong/PersonalUITech/HEAD/CustomAlertView/CustomAlertView/ViewController.h -------------------------------------------------------------------------------- /CustomAlertView/CustomAlertView/ViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmyWong/PersonalUITech/HEAD/CustomAlertView/CustomAlertView/ViewController.m -------------------------------------------------------------------------------- /CustomAlertView/CustomAlertView/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmyWong/PersonalUITech/HEAD/CustomAlertView/CustomAlertView/main.m -------------------------------------------------------------------------------- /CustomButton/CustomButton.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmyWong/PersonalUITech/HEAD/CustomButton/CustomButton.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /CustomButton/CustomButton/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmyWong/PersonalUITech/HEAD/CustomButton/CustomButton/AppDelegate.h -------------------------------------------------------------------------------- /CustomButton/CustomButton/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmyWong/PersonalUITech/HEAD/CustomButton/CustomButton/AppDelegate.m -------------------------------------------------------------------------------- /CustomButton/CustomButton/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmyWong/PersonalUITech/HEAD/CustomButton/CustomButton/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /CustomButton/CustomButton/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmyWong/PersonalUITech/HEAD/CustomButton/CustomButton/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /CustomButton/CustomButton/CustomButton.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmyWong/PersonalUITech/HEAD/CustomButton/CustomButton/CustomButton.h -------------------------------------------------------------------------------- /CustomButton/CustomButton/CustomButton.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmyWong/PersonalUITech/HEAD/CustomButton/CustomButton/CustomButton.m -------------------------------------------------------------------------------- /CustomButton/CustomButton/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmyWong/PersonalUITech/HEAD/CustomButton/CustomButton/Info.plist -------------------------------------------------------------------------------- /CustomButton/CustomButton/ViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmyWong/PersonalUITech/HEAD/CustomButton/CustomButton/ViewController.h -------------------------------------------------------------------------------- /CustomButton/CustomButton/ViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmyWong/PersonalUITech/HEAD/CustomButton/CustomButton/ViewController.m -------------------------------------------------------------------------------- /CustomButton/CustomButton/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmyWong/PersonalUITech/HEAD/CustomButton/CustomButton/main.m -------------------------------------------------------------------------------- /CustomLetterIndexView/CustomLetterIndexView/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmyWong/PersonalUITech/HEAD/CustomLetterIndexView/CustomLetterIndexView/Info.plist -------------------------------------------------------------------------------- /CustomLetterIndexView/CustomLetterIndexView/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmyWong/PersonalUITech/HEAD/CustomLetterIndexView/CustomLetterIndexView/main.m -------------------------------------------------------------------------------- /CustomProgressHud/CustomProgressHud/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmyWong/PersonalUITech/HEAD/CustomProgressHud/CustomProgressHud/AppDelegate.h -------------------------------------------------------------------------------- /CustomProgressHud/CustomProgressHud/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmyWong/PersonalUITech/HEAD/CustomProgressHud/CustomProgressHud/AppDelegate.m -------------------------------------------------------------------------------- /CustomProgressHud/CustomProgressHud/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmyWong/PersonalUITech/HEAD/CustomProgressHud/CustomProgressHud/Info.plist -------------------------------------------------------------------------------- /CustomProgressHud/CustomProgressHud/ProgressHUD.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmyWong/PersonalUITech/HEAD/CustomProgressHud/CustomProgressHud/ProgressHUD.h -------------------------------------------------------------------------------- /CustomProgressHud/CustomProgressHud/ProgressHUD.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmyWong/PersonalUITech/HEAD/CustomProgressHud/CustomProgressHud/ProgressHUD.m -------------------------------------------------------------------------------- /CustomProgressHud/CustomProgressHud/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmyWong/PersonalUITech/HEAD/CustomProgressHud/CustomProgressHud/main.m -------------------------------------------------------------------------------- /EWWaterFallLayout/EWWaterFallLayout/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmyWong/PersonalUITech/HEAD/EWWaterFallLayout/EWWaterFallLayout/AppDelegate.h -------------------------------------------------------------------------------- /EWWaterFallLayout/EWWaterFallLayout/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmyWong/PersonalUITech/HEAD/EWWaterFallLayout/EWWaterFallLayout/AppDelegate.m -------------------------------------------------------------------------------- /EWWaterFallLayout/EWWaterFallLayout/EWWaterFallLayout.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmyWong/PersonalUITech/HEAD/EWWaterFallLayout/EWWaterFallLayout/EWWaterFallLayout.h -------------------------------------------------------------------------------- /EWWaterFallLayout/EWWaterFallLayout/EWWaterFallLayout.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmyWong/PersonalUITech/HEAD/EWWaterFallLayout/EWWaterFallLayout/EWWaterFallLayout.m -------------------------------------------------------------------------------- /EWWaterFallLayout/EWWaterFallLayout/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmyWong/PersonalUITech/HEAD/EWWaterFallLayout/EWWaterFallLayout/Info.plist -------------------------------------------------------------------------------- /EWWaterFallLayout/EWWaterFallLayout/ViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmyWong/PersonalUITech/HEAD/EWWaterFallLayout/EWWaterFallLayout/ViewController.h -------------------------------------------------------------------------------- /EWWaterFallLayout/EWWaterFallLayout/ViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmyWong/PersonalUITech/HEAD/EWWaterFallLayout/EWWaterFallLayout/ViewController.m -------------------------------------------------------------------------------- /EWWaterFallLayout/EWWaterFallLayout/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmyWong/PersonalUITech/HEAD/EWWaterFallLayout/EWWaterFallLayout/main.m -------------------------------------------------------------------------------- /EditingTest/EditingTest.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmyWong/PersonalUITech/HEAD/EditingTest/EditingTest.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /EditingTest/EditingTest/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmyWong/PersonalUITech/HEAD/EditingTest/EditingTest/AppDelegate.h -------------------------------------------------------------------------------- /EditingTest/EditingTest/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmyWong/PersonalUITech/HEAD/EditingTest/EditingTest/AppDelegate.m -------------------------------------------------------------------------------- /EditingTest/EditingTest/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmyWong/PersonalUITech/HEAD/EditingTest/EditingTest/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /EditingTest/EditingTest/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmyWong/PersonalUITech/HEAD/EditingTest/EditingTest/Info.plist -------------------------------------------------------------------------------- /EditingTest/EditingTest/ViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmyWong/PersonalUITech/HEAD/EditingTest/EditingTest/ViewController.h -------------------------------------------------------------------------------- /EditingTest/EditingTest/ViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmyWong/PersonalUITech/HEAD/EditingTest/EditingTest/ViewController.m -------------------------------------------------------------------------------- /EditingTest/EditingTest/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmyWong/PersonalUITech/HEAD/EditingTest/EditingTest/main.m -------------------------------------------------------------------------------- /ExceptionDemo/ExceptionDemo.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmyWong/PersonalUITech/HEAD/ExceptionDemo/ExceptionDemo.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /ExceptionDemo/ExceptionDemo/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmyWong/PersonalUITech/HEAD/ExceptionDemo/ExceptionDemo/AppDelegate.h -------------------------------------------------------------------------------- /ExceptionDemo/ExceptionDemo/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmyWong/PersonalUITech/HEAD/ExceptionDemo/ExceptionDemo/AppDelegate.m -------------------------------------------------------------------------------- /ExceptionDemo/ExceptionDemo/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmyWong/PersonalUITech/HEAD/ExceptionDemo/ExceptionDemo/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /ExceptionDemo/ExceptionDemo/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmyWong/PersonalUITech/HEAD/ExceptionDemo/ExceptionDemo/Info.plist -------------------------------------------------------------------------------- /ExceptionDemo/ExceptionDemo/NSMutableArray+Extension.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmyWong/PersonalUITech/HEAD/ExceptionDemo/ExceptionDemo/NSMutableArray+Extension.h -------------------------------------------------------------------------------- /ExceptionDemo/ExceptionDemo/NSMutableArray+Extension.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmyWong/PersonalUITech/HEAD/ExceptionDemo/ExceptionDemo/NSMutableArray+Extension.m -------------------------------------------------------------------------------- /ExceptionDemo/ExceptionDemo/ViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmyWong/PersonalUITech/HEAD/ExceptionDemo/ExceptionDemo/ViewController.h -------------------------------------------------------------------------------- /ExceptionDemo/ExceptionDemo/ViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmyWong/PersonalUITech/HEAD/ExceptionDemo/ExceptionDemo/ViewController.m -------------------------------------------------------------------------------- /ExceptionDemo/ExceptionDemo/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmyWong/PersonalUITech/HEAD/ExceptionDemo/ExceptionDemo/main.m -------------------------------------------------------------------------------- /FlowButtonDemo/FlowButtonDemo.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmyWong/PersonalUITech/HEAD/FlowButtonDemo/FlowButtonDemo.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /FlowButtonDemo/FlowButtonDemo/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmyWong/PersonalUITech/HEAD/FlowButtonDemo/FlowButtonDemo/AppDelegate.h -------------------------------------------------------------------------------- /FlowButtonDemo/FlowButtonDemo/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmyWong/PersonalUITech/HEAD/FlowButtonDemo/FlowButtonDemo/AppDelegate.m -------------------------------------------------------------------------------- /FlowButtonDemo/FlowButtonDemo/FlowButton.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmyWong/PersonalUITech/HEAD/FlowButtonDemo/FlowButtonDemo/FlowButton.h -------------------------------------------------------------------------------- /FlowButtonDemo/FlowButtonDemo/FlowButton.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmyWong/PersonalUITech/HEAD/FlowButtonDemo/FlowButtonDemo/FlowButton.m -------------------------------------------------------------------------------- /FlowButtonDemo/FlowButtonDemo/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmyWong/PersonalUITech/HEAD/FlowButtonDemo/FlowButtonDemo/Info.plist -------------------------------------------------------------------------------- /FlowButtonDemo/FlowButtonDemo/ViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmyWong/PersonalUITech/HEAD/FlowButtonDemo/FlowButtonDemo/ViewController.h -------------------------------------------------------------------------------- /FlowButtonDemo/FlowButtonDemo/ViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmyWong/PersonalUITech/HEAD/FlowButtonDemo/FlowButtonDemo/ViewController.m -------------------------------------------------------------------------------- /FlowButtonDemo/FlowButtonDemo/btnLightMask.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmyWong/PersonalUITech/HEAD/FlowButtonDemo/FlowButtonDemo/btnLightMask.png -------------------------------------------------------------------------------- /FlowButtonDemo/FlowButtonDemo/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmyWong/PersonalUITech/HEAD/FlowButtonDemo/FlowButtonDemo/main.m -------------------------------------------------------------------------------- /GetDeviceDemo/GetDeviceDemo.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmyWong/PersonalUITech/HEAD/GetDeviceDemo/GetDeviceDemo.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /GetDeviceDemo/GetDeviceDemo/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmyWong/PersonalUITech/HEAD/GetDeviceDemo/GetDeviceDemo/AppDelegate.h -------------------------------------------------------------------------------- /GetDeviceDemo/GetDeviceDemo/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmyWong/PersonalUITech/HEAD/GetDeviceDemo/GetDeviceDemo/AppDelegate.m -------------------------------------------------------------------------------- /GetDeviceDemo/GetDeviceDemo/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmyWong/PersonalUITech/HEAD/GetDeviceDemo/GetDeviceDemo/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /GetDeviceDemo/GetDeviceDemo/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmyWong/PersonalUITech/HEAD/GetDeviceDemo/GetDeviceDemo/Info.plist -------------------------------------------------------------------------------- /GetDeviceDemo/GetDeviceDemo/ViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmyWong/PersonalUITech/HEAD/GetDeviceDemo/GetDeviceDemo/ViewController.h -------------------------------------------------------------------------------- /GetDeviceDemo/GetDeviceDemo/ViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmyWong/PersonalUITech/HEAD/GetDeviceDemo/GetDeviceDemo/ViewController.m -------------------------------------------------------------------------------- /GetDeviceDemo/GetDeviceDemo/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmyWong/PersonalUITech/HEAD/GetDeviceDemo/GetDeviceDemo/main.m -------------------------------------------------------------------------------- /GradientView/GradientView.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmyWong/PersonalUITech/HEAD/GradientView/GradientView.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /GradientView/GradientView/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmyWong/PersonalUITech/HEAD/GradientView/GradientView/AppDelegate.h -------------------------------------------------------------------------------- /GradientView/GradientView/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmyWong/PersonalUITech/HEAD/GradientView/GradientView/AppDelegate.m -------------------------------------------------------------------------------- /GradientView/GradientView/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmyWong/PersonalUITech/HEAD/GradientView/GradientView/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /GradientView/GradientView/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmyWong/PersonalUITech/HEAD/GradientView/GradientView/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /GradientView/GradientView/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmyWong/PersonalUITech/HEAD/GradientView/GradientView/Info.plist -------------------------------------------------------------------------------- /GradientView/GradientView/ViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmyWong/PersonalUITech/HEAD/GradientView/GradientView/ViewController.h -------------------------------------------------------------------------------- /GradientView/GradientView/ViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmyWong/PersonalUITech/HEAD/GradientView/GradientView/ViewController.m -------------------------------------------------------------------------------- /GradientView/GradientView/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmyWong/PersonalUITech/HEAD/GradientView/GradientView/main.m -------------------------------------------------------------------------------- /GradientView/GradientView/zh_buttonbg@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmyWong/PersonalUITech/HEAD/GradientView/GradientView/zh_buttonbg@3x.png -------------------------------------------------------------------------------- /GreedySnakeDemo/GreedySnakeDemo/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmyWong/PersonalUITech/HEAD/GreedySnakeDemo/GreedySnakeDemo/AppDelegate.h -------------------------------------------------------------------------------- /GreedySnakeDemo/GreedySnakeDemo/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmyWong/PersonalUITech/HEAD/GreedySnakeDemo/GreedySnakeDemo/AppDelegate.m -------------------------------------------------------------------------------- /GreedySnakeDemo/GreedySnakeDemo/CustomPoint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmyWong/PersonalUITech/HEAD/GreedySnakeDemo/GreedySnakeDemo/CustomPoint.h -------------------------------------------------------------------------------- /GreedySnakeDemo/GreedySnakeDemo/CustomPoint.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmyWong/PersonalUITech/HEAD/GreedySnakeDemo/GreedySnakeDemo/CustomPoint.m -------------------------------------------------------------------------------- /GreedySnakeDemo/GreedySnakeDemo/GreedySnakeView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmyWong/PersonalUITech/HEAD/GreedySnakeDemo/GreedySnakeDemo/GreedySnakeView.h -------------------------------------------------------------------------------- /GreedySnakeDemo/GreedySnakeDemo/GreedySnakeView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmyWong/PersonalUITech/HEAD/GreedySnakeDemo/GreedySnakeDemo/GreedySnakeView.m -------------------------------------------------------------------------------- /GreedySnakeDemo/GreedySnakeDemo/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmyWong/PersonalUITech/HEAD/GreedySnakeDemo/GreedySnakeDemo/Info.plist -------------------------------------------------------------------------------- /GreedySnakeDemo/GreedySnakeDemo/ViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmyWong/PersonalUITech/HEAD/GreedySnakeDemo/GreedySnakeDemo/ViewController.h -------------------------------------------------------------------------------- /GreedySnakeDemo/GreedySnakeDemo/ViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmyWong/PersonalUITech/HEAD/GreedySnakeDemo/GreedySnakeDemo/ViewController.m -------------------------------------------------------------------------------- /GreedySnakeDemo/GreedySnakeDemo/close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmyWong/PersonalUITech/HEAD/GreedySnakeDemo/GreedySnakeDemo/close.png -------------------------------------------------------------------------------- /GreedySnakeDemo/GreedySnakeDemo/crash.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmyWong/PersonalUITech/HEAD/GreedySnakeDemo/GreedySnakeDemo/crash.wav -------------------------------------------------------------------------------- /GreedySnakeDemo/GreedySnakeDemo/gu.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmyWong/PersonalUITech/HEAD/GreedySnakeDemo/GreedySnakeDemo/gu.mp3 -------------------------------------------------------------------------------- /GreedySnakeDemo/GreedySnakeDemo/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmyWong/PersonalUITech/HEAD/GreedySnakeDemo/GreedySnakeDemo/icon.png -------------------------------------------------------------------------------- /GreedySnakeDemo/GreedySnakeDemo/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmyWong/PersonalUITech/HEAD/GreedySnakeDemo/GreedySnakeDemo/main.m -------------------------------------------------------------------------------- /GreedySnakeDemo/GreedySnakeDemo/pause.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmyWong/PersonalUITech/HEAD/GreedySnakeDemo/GreedySnakeDemo/pause.png -------------------------------------------------------------------------------- /GreedySnakeDemo/GreedySnakeDemo/start.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmyWong/PersonalUITech/HEAD/GreedySnakeDemo/GreedySnakeDemo/start.png -------------------------------------------------------------------------------- /GreedySnakeDemo/GreedySnakeDemoTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmyWong/PersonalUITech/HEAD/GreedySnakeDemo/GreedySnakeDemoTests/Info.plist -------------------------------------------------------------------------------- /GreedySnakeDemo/GreedySnakeDemoUITests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmyWong/PersonalUITech/HEAD/GreedySnakeDemo/GreedySnakeDemoUITests/Info.plist -------------------------------------------------------------------------------- /HealthKitDemo/HealthKitDemo.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmyWong/PersonalUITech/HEAD/HealthKitDemo/HealthKitDemo.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /HealthKitDemo/HealthKitDemo/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmyWong/PersonalUITech/HEAD/HealthKitDemo/HealthKitDemo/AppDelegate.h -------------------------------------------------------------------------------- /HealthKitDemo/HealthKitDemo/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmyWong/PersonalUITech/HEAD/HealthKitDemo/HealthKitDemo/AppDelegate.m -------------------------------------------------------------------------------- /HealthKitDemo/HealthKitDemo/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmyWong/PersonalUITech/HEAD/HealthKitDemo/HealthKitDemo/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /HealthKitDemo/HealthKitDemo/HealthKitDemo.entitlements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmyWong/PersonalUITech/HEAD/HealthKitDemo/HealthKitDemo/HealthKitDemo.entitlements -------------------------------------------------------------------------------- /HealthKitDemo/HealthKitDemo/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmyWong/PersonalUITech/HEAD/HealthKitDemo/HealthKitDemo/Info.plist -------------------------------------------------------------------------------- /HealthKitDemo/HealthKitDemo/ViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmyWong/PersonalUITech/HEAD/HealthKitDemo/HealthKitDemo/ViewController.h -------------------------------------------------------------------------------- /HealthKitDemo/HealthKitDemo/ViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmyWong/PersonalUITech/HEAD/HealthKitDemo/HealthKitDemo/ViewController.m -------------------------------------------------------------------------------- /HealthKitDemo/HealthKitDemo/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmyWong/PersonalUITech/HEAD/HealthKitDemo/HealthKitDemo/main.m -------------------------------------------------------------------------------- /ImageMoveAnimationDemo/ImageMoveAnimationDemo/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmyWong/PersonalUITech/HEAD/ImageMoveAnimationDemo/ImageMoveAnimationDemo/main.m -------------------------------------------------------------------------------- /JpushDemo/Demo.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmyWong/PersonalUITech/HEAD/JpushDemo/Demo.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /JpushDemo/Demo.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmyWong/PersonalUITech/HEAD/JpushDemo/Demo.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /JpushDemo/Demo/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmyWong/PersonalUITech/HEAD/JpushDemo/Demo/AppDelegate.h -------------------------------------------------------------------------------- /JpushDemo/Demo/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmyWong/PersonalUITech/HEAD/JpushDemo/Demo/AppDelegate.m -------------------------------------------------------------------------------- /JpushDemo/Demo/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmyWong/PersonalUITech/HEAD/JpushDemo/Demo/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /JpushDemo/Demo/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmyWong/PersonalUITech/HEAD/JpushDemo/Demo/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /JpushDemo/Demo/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmyWong/PersonalUITech/HEAD/JpushDemo/Demo/Info.plist -------------------------------------------------------------------------------- /JpushDemo/Demo/ViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmyWong/PersonalUITech/HEAD/JpushDemo/Demo/ViewController.h -------------------------------------------------------------------------------- /JpushDemo/Demo/ViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmyWong/PersonalUITech/HEAD/JpushDemo/Demo/ViewController.m -------------------------------------------------------------------------------- /JpushDemo/Demo/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmyWong/PersonalUITech/HEAD/JpushDemo/Demo/icon.png -------------------------------------------------------------------------------- /JpushDemo/Demo/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmyWong/PersonalUITech/HEAD/JpushDemo/Demo/main.m -------------------------------------------------------------------------------- /JpushDemo/Podfile: -------------------------------------------------------------------------------- 1 | platform :ios,'7.0' 2 | pod 'JPush','~>2.1.0' 3 | -------------------------------------------------------------------------------- /JpushDemo/Podfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmyWong/PersonalUITech/HEAD/JpushDemo/Podfile.lock -------------------------------------------------------------------------------- /JpushDemo/Pods/Headers/Private/JPush/JPUSHService.h: -------------------------------------------------------------------------------- 1 | ../../../JPush/lib/JPUSHService.h -------------------------------------------------------------------------------- /JpushDemo/Pods/Headers/Public/JPush/JPUSHService.h: -------------------------------------------------------------------------------- 1 | ../../../JPush/lib/JPUSHService.h -------------------------------------------------------------------------------- /JpushDemo/Pods/JPush/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmyWong/PersonalUITech/HEAD/JpushDemo/Pods/JPush/LICENSE -------------------------------------------------------------------------------- /JpushDemo/Pods/JPush/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmyWong/PersonalUITech/HEAD/JpushDemo/Pods/JPush/README.md -------------------------------------------------------------------------------- /JpushDemo/Pods/JPush/lib/JPUSHService.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmyWong/PersonalUITech/HEAD/JpushDemo/Pods/JPush/lib/JPUSHService.h -------------------------------------------------------------------------------- /JpushDemo/Pods/JPush/lib/libjpush-ios-2.1.8.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmyWong/PersonalUITech/HEAD/JpushDemo/Pods/JPush/lib/libjpush-ios-2.1.8.a -------------------------------------------------------------------------------- /JpushDemo/Pods/Manifest.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmyWong/PersonalUITech/HEAD/JpushDemo/Pods/Manifest.lock -------------------------------------------------------------------------------- /JpushDemo/Pods/Pods.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmyWong/PersonalUITech/HEAD/JpushDemo/Pods/Pods.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /JpushDemo/Pods/Target Support Files/Pods/Pods-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmyWong/PersonalUITech/HEAD/JpushDemo/Pods/Target Support Files/Pods/Pods-dummy.m -------------------------------------------------------------------------------- /JpushDemo/PushConfig.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmyWong/PersonalUITech/HEAD/JpushDemo/PushConfig.plist -------------------------------------------------------------------------------- /MoonDemo/imageDemo.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmyWong/PersonalUITech/HEAD/MoonDemo/imageDemo.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /MoonDemo/imageDemo/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmyWong/PersonalUITech/HEAD/MoonDemo/imageDemo/AppDelegate.h -------------------------------------------------------------------------------- /MoonDemo/imageDemo/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmyWong/PersonalUITech/HEAD/MoonDemo/imageDemo/AppDelegate.m -------------------------------------------------------------------------------- /MoonDemo/imageDemo/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmyWong/PersonalUITech/HEAD/MoonDemo/imageDemo/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /MoonDemo/imageDemo/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmyWong/PersonalUITech/HEAD/MoonDemo/imageDemo/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /MoonDemo/imageDemo/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmyWong/PersonalUITech/HEAD/MoonDemo/imageDemo/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /MoonDemo/imageDemo/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmyWong/PersonalUITech/HEAD/MoonDemo/imageDemo/Info.plist -------------------------------------------------------------------------------- /MoonDemo/imageDemo/ViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmyWong/PersonalUITech/HEAD/MoonDemo/imageDemo/ViewController.h -------------------------------------------------------------------------------- /MoonDemo/imageDemo/ViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmyWong/PersonalUITech/HEAD/MoonDemo/imageDemo/ViewController.m -------------------------------------------------------------------------------- /MoonDemo/imageDemo/image1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmyWong/PersonalUITech/HEAD/MoonDemo/imageDemo/image1.png -------------------------------------------------------------------------------- /MoonDemo/imageDemo/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmyWong/PersonalUITech/HEAD/MoonDemo/imageDemo/main.m -------------------------------------------------------------------------------- /MotionLaunchDemo/MotionLaunchDemo/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmyWong/PersonalUITech/HEAD/MotionLaunchDemo/MotionLaunchDemo/AppDelegate.h -------------------------------------------------------------------------------- /MotionLaunchDemo/MotionLaunchDemo/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmyWong/PersonalUITech/HEAD/MotionLaunchDemo/MotionLaunchDemo/AppDelegate.m -------------------------------------------------------------------------------- /MotionLaunchDemo/MotionLaunchDemo/SpeedDialView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmyWong/PersonalUITech/HEAD/MotionLaunchDemo/MotionLaunchDemo/SpeedDialView.h -------------------------------------------------------------------------------- /MotionLaunchDemo/MotionLaunchDemo/SpeedDialView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmyWong/PersonalUITech/HEAD/MotionLaunchDemo/MotionLaunchDemo/SpeedDialView.m -------------------------------------------------------------------------------- /MotionLaunchDemo/MotionLaunchDemo/ViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmyWong/PersonalUITech/HEAD/MotionLaunchDemo/MotionLaunchDemo/ViewController.h -------------------------------------------------------------------------------- /MotionLaunchDemo/MotionLaunchDemo/ViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmyWong/PersonalUITech/HEAD/MotionLaunchDemo/MotionLaunchDemo/ViewController.m -------------------------------------------------------------------------------- /MotionLaunchDemo/MotionLaunchDemo/heihei.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmyWong/PersonalUITech/HEAD/MotionLaunchDemo/MotionLaunchDemo/heihei.png -------------------------------------------------------------------------------- /MotionLaunchDemo/MotionLaunchDemo/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmyWong/PersonalUITech/HEAD/MotionLaunchDemo/MotionLaunchDemo/main.m -------------------------------------------------------------------------------- /MotionLaunchDemo/MotionLaunchDemo/shi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmyWong/PersonalUITech/HEAD/MotionLaunchDemo/MotionLaunchDemo/shi.png -------------------------------------------------------------------------------- /MotionLaunchDemo/MotionLaunchDemo/xv.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmyWong/PersonalUITech/HEAD/MotionLaunchDemo/MotionLaunchDemo/xv.png -------------------------------------------------------------------------------- /MotionManagerDemo/IMG_0017.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmyWong/PersonalUITech/HEAD/MotionManagerDemo/IMG_0017.PNG -------------------------------------------------------------------------------- /MotionManagerDemo/IMG_0018.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmyWong/PersonalUITech/HEAD/MotionManagerDemo/IMG_0018.PNG -------------------------------------------------------------------------------- /MotionManagerDemo/MotionManagerDemo/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmyWong/PersonalUITech/HEAD/MotionManagerDemo/MotionManagerDemo/AppDelegate.h -------------------------------------------------------------------------------- /MotionManagerDemo/MotionManagerDemo/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmyWong/PersonalUITech/HEAD/MotionManagerDemo/MotionManagerDemo/AppDelegate.m -------------------------------------------------------------------------------- /MotionManagerDemo/MotionManagerDemo/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmyWong/PersonalUITech/HEAD/MotionManagerDemo/MotionManagerDemo/Info.plist -------------------------------------------------------------------------------- /MotionManagerDemo/MotionManagerDemo/ViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmyWong/PersonalUITech/HEAD/MotionManagerDemo/MotionManagerDemo/ViewController.h -------------------------------------------------------------------------------- /MotionManagerDemo/MotionManagerDemo/ViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmyWong/PersonalUITech/HEAD/MotionManagerDemo/MotionManagerDemo/ViewController.m -------------------------------------------------------------------------------- /MotionManagerDemo/MotionManagerDemo/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmyWong/PersonalUITech/HEAD/MotionManagerDemo/MotionManagerDemo/main.m -------------------------------------------------------------------------------- /MotionManagerDemo/MotionManagerDemoTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmyWong/PersonalUITech/HEAD/MotionManagerDemo/MotionManagerDemoTests/Info.plist -------------------------------------------------------------------------------- /MotionManagerDemo/MotionManagerDemoUITests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmyWong/PersonalUITech/HEAD/MotionManagerDemo/MotionManagerDemoUITests/Info.plist -------------------------------------------------------------------------------- /Multi-TargetDemo/Multi-TargetDemo/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmyWong/PersonalUITech/HEAD/Multi-TargetDemo/Multi-TargetDemo/AppDelegate.h -------------------------------------------------------------------------------- /Multi-TargetDemo/Multi-TargetDemo/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmyWong/PersonalUITech/HEAD/Multi-TargetDemo/Multi-TargetDemo/AppDelegate.m -------------------------------------------------------------------------------- /Multi-TargetDemo/Multi-TargetDemo/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmyWong/PersonalUITech/HEAD/Multi-TargetDemo/Multi-TargetDemo/Info.plist -------------------------------------------------------------------------------- /Multi-TargetDemo/Multi-TargetDemo/ViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmyWong/PersonalUITech/HEAD/Multi-TargetDemo/Multi-TargetDemo/ViewController.h -------------------------------------------------------------------------------- /Multi-TargetDemo/Multi-TargetDemo/ViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmyWong/PersonalUITech/HEAD/Multi-TargetDemo/Multi-TargetDemo/ViewController.m -------------------------------------------------------------------------------- /Multi-TargetDemo/Multi-TargetDemo/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmyWong/PersonalUITech/HEAD/Multi-TargetDemo/Multi-TargetDemo/main.m -------------------------------------------------------------------------------- /Multi-TargetDemo/Target2/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmyWong/PersonalUITech/HEAD/Multi-TargetDemo/Target2/Info.plist -------------------------------------------------------------------------------- /Multi-TargetDemo/Target2/Target2AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmyWong/PersonalUITech/HEAD/Multi-TargetDemo/Target2/Target2AppDelegate.h -------------------------------------------------------------------------------- /Multi-TargetDemo/Target2/Target2AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmyWong/PersonalUITech/HEAD/Multi-TargetDemo/Target2/Target2AppDelegate.m -------------------------------------------------------------------------------- /Multi-TargetDemo/Target2/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmyWong/PersonalUITech/HEAD/Multi-TargetDemo/Target2/main.m -------------------------------------------------------------------------------- /NSLocaleDemo/NSLocaleDemo.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmyWong/PersonalUITech/HEAD/NSLocaleDemo/NSLocaleDemo.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /NSLocaleDemo/NSLocaleDemo/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmyWong/PersonalUITech/HEAD/NSLocaleDemo/NSLocaleDemo/AppDelegate.h -------------------------------------------------------------------------------- /NSLocaleDemo/NSLocaleDemo/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmyWong/PersonalUITech/HEAD/NSLocaleDemo/NSLocaleDemo/AppDelegate.m -------------------------------------------------------------------------------- /NSLocaleDemo/NSLocaleDemo/Base.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmyWong/PersonalUITech/HEAD/NSLocaleDemo/NSLocaleDemo/Base.lproj/InfoPlist.strings -------------------------------------------------------------------------------- /NSLocaleDemo/NSLocaleDemo/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmyWong/PersonalUITech/HEAD/NSLocaleDemo/NSLocaleDemo/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /NSLocaleDemo/NSLocaleDemo/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmyWong/PersonalUITech/HEAD/NSLocaleDemo/NSLocaleDemo/Info.plist -------------------------------------------------------------------------------- /NSLocaleDemo/NSLocaleDemo/ViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmyWong/PersonalUITech/HEAD/NSLocaleDemo/NSLocaleDemo/ViewController.h -------------------------------------------------------------------------------- /NSLocaleDemo/NSLocaleDemo/ViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmyWong/PersonalUITech/HEAD/NSLocaleDemo/NSLocaleDemo/ViewController.m -------------------------------------------------------------------------------- /NSLocaleDemo/NSLocaleDemo/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmyWong/PersonalUITech/HEAD/NSLocaleDemo/NSLocaleDemo/en.lproj/InfoPlist.strings -------------------------------------------------------------------------------- /NSLocaleDemo/NSLocaleDemo/en.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmyWong/PersonalUITech/HEAD/NSLocaleDemo/NSLocaleDemo/en.lproj/Localizable.strings -------------------------------------------------------------------------------- /NSLocaleDemo/NSLocaleDemo/en.lproj/img.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmyWong/PersonalUITech/HEAD/NSLocaleDemo/NSLocaleDemo/en.lproj/img.png -------------------------------------------------------------------------------- /NSLocaleDemo/NSLocaleDemo/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmyWong/PersonalUITech/HEAD/NSLocaleDemo/NSLocaleDemo/main.m -------------------------------------------------------------------------------- /NSLocaleDemo/NSLocaleDemo/zh-Hans.lproj/LaunchScreen.strings: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /NSLocaleDemo/NSLocaleDemo/zh-Hans.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmyWong/PersonalUITech/HEAD/NSLocaleDemo/NSLocaleDemo/zh-Hans.lproj/Main.storyboard -------------------------------------------------------------------------------- /NSLocaleDemo/NSLocaleDemo/zh-Hans.lproj/img.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmyWong/PersonalUITech/HEAD/NSLocaleDemo/NSLocaleDemo/zh-Hans.lproj/img.png -------------------------------------------------------------------------------- /NSLocaleDemo/NSLocaleDemoTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmyWong/PersonalUITech/HEAD/NSLocaleDemo/NSLocaleDemoTests/Info.plist -------------------------------------------------------------------------------- /NSLocaleDemo/NSLocaleDemoTests/NSLocaleDemoTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmyWong/PersonalUITech/HEAD/NSLocaleDemo/NSLocaleDemoTests/NSLocaleDemoTests.m -------------------------------------------------------------------------------- /NSLocaleDemo/NSLocaleDemoUITests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmyWong/PersonalUITech/HEAD/NSLocaleDemo/NSLocaleDemoUITests/Info.plist -------------------------------------------------------------------------------- /NSLocaleDemo/NSLocaleDemoUITests/NSLocaleDemoUITests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmyWong/PersonalUITech/HEAD/NSLocaleDemo/NSLocaleDemoUITests/NSLocaleDemoUITests.m -------------------------------------------------------------------------------- /NSLocaleDemo/zh-Hans.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmyWong/PersonalUITech/HEAD/NSLocaleDemo/zh-Hans.lproj/Localizable.strings -------------------------------------------------------------------------------- /ProgressTest/ProgressTest.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmyWong/PersonalUITech/HEAD/ProgressTest/ProgressTest.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /ProgressTest/ProgressTest/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmyWong/PersonalUITech/HEAD/ProgressTest/ProgressTest/AppDelegate.h -------------------------------------------------------------------------------- /ProgressTest/ProgressTest/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmyWong/PersonalUITech/HEAD/ProgressTest/ProgressTest/AppDelegate.m -------------------------------------------------------------------------------- /ProgressTest/ProgressTest/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmyWong/PersonalUITech/HEAD/ProgressTest/ProgressTest/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /ProgressTest/ProgressTest/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmyWong/PersonalUITech/HEAD/ProgressTest/ProgressTest/Info.plist -------------------------------------------------------------------------------- /ProgressTest/ProgressTest/ViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmyWong/PersonalUITech/HEAD/ProgressTest/ProgressTest/ViewController.h -------------------------------------------------------------------------------- /ProgressTest/ProgressTest/ViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmyWong/PersonalUITech/HEAD/ProgressTest/ProgressTest/ViewController.m -------------------------------------------------------------------------------- /ProgressTest/ProgressTest/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmyWong/PersonalUITech/HEAD/ProgressTest/ProgressTest/main.m -------------------------------------------------------------------------------- /Quartz2DDemo/Quartz2DDemo.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmyWong/PersonalUITech/HEAD/Quartz2DDemo/Quartz2DDemo.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Quartz2DDemo/Quartz2DDemo/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmyWong/PersonalUITech/HEAD/Quartz2DDemo/Quartz2DDemo/AppDelegate.h -------------------------------------------------------------------------------- /Quartz2DDemo/Quartz2DDemo/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmyWong/PersonalUITech/HEAD/Quartz2DDemo/Quartz2DDemo/AppDelegate.m -------------------------------------------------------------------------------- /Quartz2DDemo/Quartz2DDemo/BarChartView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmyWong/PersonalUITech/HEAD/Quartz2DDemo/Quartz2DDemo/BarChartView.h -------------------------------------------------------------------------------- /Quartz2DDemo/Quartz2DDemo/BarChartView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmyWong/PersonalUITech/HEAD/Quartz2DDemo/Quartz2DDemo/BarChartView.m -------------------------------------------------------------------------------- /Quartz2DDemo/Quartz2DDemo/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmyWong/PersonalUITech/HEAD/Quartz2DDemo/Quartz2DDemo/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /Quartz2DDemo/Quartz2DDemo/CustomImageView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmyWong/PersonalUITech/HEAD/Quartz2DDemo/Quartz2DDemo/CustomImageView.h -------------------------------------------------------------------------------- /Quartz2DDemo/Quartz2DDemo/CustomImageView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmyWong/PersonalUITech/HEAD/Quartz2DDemo/Quartz2DDemo/CustomImageView.m -------------------------------------------------------------------------------- /Quartz2DDemo/Quartz2DDemo/CustomProgressView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmyWong/PersonalUITech/HEAD/Quartz2DDemo/Quartz2DDemo/CustomProgressView.h -------------------------------------------------------------------------------- /Quartz2DDemo/Quartz2DDemo/CustomProgressView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmyWong/PersonalUITech/HEAD/Quartz2DDemo/Quartz2DDemo/CustomProgressView.m -------------------------------------------------------------------------------- /Quartz2DDemo/Quartz2DDemo/CustomTextView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmyWong/PersonalUITech/HEAD/Quartz2DDemo/Quartz2DDemo/CustomTextView.h -------------------------------------------------------------------------------- /Quartz2DDemo/Quartz2DDemo/CustomTextView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmyWong/PersonalUITech/HEAD/Quartz2DDemo/Quartz2DDemo/CustomTextView.m -------------------------------------------------------------------------------- /Quartz2DDemo/Quartz2DDemo/CustomView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmyWong/PersonalUITech/HEAD/Quartz2DDemo/Quartz2DDemo/CustomView.h -------------------------------------------------------------------------------- /Quartz2DDemo/Quartz2DDemo/CustomView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmyWong/PersonalUITech/HEAD/Quartz2DDemo/Quartz2DDemo/CustomView.m -------------------------------------------------------------------------------- /Quartz2DDemo/Quartz2DDemo/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmyWong/PersonalUITech/HEAD/Quartz2DDemo/Quartz2DDemo/Info.plist -------------------------------------------------------------------------------- /Quartz2DDemo/Quartz2DDemo/PieView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmyWong/PersonalUITech/HEAD/Quartz2DDemo/Quartz2DDemo/PieView.h -------------------------------------------------------------------------------- /Quartz2DDemo/Quartz2DDemo/PieView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmyWong/PersonalUITech/HEAD/Quartz2DDemo/Quartz2DDemo/PieView.m -------------------------------------------------------------------------------- /Quartz2DDemo/Quartz2DDemo/ViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmyWong/PersonalUITech/HEAD/Quartz2DDemo/Quartz2DDemo/ViewController.h -------------------------------------------------------------------------------- /Quartz2DDemo/Quartz2DDemo/ViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmyWong/PersonalUITech/HEAD/Quartz2DDemo/Quartz2DDemo/ViewController.m -------------------------------------------------------------------------------- /Quartz2DDemo/Quartz2DDemo/image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmyWong/PersonalUITech/HEAD/Quartz2DDemo/Quartz2DDemo/image.png -------------------------------------------------------------------------------- /Quartz2DDemo/Quartz2DDemo/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmyWong/PersonalUITech/HEAD/Quartz2DDemo/Quartz2DDemo/main.m -------------------------------------------------------------------------------- /ReadAddressBookDemo/ReadAddressBookDemo/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmyWong/PersonalUITech/HEAD/ReadAddressBookDemo/ReadAddressBookDemo/AppDelegate.h -------------------------------------------------------------------------------- /ReadAddressBookDemo/ReadAddressBookDemo/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmyWong/PersonalUITech/HEAD/ReadAddressBookDemo/ReadAddressBookDemo/AppDelegate.m -------------------------------------------------------------------------------- /ReadAddressBookDemo/ReadAddressBookDemo/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmyWong/PersonalUITech/HEAD/ReadAddressBookDemo/ReadAddressBookDemo/Info.plist -------------------------------------------------------------------------------- /ReadAddressBookDemo/ReadAddressBookDemo/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmyWong/PersonalUITech/HEAD/ReadAddressBookDemo/ReadAddressBookDemo/main.m -------------------------------------------------------------------------------- /ReadAddressBookDemo/ReadAddressBookDemo/tx.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmyWong/PersonalUITech/HEAD/ReadAddressBookDemo/ReadAddressBookDemo/tx.png -------------------------------------------------------------------------------- /ReadBrightnessDemo/ReadBrightnessDemo/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmyWong/PersonalUITech/HEAD/ReadBrightnessDemo/ReadBrightnessDemo/AppDelegate.h -------------------------------------------------------------------------------- /ReadBrightnessDemo/ReadBrightnessDemo/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmyWong/PersonalUITech/HEAD/ReadBrightnessDemo/ReadBrightnessDemo/AppDelegate.m -------------------------------------------------------------------------------- /ReadBrightnessDemo/ReadBrightnessDemo/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmyWong/PersonalUITech/HEAD/ReadBrightnessDemo/ReadBrightnessDemo/Info.plist -------------------------------------------------------------------------------- /ReadBrightnessDemo/ReadBrightnessDemo/ViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmyWong/PersonalUITech/HEAD/ReadBrightnessDemo/ReadBrightnessDemo/ViewController.h -------------------------------------------------------------------------------- /ReadBrightnessDemo/ReadBrightnessDemo/ViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmyWong/PersonalUITech/HEAD/ReadBrightnessDemo/ReadBrightnessDemo/ViewController.m -------------------------------------------------------------------------------- /ReadBrightnessDemo/ReadBrightnessDemo/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmyWong/PersonalUITech/HEAD/ReadBrightnessDemo/ReadBrightnessDemo/main.m -------------------------------------------------------------------------------- /ResponderChainDemo/ResponderChainDemo/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmyWong/PersonalUITech/HEAD/ResponderChainDemo/ResponderChainDemo/AppDelegate.h -------------------------------------------------------------------------------- /ResponderChainDemo/ResponderChainDemo/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmyWong/PersonalUITech/HEAD/ResponderChainDemo/ResponderChainDemo/AppDelegate.m -------------------------------------------------------------------------------- /ResponderChainDemo/ResponderChainDemo/Hook.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmyWong/PersonalUITech/HEAD/ResponderChainDemo/ResponderChainDemo/Hook.h -------------------------------------------------------------------------------- /ResponderChainDemo/ResponderChainDemo/Hook.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmyWong/PersonalUITech/HEAD/ResponderChainDemo/ResponderChainDemo/Hook.m -------------------------------------------------------------------------------- /ResponderChainDemo/ResponderChainDemo/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmyWong/PersonalUITech/HEAD/ResponderChainDemo/ResponderChainDemo/Info.plist -------------------------------------------------------------------------------- /ResponderChainDemo/ResponderChainDemo/SceneDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmyWong/PersonalUITech/HEAD/ResponderChainDemo/ResponderChainDemo/SceneDelegate.h -------------------------------------------------------------------------------- /ResponderChainDemo/ResponderChainDemo/SceneDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmyWong/PersonalUITech/HEAD/ResponderChainDemo/ResponderChainDemo/SceneDelegate.m -------------------------------------------------------------------------------- /ResponderChainDemo/ResponderChainDemo/SubView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmyWong/PersonalUITech/HEAD/ResponderChainDemo/ResponderChainDemo/SubView.h -------------------------------------------------------------------------------- /ResponderChainDemo/ResponderChainDemo/SubView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmyWong/PersonalUITech/HEAD/ResponderChainDemo/ResponderChainDemo/SubView.m -------------------------------------------------------------------------------- /ResponderChainDemo/ResponderChainDemo/SuperView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmyWong/PersonalUITech/HEAD/ResponderChainDemo/ResponderChainDemo/SuperView.h -------------------------------------------------------------------------------- /ResponderChainDemo/ResponderChainDemo/SuperView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmyWong/PersonalUITech/HEAD/ResponderChainDemo/ResponderChainDemo/SuperView.m -------------------------------------------------------------------------------- /ResponderChainDemo/ResponderChainDemo/ViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmyWong/PersonalUITech/HEAD/ResponderChainDemo/ResponderChainDemo/ViewController.h -------------------------------------------------------------------------------- /ResponderChainDemo/ResponderChainDemo/ViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmyWong/PersonalUITech/HEAD/ResponderChainDemo/ResponderChainDemo/ViewController.m -------------------------------------------------------------------------------- /ResponderChainDemo/ResponderChainDemo/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmyWong/PersonalUITech/HEAD/ResponderChainDemo/ResponderChainDemo/main.m -------------------------------------------------------------------------------- /RunLabel/RunLabel.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmyWong/PersonalUITech/HEAD/RunLabel/RunLabel.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /RunLabel/RunLabel/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmyWong/PersonalUITech/HEAD/RunLabel/RunLabel/AppDelegate.h -------------------------------------------------------------------------------- /RunLabel/RunLabel/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmyWong/PersonalUITech/HEAD/RunLabel/RunLabel/AppDelegate.m -------------------------------------------------------------------------------- /RunLabel/RunLabel/AutoScrollLabel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmyWong/PersonalUITech/HEAD/RunLabel/RunLabel/AutoScrollLabel.h -------------------------------------------------------------------------------- /RunLabel/RunLabel/AutoScrollLabel.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmyWong/PersonalUITech/HEAD/RunLabel/RunLabel/AutoScrollLabel.m -------------------------------------------------------------------------------- /RunLabel/RunLabel/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmyWong/PersonalUITech/HEAD/RunLabel/RunLabel/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /RunLabel/RunLabel/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmyWong/PersonalUITech/HEAD/RunLabel/RunLabel/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /RunLabel/RunLabel/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmyWong/PersonalUITech/HEAD/RunLabel/RunLabel/Info.plist -------------------------------------------------------------------------------- /RunLabel/RunLabel/UIMarqueeBarView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmyWong/PersonalUITech/HEAD/RunLabel/RunLabel/UIMarqueeBarView.h -------------------------------------------------------------------------------- /RunLabel/RunLabel/UIMarqueeBarView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmyWong/PersonalUITech/HEAD/RunLabel/RunLabel/UIMarqueeBarView.m -------------------------------------------------------------------------------- /RunLabel/RunLabel/ViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmyWong/PersonalUITech/HEAD/RunLabel/RunLabel/ViewController.h -------------------------------------------------------------------------------- /RunLabel/RunLabel/ViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmyWong/PersonalUITech/HEAD/RunLabel/RunLabel/ViewController.m -------------------------------------------------------------------------------- /RunLabel/RunLabel/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmyWong/PersonalUITech/HEAD/RunLabel/RunLabel/main.m -------------------------------------------------------------------------------- /RuntimeEGDemo/RuntimeEGDemo.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmyWong/PersonalUITech/HEAD/RuntimeEGDemo/RuntimeEGDemo.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /RuntimeEGDemo/RuntimeEGDemo/Runtime/RuntimeKit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmyWong/PersonalUITech/HEAD/RuntimeEGDemo/RuntimeEGDemo/Runtime/RuntimeKit.h -------------------------------------------------------------------------------- /RuntimeEGDemo/RuntimeEGDemo/Runtime/RuntimeKit.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmyWong/PersonalUITech/HEAD/RuntimeEGDemo/RuntimeEGDemo/Runtime/RuntimeKit.m -------------------------------------------------------------------------------- /RuntimeEGDemo/RuntimeEGDemo/TestClass/TestClass.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmyWong/PersonalUITech/HEAD/RuntimeEGDemo/RuntimeEGDemo/TestClass/TestClass.h -------------------------------------------------------------------------------- /RuntimeEGDemo/RuntimeEGDemo/TestClass/TestClass.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmyWong/PersonalUITech/HEAD/RuntimeEGDemo/RuntimeEGDemo/TestClass/TestClass.m -------------------------------------------------------------------------------- /RuntimeEGDemo/RuntimeEGDemo/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmyWong/PersonalUITech/HEAD/RuntimeEGDemo/RuntimeEGDemo/main.m -------------------------------------------------------------------------------- /SDWebImage进度条/SDWebImage进度条.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmyWong/PersonalUITech/HEAD/SDWebImage进度条/SDWebImage进度条.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /SDWebImage进度条/SDWebImage进度条/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmyWong/PersonalUITech/HEAD/SDWebImage进度条/SDWebImage进度条/AppDelegate.h -------------------------------------------------------------------------------- /SDWebImage进度条/SDWebImage进度条/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmyWong/PersonalUITech/HEAD/SDWebImage进度条/SDWebImage进度条/AppDelegate.m -------------------------------------------------------------------------------- /SDWebImage进度条/SDWebImage进度条/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmyWong/PersonalUITech/HEAD/SDWebImage进度条/SDWebImage进度条/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /SDWebImage进度条/SDWebImage进度条/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmyWong/PersonalUITech/HEAD/SDWebImage进度条/SDWebImage进度条/Info.plist -------------------------------------------------------------------------------- /SDWebImage进度条/SDWebImage进度条/SDWebImage/SDImageCache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmyWong/PersonalUITech/HEAD/SDWebImage进度条/SDWebImage进度条/SDWebImage/SDImageCache.h -------------------------------------------------------------------------------- /SDWebImage进度条/SDWebImage进度条/SDWebImage/SDImageCache.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmyWong/PersonalUITech/HEAD/SDWebImage进度条/SDWebImage进度条/SDWebImage/SDImageCache.m -------------------------------------------------------------------------------- /SDWebImage进度条/SDWebImage进度条/SDWebImage/UIImage+GIF.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmyWong/PersonalUITech/HEAD/SDWebImage进度条/SDWebImage进度条/SDWebImage/UIImage+GIF.h -------------------------------------------------------------------------------- /SDWebImage进度条/SDWebImage进度条/SDWebImage/UIImage+GIF.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmyWong/PersonalUITech/HEAD/SDWebImage进度条/SDWebImage进度条/SDWebImage/UIImage+GIF.m -------------------------------------------------------------------------------- /SDWebImage进度条/SDWebImage进度条/SDWebImage/UIImage+WebP.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmyWong/PersonalUITech/HEAD/SDWebImage进度条/SDWebImage进度条/SDWebImage/UIImage+WebP.h -------------------------------------------------------------------------------- /SDWebImage进度条/SDWebImage进度条/SDWebImage/UIImage+WebP.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmyWong/PersonalUITech/HEAD/SDWebImage进度条/SDWebImage进度条/SDWebImage/UIImage+WebP.m -------------------------------------------------------------------------------- /SDWebImage进度条/SDWebImage进度条/ViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmyWong/PersonalUITech/HEAD/SDWebImage进度条/SDWebImage进度条/ViewController.h -------------------------------------------------------------------------------- /SDWebImage进度条/SDWebImage进度条/ViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmyWong/PersonalUITech/HEAD/SDWebImage进度条/SDWebImage进度条/ViewController.m -------------------------------------------------------------------------------- /SDWebImage进度条/SDWebImage进度条/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmyWong/PersonalUITech/HEAD/SDWebImage进度条/SDWebImage进度条/main.m -------------------------------------------------------------------------------- /SSZipArchive/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmyWong/PersonalUITech/HEAD/SSZipArchive/Podfile -------------------------------------------------------------------------------- /SSZipArchive/Podfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmyWong/PersonalUITech/HEAD/SSZipArchive/Podfile.lock -------------------------------------------------------------------------------- /SSZipArchive/Pods/Headers/Private/SSZipArchive/SSZipArchive.h: -------------------------------------------------------------------------------- 1 | ../../../SSZipArchive/SSZipArchive/SSZipArchive.h -------------------------------------------------------------------------------- /SSZipArchive/Pods/Headers/Private/SSZipArchive/SSZipCommon.h: -------------------------------------------------------------------------------- 1 | ../../../SSZipArchive/SSZipArchive/SSZipCommon.h -------------------------------------------------------------------------------- /SSZipArchive/Pods/Headers/Private/SSZipArchive/ZipArchive.h: -------------------------------------------------------------------------------- 1 | ../../../SSZipArchive/SSZipArchive/ZipArchive.h -------------------------------------------------------------------------------- /SSZipArchive/Pods/Headers/Private/SSZipArchive/aes.h: -------------------------------------------------------------------------------- 1 | ../../../SSZipArchive/SSZipArchive/aes/aes.h -------------------------------------------------------------------------------- /SSZipArchive/Pods/Headers/Private/SSZipArchive/aes_via_ace.h: -------------------------------------------------------------------------------- 1 | ../../../SSZipArchive/SSZipArchive/aes/aes_via_ace.h -------------------------------------------------------------------------------- /SSZipArchive/Pods/Headers/Private/SSZipArchive/aesopt.h: -------------------------------------------------------------------------------- 1 | ../../../SSZipArchive/SSZipArchive/aes/aesopt.h -------------------------------------------------------------------------------- /SSZipArchive/Pods/Headers/Private/SSZipArchive/aestab.h: -------------------------------------------------------------------------------- 1 | ../../../SSZipArchive/SSZipArchive/aes/aestab.h -------------------------------------------------------------------------------- /SSZipArchive/Pods/Headers/Private/SSZipArchive/brg_endian.h: -------------------------------------------------------------------------------- 1 | ../../../SSZipArchive/SSZipArchive/aes/brg_endian.h -------------------------------------------------------------------------------- /SSZipArchive/Pods/Headers/Private/SSZipArchive/brg_types.h: -------------------------------------------------------------------------------- 1 | ../../../SSZipArchive/SSZipArchive/aes/brg_types.h -------------------------------------------------------------------------------- /SSZipArchive/Pods/Headers/Private/SSZipArchive/crypt.h: -------------------------------------------------------------------------------- 1 | ../../../SSZipArchive/SSZipArchive/minizip/crypt.h -------------------------------------------------------------------------------- /SSZipArchive/Pods/Headers/Private/SSZipArchive/entropy.h: -------------------------------------------------------------------------------- 1 | ../../../SSZipArchive/SSZipArchive/aes/entropy.h -------------------------------------------------------------------------------- /SSZipArchive/Pods/Headers/Private/SSZipArchive/fileenc.h: -------------------------------------------------------------------------------- 1 | ../../../SSZipArchive/SSZipArchive/aes/fileenc.h -------------------------------------------------------------------------------- /SSZipArchive/Pods/Headers/Private/SSZipArchive/hmac.h: -------------------------------------------------------------------------------- 1 | ../../../SSZipArchive/SSZipArchive/aes/hmac.h -------------------------------------------------------------------------------- /SSZipArchive/Pods/Headers/Private/SSZipArchive/ioapi.h: -------------------------------------------------------------------------------- 1 | ../../../SSZipArchive/SSZipArchive/minizip/ioapi.h -------------------------------------------------------------------------------- /SSZipArchive/Pods/Headers/Private/SSZipArchive/mztools.h: -------------------------------------------------------------------------------- 1 | ../../../SSZipArchive/SSZipArchive/minizip/mztools.h -------------------------------------------------------------------------------- /SSZipArchive/Pods/Headers/Private/SSZipArchive/prng.h: -------------------------------------------------------------------------------- 1 | ../../../SSZipArchive/SSZipArchive/aes/prng.h -------------------------------------------------------------------------------- /SSZipArchive/Pods/Headers/Private/SSZipArchive/pwd2key.h: -------------------------------------------------------------------------------- 1 | ../../../SSZipArchive/SSZipArchive/aes/pwd2key.h -------------------------------------------------------------------------------- /SSZipArchive/Pods/Headers/Private/SSZipArchive/sha1.h: -------------------------------------------------------------------------------- 1 | ../../../SSZipArchive/SSZipArchive/aes/sha1.h -------------------------------------------------------------------------------- /SSZipArchive/Pods/Headers/Private/SSZipArchive/unzip.h: -------------------------------------------------------------------------------- 1 | ../../../SSZipArchive/SSZipArchive/minizip/unzip.h -------------------------------------------------------------------------------- /SSZipArchive/Pods/Headers/Private/SSZipArchive/zip.h: -------------------------------------------------------------------------------- 1 | ../../../SSZipArchive/SSZipArchive/minizip/zip.h -------------------------------------------------------------------------------- /SSZipArchive/Pods/Headers/Public/SSZipArchive/SSZipArchive.h: -------------------------------------------------------------------------------- 1 | ../../../SSZipArchive/SSZipArchive/SSZipArchive.h -------------------------------------------------------------------------------- /SSZipArchive/Pods/Headers/Public/SSZipArchive/SSZipCommon.h: -------------------------------------------------------------------------------- 1 | ../../../SSZipArchive/SSZipArchive/SSZipCommon.h -------------------------------------------------------------------------------- /SSZipArchive/Pods/Headers/Public/SSZipArchive/ZipArchive.h: -------------------------------------------------------------------------------- 1 | ../../../SSZipArchive/SSZipArchive/ZipArchive.h -------------------------------------------------------------------------------- /SSZipArchive/Pods/Manifest.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmyWong/PersonalUITech/HEAD/SSZipArchive/Pods/Manifest.lock -------------------------------------------------------------------------------- /SSZipArchive/Pods/Pods.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmyWong/PersonalUITech/HEAD/SSZipArchive/Pods/Pods.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /SSZipArchive/Pods/SSZipArchive/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmyWong/PersonalUITech/HEAD/SSZipArchive/Pods/SSZipArchive/LICENSE.txt -------------------------------------------------------------------------------- /SSZipArchive/Pods/SSZipArchive/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmyWong/PersonalUITech/HEAD/SSZipArchive/Pods/SSZipArchive/README.md -------------------------------------------------------------------------------- /SSZipArchive/Pods/SSZipArchive/SSZipArchive/aes/aes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmyWong/PersonalUITech/HEAD/SSZipArchive/Pods/SSZipArchive/SSZipArchive/aes/aes.h -------------------------------------------------------------------------------- /SSZipArchive/Pods/SSZipArchive/SSZipArchive/aes/hmac.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmyWong/PersonalUITech/HEAD/SSZipArchive/Pods/SSZipArchive/SSZipArchive/aes/hmac.c -------------------------------------------------------------------------------- /SSZipArchive/Pods/SSZipArchive/SSZipArchive/aes/hmac.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmyWong/PersonalUITech/HEAD/SSZipArchive/Pods/SSZipArchive/SSZipArchive/aes/hmac.h -------------------------------------------------------------------------------- /SSZipArchive/Pods/SSZipArchive/SSZipArchive/aes/prng.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmyWong/PersonalUITech/HEAD/SSZipArchive/Pods/SSZipArchive/SSZipArchive/aes/prng.c -------------------------------------------------------------------------------- /SSZipArchive/Pods/SSZipArchive/SSZipArchive/aes/prng.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmyWong/PersonalUITech/HEAD/SSZipArchive/Pods/SSZipArchive/SSZipArchive/aes/prng.h -------------------------------------------------------------------------------- /SSZipArchive/Pods/SSZipArchive/SSZipArchive/aes/sha1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmyWong/PersonalUITech/HEAD/SSZipArchive/Pods/SSZipArchive/SSZipArchive/aes/sha1.c -------------------------------------------------------------------------------- /SSZipArchive/Pods/SSZipArchive/SSZipArchive/aes/sha1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmyWong/PersonalUITech/HEAD/SSZipArchive/Pods/SSZipArchive/SSZipArchive/aes/sha1.h -------------------------------------------------------------------------------- /SSZipArchive/SSZipArchive.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmyWong/PersonalUITech/HEAD/SSZipArchive/SSZipArchive.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /SSZipArchive/SSZipArchive/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmyWong/PersonalUITech/HEAD/SSZipArchive/SSZipArchive/AppDelegate.h -------------------------------------------------------------------------------- /SSZipArchive/SSZipArchive/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmyWong/PersonalUITech/HEAD/SSZipArchive/SSZipArchive/AppDelegate.m -------------------------------------------------------------------------------- /SSZipArchive/SSZipArchive/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmyWong/PersonalUITech/HEAD/SSZipArchive/SSZipArchive/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /SSZipArchive/SSZipArchive/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmyWong/PersonalUITech/HEAD/SSZipArchive/SSZipArchive/Info.plist -------------------------------------------------------------------------------- /SSZipArchive/SSZipArchive/ViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmyWong/PersonalUITech/HEAD/SSZipArchive/SSZipArchive/ViewController.h -------------------------------------------------------------------------------- /SSZipArchive/SSZipArchive/ViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmyWong/PersonalUITech/HEAD/SSZipArchive/SSZipArchive/ViewController.m -------------------------------------------------------------------------------- /SSZipArchive/SSZipArchive/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmyWong/PersonalUITech/HEAD/SSZipArchive/SSZipArchive/main.m -------------------------------------------------------------------------------- /SendTest/SendTest.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmyWong/PersonalUITech/HEAD/SendTest/SendTest.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /SendTest/SendTest/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmyWong/PersonalUITech/HEAD/SendTest/SendTest/AppDelegate.h -------------------------------------------------------------------------------- /SendTest/SendTest/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmyWong/PersonalUITech/HEAD/SendTest/SendTest/AppDelegate.m -------------------------------------------------------------------------------- /SendTest/SendTest/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmyWong/PersonalUITech/HEAD/SendTest/SendTest/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /SendTest/SendTest/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmyWong/PersonalUITech/HEAD/SendTest/SendTest/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /SendTest/SendTest/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmyWong/PersonalUITech/HEAD/SendTest/SendTest/Info.plist -------------------------------------------------------------------------------- /SendTest/SendTest/ViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmyWong/PersonalUITech/HEAD/SendTest/SendTest/ViewController.h -------------------------------------------------------------------------------- /SendTest/SendTest/ViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmyWong/PersonalUITech/HEAD/SendTest/SendTest/ViewController.m -------------------------------------------------------------------------------- /SendTest/SendTest/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmyWong/PersonalUITech/HEAD/SendTest/SendTest/main.m -------------------------------------------------------------------------------- /ShowLivePhotoDemo/ShowLivePhotoDemo/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmyWong/PersonalUITech/HEAD/ShowLivePhotoDemo/ShowLivePhotoDemo/AppDelegate.h -------------------------------------------------------------------------------- /ShowLivePhotoDemo/ShowLivePhotoDemo/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmyWong/PersonalUITech/HEAD/ShowLivePhotoDemo/ShowLivePhotoDemo/AppDelegate.m -------------------------------------------------------------------------------- /ShowLivePhotoDemo/ShowLivePhotoDemo/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmyWong/PersonalUITech/HEAD/ShowLivePhotoDemo/ShowLivePhotoDemo/Info.plist -------------------------------------------------------------------------------- /ShowLivePhotoDemo/ShowLivePhotoDemo/ViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmyWong/PersonalUITech/HEAD/ShowLivePhotoDemo/ShowLivePhotoDemo/ViewController.h -------------------------------------------------------------------------------- /ShowLivePhotoDemo/ShowLivePhotoDemo/ViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmyWong/PersonalUITech/HEAD/ShowLivePhotoDemo/ShowLivePhotoDemo/ViewController.m -------------------------------------------------------------------------------- /ShowLivePhotoDemo/ShowLivePhotoDemo/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmyWong/PersonalUITech/HEAD/ShowLivePhotoDemo/ShowLivePhotoDemo/main.m -------------------------------------------------------------------------------- /SpringAnimation/SpringAnimation/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmyWong/PersonalUITech/HEAD/SpringAnimation/SpringAnimation/AppDelegate.h -------------------------------------------------------------------------------- /SpringAnimation/SpringAnimation/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmyWong/PersonalUITech/HEAD/SpringAnimation/SpringAnimation/AppDelegate.m -------------------------------------------------------------------------------- /SpringAnimation/SpringAnimation/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmyWong/PersonalUITech/HEAD/SpringAnimation/SpringAnimation/Info.plist -------------------------------------------------------------------------------- /SpringAnimation/SpringAnimation/ViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmyWong/PersonalUITech/HEAD/SpringAnimation/SpringAnimation/ViewController.h -------------------------------------------------------------------------------- /SpringAnimation/SpringAnimation/ViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmyWong/PersonalUITech/HEAD/SpringAnimation/SpringAnimation/ViewController.m -------------------------------------------------------------------------------- /SpringAnimation/SpringAnimation/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmyWong/PersonalUITech/HEAD/SpringAnimation/SpringAnimation/main.m -------------------------------------------------------------------------------- /SpringAnimation/SpringAnimation/wangyanhua.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmyWong/PersonalUITech/HEAD/SpringAnimation/SpringAnimation/wangyanhua.png -------------------------------------------------------------------------------- /SwapCamera/SwapCamera.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmyWong/PersonalUITech/HEAD/SwapCamera/SwapCamera.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /SwapCamera/SwapCamera/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmyWong/PersonalUITech/HEAD/SwapCamera/SwapCamera/AppDelegate.h -------------------------------------------------------------------------------- /SwapCamera/SwapCamera/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmyWong/PersonalUITech/HEAD/SwapCamera/SwapCamera/AppDelegate.m -------------------------------------------------------------------------------- /SwapCamera/SwapCamera/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmyWong/PersonalUITech/HEAD/SwapCamera/SwapCamera/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /SwapCamera/SwapCamera/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmyWong/PersonalUITech/HEAD/SwapCamera/SwapCamera/Info.plist -------------------------------------------------------------------------------- /SwapCamera/SwapCamera/ViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmyWong/PersonalUITech/HEAD/SwapCamera/SwapCamera/ViewController.h -------------------------------------------------------------------------------- /SwapCamera/SwapCamera/ViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmyWong/PersonalUITech/HEAD/SwapCamera/SwapCamera/ViewController.m -------------------------------------------------------------------------------- /SwapCamera/SwapCamera/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmyWong/PersonalUITech/HEAD/SwapCamera/SwapCamera/main.m -------------------------------------------------------------------------------- /TouchIDDemo/TouchIDDemo.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmyWong/PersonalUITech/HEAD/TouchIDDemo/TouchIDDemo.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /TouchIDDemo/TouchIDDemo/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmyWong/PersonalUITech/HEAD/TouchIDDemo/TouchIDDemo/AppDelegate.h -------------------------------------------------------------------------------- /TouchIDDemo/TouchIDDemo/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmyWong/PersonalUITech/HEAD/TouchIDDemo/TouchIDDemo/AppDelegate.m -------------------------------------------------------------------------------- /TouchIDDemo/TouchIDDemo/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmyWong/PersonalUITech/HEAD/TouchIDDemo/TouchIDDemo/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /TouchIDDemo/TouchIDDemo/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmyWong/PersonalUITech/HEAD/TouchIDDemo/TouchIDDemo/Info.plist -------------------------------------------------------------------------------- /TouchIDDemo/TouchIDDemo/ViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmyWong/PersonalUITech/HEAD/TouchIDDemo/TouchIDDemo/ViewController.h -------------------------------------------------------------------------------- /TouchIDDemo/TouchIDDemo/ViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmyWong/PersonalUITech/HEAD/TouchIDDemo/TouchIDDemo/ViewController.m -------------------------------------------------------------------------------- /TouchIDDemo/TouchIDDemo/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmyWong/PersonalUITech/HEAD/TouchIDDemo/TouchIDDemo/main.m -------------------------------------------------------------------------------- /UIAlertController/UIAlertController/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmyWong/PersonalUITech/HEAD/UIAlertController/UIAlertController/AppDelegate.h -------------------------------------------------------------------------------- /UIAlertController/UIAlertController/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmyWong/PersonalUITech/HEAD/UIAlertController/UIAlertController/AppDelegate.m -------------------------------------------------------------------------------- /UIAlertController/UIAlertController/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmyWong/PersonalUITech/HEAD/UIAlertController/UIAlertController/Info.plist -------------------------------------------------------------------------------- /UIAlertController/UIAlertController/ViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmyWong/PersonalUITech/HEAD/UIAlertController/UIAlertController/ViewController.h -------------------------------------------------------------------------------- /UIAlertController/UIAlertController/ViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmyWong/PersonalUITech/HEAD/UIAlertController/UIAlertController/ViewController.m -------------------------------------------------------------------------------- /UIAlertController/UIAlertController/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmyWong/PersonalUITech/HEAD/UIAlertController/UIAlertController/main.m -------------------------------------------------------------------------------- /UIAlertControllerAlert/UIAlertControllerAlert/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmyWong/PersonalUITech/HEAD/UIAlertControllerAlert/UIAlertControllerAlert/main.m -------------------------------------------------------------------------------- /UIBackBarButton/UIBackBarButton/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmyWong/PersonalUITech/HEAD/UIBackBarButton/UIBackBarButton/AppDelegate.h -------------------------------------------------------------------------------- /UIBackBarButton/UIBackBarButton/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmyWong/PersonalUITech/HEAD/UIBackBarButton/UIBackBarButton/AppDelegate.m -------------------------------------------------------------------------------- /UIBackBarButton/UIBackBarButton/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmyWong/PersonalUITech/HEAD/UIBackBarButton/UIBackBarButton/Info.plist -------------------------------------------------------------------------------- /UIBackBarButton/UIBackBarButton/SecondViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmyWong/PersonalUITech/HEAD/UIBackBarButton/UIBackBarButton/SecondViewController.h -------------------------------------------------------------------------------- /UIBackBarButton/UIBackBarButton/SecondViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmyWong/PersonalUITech/HEAD/UIBackBarButton/UIBackBarButton/SecondViewController.m -------------------------------------------------------------------------------- /UIBackBarButton/UIBackBarButton/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmyWong/PersonalUITech/HEAD/UIBackBarButton/UIBackBarButton/main.m -------------------------------------------------------------------------------- /UIBackBarButton/ViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmyWong/PersonalUITech/HEAD/UIBackBarButton/ViewController.h -------------------------------------------------------------------------------- /UIBackBarButton/ViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmyWong/PersonalUITech/HEAD/UIBackBarButton/ViewController.m -------------------------------------------------------------------------------- /UIColor16/UIColor+NotRGB.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmyWong/PersonalUITech/HEAD/UIColor16/UIColor+NotRGB.h -------------------------------------------------------------------------------- /UIColor16/UIColor+NotRGB.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmyWong/PersonalUITech/HEAD/UIColor16/UIColor+NotRGB.m -------------------------------------------------------------------------------- /UIColor16/UIColor16.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmyWong/PersonalUITech/HEAD/UIColor16/UIColor16.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /UIColor16/UIColor16/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmyWong/PersonalUITech/HEAD/UIColor16/UIColor16/AppDelegate.h -------------------------------------------------------------------------------- /UIColor16/UIColor16/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmyWong/PersonalUITech/HEAD/UIColor16/UIColor16/AppDelegate.m -------------------------------------------------------------------------------- /UIColor16/UIColor16/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmyWong/PersonalUITech/HEAD/UIColor16/UIColor16/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /UIColor16/UIColor16/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmyWong/PersonalUITech/HEAD/UIColor16/UIColor16/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /UIColor16/UIColor16/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmyWong/PersonalUITech/HEAD/UIColor16/UIColor16/Info.plist -------------------------------------------------------------------------------- /UIColor16/UIColor16/ViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmyWong/PersonalUITech/HEAD/UIColor16/UIColor16/ViewController.h -------------------------------------------------------------------------------- /UIColor16/UIColor16/ViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmyWong/PersonalUITech/HEAD/UIColor16/UIColor16/ViewController.m -------------------------------------------------------------------------------- /UIColor16/UIColor16/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmyWong/PersonalUITech/HEAD/UIColor16/UIColor16/main.m -------------------------------------------------------------------------------- /UUIDAndKeyChain/UUIDAndKeyChain/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmyWong/PersonalUITech/HEAD/UUIDAndKeyChain/UUIDAndKeyChain/AppDelegate.h -------------------------------------------------------------------------------- /UUIDAndKeyChain/UUIDAndKeyChain/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmyWong/PersonalUITech/HEAD/UUIDAndKeyChain/UUIDAndKeyChain/AppDelegate.m -------------------------------------------------------------------------------- /UUIDAndKeyChain/UUIDAndKeyChain/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmyWong/PersonalUITech/HEAD/UUIDAndKeyChain/UUIDAndKeyChain/Info.plist -------------------------------------------------------------------------------- /UUIDAndKeyChain/UUIDAndKeyChain/SSKeychain.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmyWong/PersonalUITech/HEAD/UUIDAndKeyChain/UUIDAndKeyChain/SSKeychain.h -------------------------------------------------------------------------------- /UUIDAndKeyChain/UUIDAndKeyChain/SSKeychain.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmyWong/PersonalUITech/HEAD/UUIDAndKeyChain/UUIDAndKeyChain/SSKeychain.m -------------------------------------------------------------------------------- /UUIDAndKeyChain/UUIDAndKeyChain/ViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmyWong/PersonalUITech/HEAD/UUIDAndKeyChain/UUIDAndKeyChain/ViewController.h -------------------------------------------------------------------------------- /UUIDAndKeyChain/UUIDAndKeyChain/ViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmyWong/PersonalUITech/HEAD/UUIDAndKeyChain/UUIDAndKeyChain/ViewController.m -------------------------------------------------------------------------------- /UUIDAndKeyChain/UUIDAndKeyChain/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmyWong/PersonalUITech/HEAD/UUIDAndKeyChain/UUIDAndKeyChain/main.m -------------------------------------------------------------------------------- /VCTransitionDemo/VCTransitionDemo/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmyWong/PersonalUITech/HEAD/VCTransitionDemo/VCTransitionDemo/AppDelegate.h -------------------------------------------------------------------------------- /VCTransitionDemo/VCTransitionDemo/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmyWong/PersonalUITech/HEAD/VCTransitionDemo/VCTransitionDemo/AppDelegate.m -------------------------------------------------------------------------------- /VCTransitionDemo/VCTransitionDemo/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmyWong/PersonalUITech/HEAD/VCTransitionDemo/VCTransitionDemo/Info.plist -------------------------------------------------------------------------------- /VCTransitionDemo/VCTransitionDemo/MainViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmyWong/PersonalUITech/HEAD/VCTransitionDemo/VCTransitionDemo/MainViewController.h -------------------------------------------------------------------------------- /VCTransitionDemo/VCTransitionDemo/MainViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmyWong/PersonalUITech/HEAD/VCTransitionDemo/VCTransitionDemo/MainViewController.m -------------------------------------------------------------------------------- /VCTransitionDemo/VCTransitionDemo/ModalViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmyWong/PersonalUITech/HEAD/VCTransitionDemo/VCTransitionDemo/ModalViewController.h -------------------------------------------------------------------------------- /VCTransitionDemo/VCTransitionDemo/ModalViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmyWong/PersonalUITech/HEAD/VCTransitionDemo/VCTransitionDemo/ModalViewController.m -------------------------------------------------------------------------------- /VCTransitionDemo/VCTransitionDemo/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmyWong/PersonalUITech/HEAD/VCTransitionDemo/VCTransitionDemo/main.m -------------------------------------------------------------------------------- /VideoAddEngine/WatermarkEngine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmyWong/PersonalUITech/HEAD/VideoAddEngine/WatermarkEngine.h -------------------------------------------------------------------------------- /VideoAddEngine/WatermarkEngine.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmyWong/PersonalUITech/HEAD/VideoAddEngine/WatermarkEngine.m -------------------------------------------------------------------------------- /WebpDemo/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmyWong/PersonalUITech/HEAD/WebpDemo/.DS_Store -------------------------------------------------------------------------------- /WebpDemo/WebpDemo.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmyWong/PersonalUITech/HEAD/WebpDemo/WebpDemo.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /WebpDemo/WebpDemo/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmyWong/PersonalUITech/HEAD/WebpDemo/WebpDemo/AppDelegate.h -------------------------------------------------------------------------------- /WebpDemo/WebpDemo/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmyWong/PersonalUITech/HEAD/WebpDemo/WebpDemo/AppDelegate.m -------------------------------------------------------------------------------- /WebpDemo/WebpDemo/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmyWong/PersonalUITech/HEAD/WebpDemo/WebpDemo/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /WebpDemo/WebpDemo/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmyWong/PersonalUITech/HEAD/WebpDemo/WebpDemo/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /WebpDemo/WebpDemo/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmyWong/PersonalUITech/HEAD/WebpDemo/WebpDemo/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /WebpDemo/WebpDemo/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmyWong/PersonalUITech/HEAD/WebpDemo/WebpDemo/Info.plist -------------------------------------------------------------------------------- /WebpDemo/WebpDemo/ViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmyWong/PersonalUITech/HEAD/WebpDemo/WebpDemo/ViewController.h -------------------------------------------------------------------------------- /WebpDemo/WebpDemo/ViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmyWong/PersonalUITech/HEAD/WebpDemo/WebpDemo/ViewController.m -------------------------------------------------------------------------------- /WebpDemo/WebpDemo/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmyWong/PersonalUITech/HEAD/WebpDemo/WebpDemo/main.m -------------------------------------------------------------------------------- /WebpDemo/WebpDemoTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmyWong/PersonalUITech/HEAD/WebpDemo/WebpDemoTests/Info.plist -------------------------------------------------------------------------------- /WebpDemo/WebpDemoTests/WebpDemoTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmyWong/PersonalUITech/HEAD/WebpDemo/WebpDemoTests/WebpDemoTests.m -------------------------------------------------------------------------------- /WebpDemo/WebpDemoUITests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmyWong/PersonalUITech/HEAD/WebpDemo/WebpDemoUITests/Info.plist -------------------------------------------------------------------------------- /WebpDemo/WebpDemoUITests/WebpDemoUITests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmyWong/PersonalUITech/HEAD/WebpDemo/WebpDemoUITests/WebpDemoUITests.m -------------------------------------------------------------------------------- /YHCustomMenu/YHCustomMenu.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmyWong/PersonalUITech/HEAD/YHCustomMenu/YHCustomMenu.gif -------------------------------------------------------------------------------- /YHCustomMenu/YHCustomMenu.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmyWong/PersonalUITech/HEAD/YHCustomMenu/YHCustomMenu.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /YHCustomMenu/YHCustomMenu/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmyWong/PersonalUITech/HEAD/YHCustomMenu/YHCustomMenu/AppDelegate.h -------------------------------------------------------------------------------- /YHCustomMenu/YHCustomMenu/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmyWong/PersonalUITech/HEAD/YHCustomMenu/YHCustomMenu/AppDelegate.m -------------------------------------------------------------------------------- /YHCustomMenu/YHCustomMenu/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmyWong/PersonalUITech/HEAD/YHCustomMenu/YHCustomMenu/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /YHCustomMenu/YHCustomMenu/DYW.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmyWong/PersonalUITech/HEAD/YHCustomMenu/YHCustomMenu/DYW.png -------------------------------------------------------------------------------- /YHCustomMenu/YHCustomMenu/GXW.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmyWong/PersonalUITech/HEAD/YHCustomMenu/YHCustomMenu/GXW.png -------------------------------------------------------------------------------- /YHCustomMenu/YHCustomMenu/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmyWong/PersonalUITech/HEAD/YHCustomMenu/YHCustomMenu/Info.plist -------------------------------------------------------------------------------- /YHCustomMenu/YHCustomMenu/JGW.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmyWong/PersonalUITech/HEAD/YHCustomMenu/YHCustomMenu/JGW.png -------------------------------------------------------------------------------- /YHCustomMenu/YHCustomMenu/MMW.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmyWong/PersonalUITech/HEAD/YHCustomMenu/YHCustomMenu/MMW.png -------------------------------------------------------------------------------- /YHCustomMenu/YHCustomMenu/SJW.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmyWong/PersonalUITech/HEAD/YHCustomMenu/YHCustomMenu/SJW.png -------------------------------------------------------------------------------- /YHCustomMenu/YHCustomMenu/SSW.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmyWong/PersonalUITech/HEAD/YHCustomMenu/YHCustomMenu/SSW.png -------------------------------------------------------------------------------- /YHCustomMenu/YHCustomMenu/ViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmyWong/PersonalUITech/HEAD/YHCustomMenu/YHCustomMenu/ViewController.h -------------------------------------------------------------------------------- /YHCustomMenu/YHCustomMenu/ViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmyWong/PersonalUITech/HEAD/YHCustomMenu/YHCustomMenu/ViewController.m -------------------------------------------------------------------------------- /YHCustomMenu/YHCustomMenu/WZW.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmyWong/PersonalUITech/HEAD/YHCustomMenu/YHCustomMenu/WZW.png -------------------------------------------------------------------------------- /YHCustomMenu/YHCustomMenu/YHCustomMenu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmyWong/PersonalUITech/HEAD/YHCustomMenu/YHCustomMenu/YHCustomMenu.h -------------------------------------------------------------------------------- /YHCustomMenu/YHCustomMenu/YHCustomMenu.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmyWong/PersonalUITech/HEAD/YHCustomMenu/YHCustomMenu/YHCustomMenu.m -------------------------------------------------------------------------------- /YHCustomMenu/YHCustomMenu/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmyWong/PersonalUITech/HEAD/YHCustomMenu/YHCustomMenu/main.m -------------------------------------------------------------------------------- /YHCustomMenu/YHCustomMenuTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmyWong/PersonalUITech/HEAD/YHCustomMenu/YHCustomMenuTests/Info.plist -------------------------------------------------------------------------------- /YHCustomMenu/YHCustomMenuTests/YHCustomMenuTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmyWong/PersonalUITech/HEAD/YHCustomMenu/YHCustomMenuTests/YHCustomMenuTests.m -------------------------------------------------------------------------------- /YHCustomMenu/YHCustomMenuUITests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmyWong/PersonalUITech/HEAD/YHCustomMenu/YHCustomMenuUITests/Info.plist -------------------------------------------------------------------------------- /YHCustomMenu/YHCustomMenuUITests/YHCustomMenuUITests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmyWong/PersonalUITech/HEAD/YHCustomMenu/YHCustomMenuUITests/YHCustomMenuUITests.m -------------------------------------------------------------------------------- /YHCustomMenu/YHCustomMenuView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmyWong/PersonalUITech/HEAD/YHCustomMenu/YHCustomMenuView.h -------------------------------------------------------------------------------- /YHCustomMenu/YHCustomMenuView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmyWong/PersonalUITech/HEAD/YHCustomMenu/YHCustomMenuView.m -------------------------------------------------------------------------------- /YHSegmentController/YHSegmentController/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmyWong/PersonalUITech/HEAD/YHSegmentController/YHSegmentController/AppDelegate.h -------------------------------------------------------------------------------- /YHSegmentController/YHSegmentController/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmyWong/PersonalUITech/HEAD/YHSegmentController/YHSegmentController/AppDelegate.m -------------------------------------------------------------------------------- /YHSegmentController/YHSegmentController/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmyWong/PersonalUITech/HEAD/YHSegmentController/YHSegmentController/Info.plist -------------------------------------------------------------------------------- /YHSegmentController/YHSegmentController/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmyWong/PersonalUITech/HEAD/YHSegmentController/YHSegmentController/main.m -------------------------------------------------------------------------------- /YingSheImageView/YingSheImageView/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmyWong/PersonalUITech/HEAD/YingSheImageView/YingSheImageView/AppDelegate.h -------------------------------------------------------------------------------- /YingSheImageView/YingSheImageView/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmyWong/PersonalUITech/HEAD/YingSheImageView/YingSheImageView/AppDelegate.m -------------------------------------------------------------------------------- /YingSheImageView/YingSheImageView/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmyWong/PersonalUITech/HEAD/YingSheImageView/YingSheImageView/Info.plist -------------------------------------------------------------------------------- /YingSheImageView/YingSheImageView/ViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmyWong/PersonalUITech/HEAD/YingSheImageView/YingSheImageView/ViewController.h -------------------------------------------------------------------------------- /YingSheImageView/YingSheImageView/ViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmyWong/PersonalUITech/HEAD/YingSheImageView/YingSheImageView/ViewController.m -------------------------------------------------------------------------------- /YingSheImageView/YingSheImageView/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmyWong/PersonalUITech/HEAD/YingSheImageView/YingSheImageView/main.m -------------------------------------------------------------------------------- /YingSheImageView/YingSheImageView/nvtou.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmyWong/PersonalUITech/HEAD/YingSheImageView/YingSheImageView/nvtou.jpg -------------------------------------------------------------------------------- /admob-new/AdMobExample.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmyWong/PersonalUITech/HEAD/admob-new/AdMobExample.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /admob-new/AdMobExample/.clang-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmyWong/PersonalUITech/HEAD/admob-new/AdMobExample/.clang-format -------------------------------------------------------------------------------- /admob-new/AdMobExample/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmyWong/PersonalUITech/HEAD/admob-new/AdMobExample/AppDelegate.h -------------------------------------------------------------------------------- /admob-new/AdMobExample/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmyWong/PersonalUITech/HEAD/admob-new/AdMobExample/AppDelegate.m -------------------------------------------------------------------------------- /admob-new/AdMobExample/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmyWong/PersonalUITech/HEAD/admob-new/AdMobExample/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /admob-new/AdMobExample/GoogleService-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmyWong/PersonalUITech/HEAD/admob-new/AdMobExample/GoogleService-Info.plist -------------------------------------------------------------------------------- /admob-new/AdMobExample/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmyWong/PersonalUITech/HEAD/admob-new/AdMobExample/Info.plist -------------------------------------------------------------------------------- /admob-new/AdMobExample/ViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmyWong/PersonalUITech/HEAD/admob-new/AdMobExample/ViewController.h -------------------------------------------------------------------------------- /admob-new/AdMobExample/ViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmyWong/PersonalUITech/HEAD/admob-new/AdMobExample/ViewController.m -------------------------------------------------------------------------------- /admob-new/AdMobExample/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmyWong/PersonalUITech/HEAD/admob-new/AdMobExample/main.m -------------------------------------------------------------------------------- /admob-new/AdMobExampleSwift/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmyWong/PersonalUITech/HEAD/admob-new/AdMobExampleSwift/AppDelegate.swift -------------------------------------------------------------------------------- /admob-new/AdMobExampleSwift/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmyWong/PersonalUITech/HEAD/admob-new/AdMobExampleSwift/Info.plist -------------------------------------------------------------------------------- /admob-new/AdMobExampleSwift/ViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmyWong/PersonalUITech/HEAD/admob-new/AdMobExampleSwift/ViewController.swift -------------------------------------------------------------------------------- /admob-new/AdMobExampleSwiftTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmyWong/PersonalUITech/HEAD/admob-new/AdMobExampleSwiftTests/Info.plist -------------------------------------------------------------------------------- /admob-new/AdMobExampleTests/AdMobExampleTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmyWong/PersonalUITech/HEAD/admob-new/AdMobExampleTests/AdMobExampleTests.m -------------------------------------------------------------------------------- /admob-new/AdMobExampleTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmyWong/PersonalUITech/HEAD/admob-new/AdMobExampleTests/Info.plist -------------------------------------------------------------------------------- /admob-new/AdMobExampleTests/ViewController_Private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmyWong/PersonalUITech/HEAD/admob-new/AdMobExampleTests/ViewController_Private.h -------------------------------------------------------------------------------- /admob-new/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmyWong/PersonalUITech/HEAD/admob-new/Podfile -------------------------------------------------------------------------------- /admob-new/Podfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmyWong/PersonalUITech/HEAD/admob-new/Podfile.lock -------------------------------------------------------------------------------- /admob-new/Pods/Firebase/Core/Sources/Firebase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmyWong/PersonalUITech/HEAD/admob-new/Pods/Firebase/Core/Sources/Firebase.h -------------------------------------------------------------------------------- /admob-new/Pods/Firebase/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmyWong/PersonalUITech/HEAD/admob-new/Pods/Firebase/README.md -------------------------------------------------------------------------------- /admob-new/Pods/FirebaseAnalytics/Frameworks/frameworks/FirebaseAnalytics.framework/Headers/FIRApp.h: -------------------------------------------------------------------------------- 1 | #import 2 | -------------------------------------------------------------------------------- /admob-new/Pods/FirebaseAnalytics/Frameworks/frameworks/FirebaseAnalytics.framework/Headers/FIRConfiguration.h: -------------------------------------------------------------------------------- 1 | #import 2 | -------------------------------------------------------------------------------- /admob-new/Pods/FirebaseAnalytics/Frameworks/frameworks/FirebaseAnalytics.framework/Headers/FIROptions.h: -------------------------------------------------------------------------------- 1 | #import 2 | -------------------------------------------------------------------------------- /admob-new/Pods/FirebaseInstanceID/Frameworks/frameworks/FirebaseInstanceID.framework/Headers/FirebaseInstanceID.h: -------------------------------------------------------------------------------- 1 | #import "FIRInstanceID.h" 2 | -------------------------------------------------------------------------------- /admob-new/Pods/Google-Mobile-Ads-SDK/Frameworks/GoogleMobileAds.framework/GoogleMobileAds: -------------------------------------------------------------------------------- 1 | Versions/Current/GoogleMobileAds -------------------------------------------------------------------------------- /admob-new/Pods/Google-Mobile-Ads-SDK/Frameworks/GoogleMobileAds.framework/Headers: -------------------------------------------------------------------------------- 1 | Versions/Current/Headers -------------------------------------------------------------------------------- /admob-new/Pods/Google-Mobile-Ads-SDK/Frameworks/GoogleMobileAds.framework/Versions/Current: -------------------------------------------------------------------------------- 1 | A -------------------------------------------------------------------------------- /admob-new/Pods/Google-Mobile-Ads-SDK/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmyWong/PersonalUITech/HEAD/admob-new/Pods/Google-Mobile-Ads-SDK/README.txt -------------------------------------------------------------------------------- /admob-new/Pods/GoogleToolboxForMac/GTMDefines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmyWong/PersonalUITech/HEAD/admob-new/Pods/GoogleToolboxForMac/GTMDefines.h -------------------------------------------------------------------------------- /admob-new/Pods/GoogleToolboxForMac/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmyWong/PersonalUITech/HEAD/admob-new/Pods/GoogleToolboxForMac/LICENSE -------------------------------------------------------------------------------- /admob-new/Pods/GoogleToolboxForMac/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmyWong/PersonalUITech/HEAD/admob-new/Pods/GoogleToolboxForMac/README.md -------------------------------------------------------------------------------- /admob-new/Pods/Headers/Private/Firebase/Firebase.h: -------------------------------------------------------------------------------- 1 | ../../../Firebase/Core/Sources/Firebase.h -------------------------------------------------------------------------------- /admob-new/Pods/Headers/Private/FirebaseInstanceID/FIRInstanceID.h: -------------------------------------------------------------------------------- 1 | ../../../FirebaseInstanceID/Sources/FIRInstanceID.h -------------------------------------------------------------------------------- /admob-new/Pods/Headers/Public/Firebase/Firebase.h: -------------------------------------------------------------------------------- 1 | ../../../Firebase/Core/Sources/Firebase.h -------------------------------------------------------------------------------- /admob-new/Pods/Headers/Public/FirebaseInstanceID/FIRInstanceID.h: -------------------------------------------------------------------------------- 1 | ../../../FirebaseInstanceID/Sources/FIRInstanceID.h -------------------------------------------------------------------------------- /admob-new/Pods/Manifest.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmyWong/PersonalUITech/HEAD/admob-new/Pods/Manifest.lock -------------------------------------------------------------------------------- /admob-new/Pods/Pods.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmyWong/PersonalUITech/HEAD/admob-new/Pods/Pods.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /admob-new/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmyWong/PersonalUITech/HEAD/admob-new/README.md -------------------------------------------------------------------------------- /admob-new/Screenshot/admob-sample.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmyWong/PersonalUITech/HEAD/admob-new/Screenshot/admob-sample.png -------------------------------------------------------------------------------- /dottedLineDemo/dottedLineDemo/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmyWong/PersonalUITech/HEAD/dottedLineDemo/dottedLineDemo/AppDelegate.h -------------------------------------------------------------------------------- /dottedLineDemo/dottedLineDemo/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmyWong/PersonalUITech/HEAD/dottedLineDemo/dottedLineDemo/AppDelegate.m -------------------------------------------------------------------------------- /dottedLineDemo/dottedLineDemo/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmyWong/PersonalUITech/HEAD/dottedLineDemo/dottedLineDemo/Info.plist -------------------------------------------------------------------------------- /dottedLineDemo/dottedLineDemo/ViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmyWong/PersonalUITech/HEAD/dottedLineDemo/dottedLineDemo/ViewController.h -------------------------------------------------------------------------------- /dottedLineDemo/dottedLineDemo/ViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmyWong/PersonalUITech/HEAD/dottedLineDemo/dottedLineDemo/ViewController.m -------------------------------------------------------------------------------- /dottedLineDemo/dottedLineDemo/dottedLineView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmyWong/PersonalUITech/HEAD/dottedLineDemo/dottedLineDemo/dottedLineView.h -------------------------------------------------------------------------------- /dottedLineDemo/dottedLineDemo/dottedLineView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmyWong/PersonalUITech/HEAD/dottedLineDemo/dottedLineDemo/dottedLineView.m -------------------------------------------------------------------------------- /dottedLineDemo/dottedLineDemo/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmyWong/PersonalUITech/HEAD/dottedLineDemo/dottedLineDemo/main.m -------------------------------------------------------------------------------- /ellipseImageDemo/ellipseImageDemo/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmyWong/PersonalUITech/HEAD/ellipseImageDemo/ellipseImageDemo/AppDelegate.h -------------------------------------------------------------------------------- /ellipseImageDemo/ellipseImageDemo/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmyWong/PersonalUITech/HEAD/ellipseImageDemo/ellipseImageDemo/AppDelegate.m -------------------------------------------------------------------------------- /ellipseImageDemo/ellipseImageDemo/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmyWong/PersonalUITech/HEAD/ellipseImageDemo/ellipseImageDemo/Info.plist -------------------------------------------------------------------------------- /ellipseImageDemo/ellipseImageDemo/ViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmyWong/PersonalUITech/HEAD/ellipseImageDemo/ellipseImageDemo/ViewController.h -------------------------------------------------------------------------------- /ellipseImageDemo/ellipseImageDemo/ViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmyWong/PersonalUITech/HEAD/ellipseImageDemo/ellipseImageDemo/ViewController.m -------------------------------------------------------------------------------- /ellipseImageDemo/ellipseImageDemo/image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmyWong/PersonalUITech/HEAD/ellipseImageDemo/ellipseImageDemo/image.png -------------------------------------------------------------------------------- /ellipseImageDemo/ellipseImageDemo/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmyWong/PersonalUITech/HEAD/ellipseImageDemo/ellipseImageDemo/main.m -------------------------------------------------------------------------------- /emojiDemo/emojiDemo.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmyWong/PersonalUITech/HEAD/emojiDemo/emojiDemo.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /emojiDemo/emojiDemo/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmyWong/PersonalUITech/HEAD/emojiDemo/emojiDemo/AppDelegate.h -------------------------------------------------------------------------------- /emojiDemo/emojiDemo/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmyWong/PersonalUITech/HEAD/emojiDemo/emojiDemo/AppDelegate.m -------------------------------------------------------------------------------- /emojiDemo/emojiDemo/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmyWong/PersonalUITech/HEAD/emojiDemo/emojiDemo/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /emojiDemo/emojiDemo/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmyWong/PersonalUITech/HEAD/emojiDemo/emojiDemo/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /emojiDemo/emojiDemo/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmyWong/PersonalUITech/HEAD/emojiDemo/emojiDemo/Info.plist -------------------------------------------------------------------------------- /emojiDemo/emojiDemo/NSString+emoji.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmyWong/PersonalUITech/HEAD/emojiDemo/emojiDemo/NSString+emoji.h -------------------------------------------------------------------------------- /emojiDemo/emojiDemo/NSString+emoji.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmyWong/PersonalUITech/HEAD/emojiDemo/emojiDemo/NSString+emoji.m -------------------------------------------------------------------------------- /emojiDemo/emojiDemo/ViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmyWong/PersonalUITech/HEAD/emojiDemo/emojiDemo/ViewController.h -------------------------------------------------------------------------------- /emojiDemo/emojiDemo/ViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmyWong/PersonalUITech/HEAD/emojiDemo/emojiDemo/ViewController.m -------------------------------------------------------------------------------- /emojiDemo/emojiDemo/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmyWong/PersonalUITech/HEAD/emojiDemo/emojiDemo/main.m -------------------------------------------------------------------------------- /inputTextDemo/inputTextDemo WatchKit App/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmyWong/PersonalUITech/HEAD/inputTextDemo/inputTextDemo WatchKit App/Info.plist -------------------------------------------------------------------------------- /inputTextDemo/inputTextDemo/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmyWong/PersonalUITech/HEAD/inputTextDemo/inputTextDemo/AppDelegate.h -------------------------------------------------------------------------------- /inputTextDemo/inputTextDemo/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmyWong/PersonalUITech/HEAD/inputTextDemo/inputTextDemo/AppDelegate.m -------------------------------------------------------------------------------- /inputTextDemo/inputTextDemo/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmyWong/PersonalUITech/HEAD/inputTextDemo/inputTextDemo/Info.plist -------------------------------------------------------------------------------- /inputTextDemo/inputTextDemo/ViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmyWong/PersonalUITech/HEAD/inputTextDemo/inputTextDemo/ViewController.h -------------------------------------------------------------------------------- /inputTextDemo/inputTextDemo/ViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmyWong/PersonalUITech/HEAD/inputTextDemo/inputTextDemo/ViewController.m -------------------------------------------------------------------------------- /inputTextDemo/inputTextDemo/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmyWong/PersonalUITech/HEAD/inputTextDemo/inputTextDemo/main.m -------------------------------------------------------------------------------- /libqrencodeDemo/libqrencodeDemo/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmyWong/PersonalUITech/HEAD/libqrencodeDemo/libqrencodeDemo/AppDelegate.h -------------------------------------------------------------------------------- /libqrencodeDemo/libqrencodeDemo/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmyWong/PersonalUITech/HEAD/libqrencodeDemo/libqrencodeDemo/AppDelegate.m -------------------------------------------------------------------------------- /libqrencodeDemo/libqrencodeDemo/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmyWong/PersonalUITech/HEAD/libqrencodeDemo/libqrencodeDemo/Info.plist -------------------------------------------------------------------------------- /libqrencodeDemo/libqrencodeDemo/QRCodeGenerator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmyWong/PersonalUITech/HEAD/libqrencodeDemo/libqrencodeDemo/QRCodeGenerator.h -------------------------------------------------------------------------------- /libqrencodeDemo/libqrencodeDemo/QRCodeGenerator.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmyWong/PersonalUITech/HEAD/libqrencodeDemo/libqrencodeDemo/QRCodeGenerator.m -------------------------------------------------------------------------------- /libqrencodeDemo/libqrencodeDemo/ViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmyWong/PersonalUITech/HEAD/libqrencodeDemo/libqrencodeDemo/ViewController.h -------------------------------------------------------------------------------- /libqrencodeDemo/libqrencodeDemo/ViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmyWong/PersonalUITech/HEAD/libqrencodeDemo/libqrencodeDemo/ViewController.m -------------------------------------------------------------------------------- /libqrencodeDemo/libqrencodeDemo/bitstream.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmyWong/PersonalUITech/HEAD/libqrencodeDemo/libqrencodeDemo/bitstream.c -------------------------------------------------------------------------------- /libqrencodeDemo/libqrencodeDemo/bitstream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmyWong/PersonalUITech/HEAD/libqrencodeDemo/libqrencodeDemo/bitstream.h -------------------------------------------------------------------------------- /libqrencodeDemo/libqrencodeDemo/default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmyWong/PersonalUITech/HEAD/libqrencodeDemo/libqrencodeDemo/default.png -------------------------------------------------------------------------------- /libqrencodeDemo/libqrencodeDemo/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmyWong/PersonalUITech/HEAD/libqrencodeDemo/libqrencodeDemo/icon.png -------------------------------------------------------------------------------- /libqrencodeDemo/libqrencodeDemo/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmyWong/PersonalUITech/HEAD/libqrencodeDemo/libqrencodeDemo/main.m -------------------------------------------------------------------------------- /libqrencodeDemo/libqrencodeDemo/mask.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmyWong/PersonalUITech/HEAD/libqrencodeDemo/libqrencodeDemo/mask.c -------------------------------------------------------------------------------- /libqrencodeDemo/libqrencodeDemo/mask.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmyWong/PersonalUITech/HEAD/libqrencodeDemo/libqrencodeDemo/mask.h -------------------------------------------------------------------------------- /libqrencodeDemo/libqrencodeDemo/null.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmyWong/PersonalUITech/HEAD/libqrencodeDemo/libqrencodeDemo/null.png -------------------------------------------------------------------------------- /libqrencodeDemo/libqrencodeDemo/qrencode.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmyWong/PersonalUITech/HEAD/libqrencodeDemo/libqrencodeDemo/qrencode.c -------------------------------------------------------------------------------- /libqrencodeDemo/libqrencodeDemo/qrencode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmyWong/PersonalUITech/HEAD/libqrencodeDemo/libqrencodeDemo/qrencode.h -------------------------------------------------------------------------------- /libqrencodeDemo/libqrencodeDemo/qrinput.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmyWong/PersonalUITech/HEAD/libqrencodeDemo/libqrencodeDemo/qrinput.c -------------------------------------------------------------------------------- /libqrencodeDemo/libqrencodeDemo/qrinput.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmyWong/PersonalUITech/HEAD/libqrencodeDemo/libqrencodeDemo/qrinput.h -------------------------------------------------------------------------------- /libqrencodeDemo/libqrencodeDemo/qrspec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmyWong/PersonalUITech/HEAD/libqrencodeDemo/libqrencodeDemo/qrspec.c -------------------------------------------------------------------------------- /libqrencodeDemo/libqrencodeDemo/qrspec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmyWong/PersonalUITech/HEAD/libqrencodeDemo/libqrencodeDemo/qrspec.h -------------------------------------------------------------------------------- /libqrencodeDemo/libqrencodeDemo/rscode.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmyWong/PersonalUITech/HEAD/libqrencodeDemo/libqrencodeDemo/rscode.c -------------------------------------------------------------------------------- /libqrencodeDemo/libqrencodeDemo/rscode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmyWong/PersonalUITech/HEAD/libqrencodeDemo/libqrencodeDemo/rscode.h -------------------------------------------------------------------------------- /libqrencodeDemo/libqrencodeDemo/split.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmyWong/PersonalUITech/HEAD/libqrencodeDemo/libqrencodeDemo/split.c -------------------------------------------------------------------------------- /libqrencodeDemo/libqrencodeDemo/split.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmyWong/PersonalUITech/HEAD/libqrencodeDemo/libqrencodeDemo/split.h -------------------------------------------------------------------------------- /oneDemo/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmyWong/PersonalUITech/HEAD/oneDemo/.DS_Store -------------------------------------------------------------------------------- /oneDemo/oneDemo.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmyWong/PersonalUITech/HEAD/oneDemo/oneDemo.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /oneDemo/oneDemo/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmyWong/PersonalUITech/HEAD/oneDemo/oneDemo/.DS_Store -------------------------------------------------------------------------------- /oneDemo/oneDemo/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmyWong/PersonalUITech/HEAD/oneDemo/oneDemo/AppDelegate.h -------------------------------------------------------------------------------- /oneDemo/oneDemo/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmyWong/PersonalUITech/HEAD/oneDemo/oneDemo/AppDelegate.m -------------------------------------------------------------------------------- /oneDemo/oneDemo/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmyWong/PersonalUITech/HEAD/oneDemo/oneDemo/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /oneDemo/oneDemo/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmyWong/PersonalUITech/HEAD/oneDemo/oneDemo/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /oneDemo/oneDemo/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmyWong/PersonalUITech/HEAD/oneDemo/oneDemo/Info.plist -------------------------------------------------------------------------------- /oneDemo/oneDemo/ViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmyWong/PersonalUITech/HEAD/oneDemo/oneDemo/ViewController.h -------------------------------------------------------------------------------- /oneDemo/oneDemo/ViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmyWong/PersonalUITech/HEAD/oneDemo/oneDemo/ViewController.m -------------------------------------------------------------------------------- /oneDemo/oneDemo/art.scnassets/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmyWong/PersonalUITech/HEAD/oneDemo/oneDemo/art.scnassets/.DS_Store -------------------------------------------------------------------------------- /oneDemo/oneDemo/art.scnassets/zhouyudaren.DAE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmyWong/PersonalUITech/HEAD/oneDemo/oneDemo/art.scnassets/zhouyudaren.DAE -------------------------------------------------------------------------------- /oneDemo/oneDemo/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmyWong/PersonalUITech/HEAD/oneDemo/oneDemo/main.m -------------------------------------------------------------------------------- /scrollImageView/scrollImageView/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmyWong/PersonalUITech/HEAD/scrollImageView/scrollImageView/AppDelegate.h -------------------------------------------------------------------------------- /scrollImageView/scrollImageView/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmyWong/PersonalUITech/HEAD/scrollImageView/scrollImageView/AppDelegate.m -------------------------------------------------------------------------------- /scrollImageView/scrollImageView/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmyWong/PersonalUITech/HEAD/scrollImageView/scrollImageView/Info.plist -------------------------------------------------------------------------------- /scrollImageView/scrollImageView/RootViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmyWong/PersonalUITech/HEAD/scrollImageView/scrollImageView/RootViewController.h -------------------------------------------------------------------------------- /scrollImageView/scrollImageView/RootViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmyWong/PersonalUITech/HEAD/scrollImageView/scrollImageView/RootViewController.m -------------------------------------------------------------------------------- /scrollImageView/scrollImageView/ViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmyWong/PersonalUITech/HEAD/scrollImageView/scrollImageView/ViewController.h -------------------------------------------------------------------------------- /scrollImageView/scrollImageView/ViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmyWong/PersonalUITech/HEAD/scrollImageView/scrollImageView/ViewController.m -------------------------------------------------------------------------------- /scrollImageView/scrollImageView/background.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmyWong/PersonalUITech/HEAD/scrollImageView/scrollImageView/background.jpg -------------------------------------------------------------------------------- /scrollImageView/scrollImageView/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmyWong/PersonalUITech/HEAD/scrollImageView/scrollImageView/main.m -------------------------------------------------------------------------------- /scrollImageView/scrollImageView/我的.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmyWong/PersonalUITech/HEAD/scrollImageView/scrollImageView/我的.png -------------------------------------------------------------------------------- /scrollImageView/scrollImageView/白.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmyWong/PersonalUITech/HEAD/scrollImageView/scrollImageView/白.png -------------------------------------------------------------------------------- /scrollImageView/scrollImageView/绿.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmyWong/PersonalUITech/HEAD/scrollImageView/scrollImageView/绿.png -------------------------------------------------------------------------------- /sortDemo/sortDemo.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmyWong/PersonalUITech/HEAD/sortDemo/sortDemo.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /sortDemo/sortDemo/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmyWong/PersonalUITech/HEAD/sortDemo/sortDemo/AppDelegate.h -------------------------------------------------------------------------------- /sortDemo/sortDemo/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmyWong/PersonalUITech/HEAD/sortDemo/sortDemo/AppDelegate.m -------------------------------------------------------------------------------- /sortDemo/sortDemo/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmyWong/PersonalUITech/HEAD/sortDemo/sortDemo/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /sortDemo/sortDemo/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmyWong/PersonalUITech/HEAD/sortDemo/sortDemo/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /sortDemo/sortDemo/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmyWong/PersonalUITech/HEAD/sortDemo/sortDemo/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /sortDemo/sortDemo/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmyWong/PersonalUITech/HEAD/sortDemo/sortDemo/Info.plist -------------------------------------------------------------------------------- /sortDemo/sortDemo/SceneDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmyWong/PersonalUITech/HEAD/sortDemo/sortDemo/SceneDelegate.h -------------------------------------------------------------------------------- /sortDemo/sortDemo/SceneDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmyWong/PersonalUITech/HEAD/sortDemo/sortDemo/SceneDelegate.m -------------------------------------------------------------------------------- /sortDemo/sortDemo/ViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmyWong/PersonalUITech/HEAD/sortDemo/sortDemo/ViewController.h -------------------------------------------------------------------------------- /sortDemo/sortDemo/ViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmyWong/PersonalUITech/HEAD/sortDemo/sortDemo/ViewController.m -------------------------------------------------------------------------------- /sortDemo/sortDemo/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmyWong/PersonalUITech/HEAD/sortDemo/sortDemo/main.m -------------------------------------------------------------------------------- /testDemo.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmyWong/PersonalUITech/HEAD/testDemo.zip -------------------------------------------------------------------------------- /verificationCode/verificationCode/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmyWong/PersonalUITech/HEAD/verificationCode/verificationCode/AppDelegate.h -------------------------------------------------------------------------------- /verificationCode/verificationCode/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmyWong/PersonalUITech/HEAD/verificationCode/verificationCode/AppDelegate.m -------------------------------------------------------------------------------- /verificationCode/verificationCode/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmyWong/PersonalUITech/HEAD/verificationCode/verificationCode/Info.plist -------------------------------------------------------------------------------- /verificationCode/verificationCode/ViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmyWong/PersonalUITech/HEAD/verificationCode/verificationCode/ViewController.h -------------------------------------------------------------------------------- /verificationCode/verificationCode/ViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmyWong/PersonalUITech/HEAD/verificationCode/verificationCode/ViewController.m -------------------------------------------------------------------------------- /verificationCode/verificationCode/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmyWong/PersonalUITech/HEAD/verificationCode/verificationCode/main.m -------------------------------------------------------------------------------- /watermarkDemo/watermarkDemo/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmyWong/PersonalUITech/HEAD/watermarkDemo/watermarkDemo/AppDelegate.h -------------------------------------------------------------------------------- /watermarkDemo/watermarkDemo/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmyWong/PersonalUITech/HEAD/watermarkDemo/watermarkDemo/AppDelegate.m -------------------------------------------------------------------------------- /watermarkDemo/watermarkDemo/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmyWong/PersonalUITech/HEAD/watermarkDemo/watermarkDemo/Info.plist -------------------------------------------------------------------------------- /watermarkDemo/watermarkDemo/ViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmyWong/PersonalUITech/HEAD/watermarkDemo/watermarkDemo/ViewController.h -------------------------------------------------------------------------------- /watermarkDemo/watermarkDemo/ViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmyWong/PersonalUITech/HEAD/watermarkDemo/watermarkDemo/ViewController.m -------------------------------------------------------------------------------- /watermarkDemo/watermarkDemo/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmyWong/PersonalUITech/HEAD/watermarkDemo/watermarkDemo/main.m -------------------------------------------------------------------------------- /watermarkDemo/watermarkDemo/weibo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmyWong/PersonalUITech/HEAD/watermarkDemo/watermarkDemo/weibo.png -------------------------------------------------------------------------------- /watermarkDemo/watermarkDemo/weixiao.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmyWong/PersonalUITech/HEAD/watermarkDemo/watermarkDemo/weixiao.jpg -------------------------------------------------------------------------------- /图片 1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmyWong/PersonalUITech/HEAD/图片 1.png -------------------------------------------------------------------------------- /自定义字体/ONETEST.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmyWong/PersonalUITech/HEAD/自定义字体/ONETEST.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /自定义字体/ONETEST/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmyWong/PersonalUITech/HEAD/自定义字体/ONETEST/AppDelegate.h -------------------------------------------------------------------------------- /自定义字体/ONETEST/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmyWong/PersonalUITech/HEAD/自定义字体/ONETEST/AppDelegate.m -------------------------------------------------------------------------------- /自定义字体/ONETEST/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmyWong/PersonalUITech/HEAD/自定义字体/ONETEST/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /自定义字体/ONETEST/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmyWong/PersonalUITech/HEAD/自定义字体/ONETEST/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /自定义字体/ONETEST/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmyWong/PersonalUITech/HEAD/自定义字体/ONETEST/Info.plist -------------------------------------------------------------------------------- /自定义字体/ONETEST/ViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmyWong/PersonalUITech/HEAD/自定义字体/ONETEST/ViewController.h -------------------------------------------------------------------------------- /自定义字体/ONETEST/ViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmyWong/PersonalUITech/HEAD/自定义字体/ONETEST/ViewController.m -------------------------------------------------------------------------------- /自定义字体/ONETEST/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmyWong/PersonalUITech/HEAD/自定义字体/ONETEST/main.m -------------------------------------------------------------------------------- /自定义字体/庞门正道标题体2.0增强版.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmyWong/PersonalUITech/HEAD/自定义字体/庞门正道标题体2.0增强版.ttf --------------------------------------------------------------------------------