├── README.md ├── Resource ├── Launcher.png ├── Launcher@2x.png ├── Launcher@3x.png ├── ZS@1x.png ├── ZS@2x.png ├── ZS@3x.png ├── icon_22x29.png ├── icon_320x320.png ├── icon_44x58.png └── icon_64x64.png ├── ScreenShot ├── Screen Shot 2015-12-29 at 10.09.14.png ├── Screen Shot 2015-12-29 at 10.09.51.png ├── Screen Shot 2015-12-29 at 11.38.27.png ├── Screen Shot 2015-12-29 at 11.43.02.png ├── Screen Shot 2015-12-29 at 11.43.35.png └── Screen Shot 2015-12-29 at 14.44.59.png ├── ZSOpenInTestForUTI ├── AppDelegate.h ├── AppDelegate.m ├── Assets.xcassets │ ├── AppIcon.appiconset │ │ ├── Contents.json │ │ ├── ZS@2x.png │ │ └── ZS@3x.png │ ├── Contents.json │ └── Launcher.imageset │ │ ├── Contents.json │ │ ├── Launcher.png │ │ ├── Launcher@2x.png │ │ └── Launcher@3x.png ├── Base.lproj │ ├── LaunchScreen.storyboard │ └── Main.storyboard ├── Info.plist ├── ViewController.h ├── ViewController.m └── main.m └── ZSUTITestDemo.xcodeproj ├── project.pbxproj ├── project.xcworkspace ├── contents.xcworkspacedata └── xcuserdata │ └── test-bvod.xcuserdatad │ └── UserInterfaceState.xcuserstate └── xcuserdata └── test-bvod.xcuserdatad ├── xcdebugger └── Breakpoints_v2.xcbkptlist └── xcschemes ├── ZSUTITestDemo.xcscheme └── xcschememanagement.plist /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeraZheng/ZSUTITest/HEAD/README.md -------------------------------------------------------------------------------- /Resource/Launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeraZheng/ZSUTITest/HEAD/Resource/Launcher.png -------------------------------------------------------------------------------- /Resource/Launcher@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeraZheng/ZSUTITest/HEAD/Resource/Launcher@2x.png -------------------------------------------------------------------------------- /Resource/Launcher@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeraZheng/ZSUTITest/HEAD/Resource/Launcher@3x.png -------------------------------------------------------------------------------- /Resource/ZS@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeraZheng/ZSUTITest/HEAD/Resource/ZS@1x.png -------------------------------------------------------------------------------- /Resource/ZS@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeraZheng/ZSUTITest/HEAD/Resource/ZS@2x.png -------------------------------------------------------------------------------- /Resource/ZS@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeraZheng/ZSUTITest/HEAD/Resource/ZS@3x.png -------------------------------------------------------------------------------- /Resource/icon_22x29.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeraZheng/ZSUTITest/HEAD/Resource/icon_22x29.png -------------------------------------------------------------------------------- /Resource/icon_320x320.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeraZheng/ZSUTITest/HEAD/Resource/icon_320x320.png -------------------------------------------------------------------------------- /Resource/icon_44x58.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeraZheng/ZSUTITest/HEAD/Resource/icon_44x58.png -------------------------------------------------------------------------------- /Resource/icon_64x64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeraZheng/ZSUTITest/HEAD/Resource/icon_64x64.png -------------------------------------------------------------------------------- /ScreenShot/Screen Shot 2015-12-29 at 10.09.14.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeraZheng/ZSUTITest/HEAD/ScreenShot/Screen Shot 2015-12-29 at 10.09.14.png -------------------------------------------------------------------------------- /ScreenShot/Screen Shot 2015-12-29 at 10.09.51.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeraZheng/ZSUTITest/HEAD/ScreenShot/Screen Shot 2015-12-29 at 10.09.51.png -------------------------------------------------------------------------------- /ScreenShot/Screen Shot 2015-12-29 at 11.38.27.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeraZheng/ZSUTITest/HEAD/ScreenShot/Screen Shot 2015-12-29 at 11.38.27.png -------------------------------------------------------------------------------- /ScreenShot/Screen Shot 2015-12-29 at 11.43.02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeraZheng/ZSUTITest/HEAD/ScreenShot/Screen Shot 2015-12-29 at 11.43.02.png -------------------------------------------------------------------------------- /ScreenShot/Screen Shot 2015-12-29 at 11.43.35.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeraZheng/ZSUTITest/HEAD/ScreenShot/Screen Shot 2015-12-29 at 11.43.35.png -------------------------------------------------------------------------------- /ScreenShot/Screen Shot 2015-12-29 at 14.44.59.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeraZheng/ZSUTITest/HEAD/ScreenShot/Screen Shot 2015-12-29 at 14.44.59.png -------------------------------------------------------------------------------- /ZSOpenInTestForUTI/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeraZheng/ZSUTITest/HEAD/ZSOpenInTestForUTI/AppDelegate.h -------------------------------------------------------------------------------- /ZSOpenInTestForUTI/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeraZheng/ZSUTITest/HEAD/ZSOpenInTestForUTI/AppDelegate.m -------------------------------------------------------------------------------- /ZSOpenInTestForUTI/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeraZheng/ZSUTITest/HEAD/ZSOpenInTestForUTI/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /ZSOpenInTestForUTI/Assets.xcassets/AppIcon.appiconset/ZS@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeraZheng/ZSUTITest/HEAD/ZSOpenInTestForUTI/Assets.xcassets/AppIcon.appiconset/ZS@2x.png -------------------------------------------------------------------------------- /ZSOpenInTestForUTI/Assets.xcassets/AppIcon.appiconset/ZS@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeraZheng/ZSUTITest/HEAD/ZSOpenInTestForUTI/Assets.xcassets/AppIcon.appiconset/ZS@3x.png -------------------------------------------------------------------------------- /ZSOpenInTestForUTI/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeraZheng/ZSUTITest/HEAD/ZSOpenInTestForUTI/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /ZSOpenInTestForUTI/Assets.xcassets/Launcher.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeraZheng/ZSUTITest/HEAD/ZSOpenInTestForUTI/Assets.xcassets/Launcher.imageset/Contents.json -------------------------------------------------------------------------------- /ZSOpenInTestForUTI/Assets.xcassets/Launcher.imageset/Launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeraZheng/ZSUTITest/HEAD/ZSOpenInTestForUTI/Assets.xcassets/Launcher.imageset/Launcher.png -------------------------------------------------------------------------------- /ZSOpenInTestForUTI/Assets.xcassets/Launcher.imageset/Launcher@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeraZheng/ZSUTITest/HEAD/ZSOpenInTestForUTI/Assets.xcassets/Launcher.imageset/Launcher@2x.png -------------------------------------------------------------------------------- /ZSOpenInTestForUTI/Assets.xcassets/Launcher.imageset/Launcher@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeraZheng/ZSUTITest/HEAD/ZSOpenInTestForUTI/Assets.xcassets/Launcher.imageset/Launcher@3x.png -------------------------------------------------------------------------------- /ZSOpenInTestForUTI/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeraZheng/ZSUTITest/HEAD/ZSOpenInTestForUTI/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /ZSOpenInTestForUTI/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeraZheng/ZSUTITest/HEAD/ZSOpenInTestForUTI/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /ZSOpenInTestForUTI/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeraZheng/ZSUTITest/HEAD/ZSOpenInTestForUTI/Info.plist -------------------------------------------------------------------------------- /ZSOpenInTestForUTI/ViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeraZheng/ZSUTITest/HEAD/ZSOpenInTestForUTI/ViewController.h -------------------------------------------------------------------------------- /ZSOpenInTestForUTI/ViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeraZheng/ZSUTITest/HEAD/ZSOpenInTestForUTI/ViewController.m -------------------------------------------------------------------------------- /ZSOpenInTestForUTI/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeraZheng/ZSUTITest/HEAD/ZSOpenInTestForUTI/main.m -------------------------------------------------------------------------------- /ZSUTITestDemo.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeraZheng/ZSUTITest/HEAD/ZSUTITestDemo.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /ZSUTITestDemo.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeraZheng/ZSUTITest/HEAD/ZSUTITestDemo.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /ZSUTITestDemo.xcodeproj/project.xcworkspace/xcuserdata/test-bvod.xcuserdatad/UserInterfaceState.xcuserstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeraZheng/ZSUTITest/HEAD/ZSUTITestDemo.xcodeproj/project.xcworkspace/xcuserdata/test-bvod.xcuserdatad/UserInterfaceState.xcuserstate -------------------------------------------------------------------------------- /ZSUTITestDemo.xcodeproj/xcuserdata/test-bvod.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeraZheng/ZSUTITest/HEAD/ZSUTITestDemo.xcodeproj/xcuserdata/test-bvod.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist -------------------------------------------------------------------------------- /ZSUTITestDemo.xcodeproj/xcuserdata/test-bvod.xcuserdatad/xcschemes/ZSUTITestDemo.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeraZheng/ZSUTITest/HEAD/ZSUTITestDemo.xcodeproj/xcuserdata/test-bvod.xcuserdatad/xcschemes/ZSUTITestDemo.xcscheme -------------------------------------------------------------------------------- /ZSUTITestDemo.xcodeproj/xcuserdata/test-bvod.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeraZheng/ZSUTITest/HEAD/ZSUTITestDemo.xcodeproj/xcuserdata/test-bvod.xcuserdatad/xcschemes/xcschememanagement.plist --------------------------------------------------------------------------------