├── README.md └── ReplayKitDemo ├── ReplayKitDemo.xcodeproj ├── project.pbxproj ├── project.xcworkspace │ ├── contents.xcworkspacedata │ └── xcuserdata │ │ ├── liushuo.xcuserdatad │ │ └── UserInterfaceState.xcuserstate │ │ └── wangbo.xcuserdatad │ │ └── UserInterfaceState.xcuserstate └── xcuserdata │ ├── liushuo.xcuserdatad │ └── xcschemes │ │ ├── ReplayKitDemo.xcscheme │ │ └── xcschememanagement.plist │ └── wangbo.xcuserdatad │ ├── xcdebugger │ └── Breakpoints_v2.xcbkptlist │ └── xcschemes │ ├── ReplayKitDemo.xcscheme │ └── xcschememanagement.plist └── ReplayKitDemo ├── AppDelegate.h ├── AppDelegate.m ├── Assets.xcassets └── AppIcon.appiconset │ └── Contents.json ├── Base.lproj ├── LaunchScreen.storyboard └── Main.storyboard ├── Info.plist ├── ViewController.h ├── ViewController.m ├── img_01.png ├── img_02.png ├── img_03.png ├── img_04.png └── main.m /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LSure/ReplayKitDemo/HEAD/README.md -------------------------------------------------------------------------------- /ReplayKitDemo/ReplayKitDemo.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LSure/ReplayKitDemo/HEAD/ReplayKitDemo/ReplayKitDemo.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /ReplayKitDemo/ReplayKitDemo.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LSure/ReplayKitDemo/HEAD/ReplayKitDemo/ReplayKitDemo.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /ReplayKitDemo/ReplayKitDemo.xcodeproj/project.xcworkspace/xcuserdata/liushuo.xcuserdatad/UserInterfaceState.xcuserstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LSure/ReplayKitDemo/HEAD/ReplayKitDemo/ReplayKitDemo.xcodeproj/project.xcworkspace/xcuserdata/liushuo.xcuserdatad/UserInterfaceState.xcuserstate -------------------------------------------------------------------------------- /ReplayKitDemo/ReplayKitDemo.xcodeproj/project.xcworkspace/xcuserdata/wangbo.xcuserdatad/UserInterfaceState.xcuserstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LSure/ReplayKitDemo/HEAD/ReplayKitDemo/ReplayKitDemo.xcodeproj/project.xcworkspace/xcuserdata/wangbo.xcuserdatad/UserInterfaceState.xcuserstate -------------------------------------------------------------------------------- /ReplayKitDemo/ReplayKitDemo.xcodeproj/xcuserdata/liushuo.xcuserdatad/xcschemes/ReplayKitDemo.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LSure/ReplayKitDemo/HEAD/ReplayKitDemo/ReplayKitDemo.xcodeproj/xcuserdata/liushuo.xcuserdatad/xcschemes/ReplayKitDemo.xcscheme -------------------------------------------------------------------------------- /ReplayKitDemo/ReplayKitDemo.xcodeproj/xcuserdata/liushuo.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LSure/ReplayKitDemo/HEAD/ReplayKitDemo/ReplayKitDemo.xcodeproj/xcuserdata/liushuo.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /ReplayKitDemo/ReplayKitDemo.xcodeproj/xcuserdata/wangbo.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LSure/ReplayKitDemo/HEAD/ReplayKitDemo/ReplayKitDemo.xcodeproj/xcuserdata/wangbo.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist -------------------------------------------------------------------------------- /ReplayKitDemo/ReplayKitDemo.xcodeproj/xcuserdata/wangbo.xcuserdatad/xcschemes/ReplayKitDemo.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LSure/ReplayKitDemo/HEAD/ReplayKitDemo/ReplayKitDemo.xcodeproj/xcuserdata/wangbo.xcuserdatad/xcschemes/ReplayKitDemo.xcscheme -------------------------------------------------------------------------------- /ReplayKitDemo/ReplayKitDemo.xcodeproj/xcuserdata/wangbo.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LSure/ReplayKitDemo/HEAD/ReplayKitDemo/ReplayKitDemo.xcodeproj/xcuserdata/wangbo.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /ReplayKitDemo/ReplayKitDemo/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LSure/ReplayKitDemo/HEAD/ReplayKitDemo/ReplayKitDemo/AppDelegate.h -------------------------------------------------------------------------------- /ReplayKitDemo/ReplayKitDemo/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LSure/ReplayKitDemo/HEAD/ReplayKitDemo/ReplayKitDemo/AppDelegate.m -------------------------------------------------------------------------------- /ReplayKitDemo/ReplayKitDemo/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LSure/ReplayKitDemo/HEAD/ReplayKitDemo/ReplayKitDemo/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /ReplayKitDemo/ReplayKitDemo/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LSure/ReplayKitDemo/HEAD/ReplayKitDemo/ReplayKitDemo/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /ReplayKitDemo/ReplayKitDemo/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LSure/ReplayKitDemo/HEAD/ReplayKitDemo/ReplayKitDemo/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /ReplayKitDemo/ReplayKitDemo/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LSure/ReplayKitDemo/HEAD/ReplayKitDemo/ReplayKitDemo/Info.plist -------------------------------------------------------------------------------- /ReplayKitDemo/ReplayKitDemo/ViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LSure/ReplayKitDemo/HEAD/ReplayKitDemo/ReplayKitDemo/ViewController.h -------------------------------------------------------------------------------- /ReplayKitDemo/ReplayKitDemo/ViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LSure/ReplayKitDemo/HEAD/ReplayKitDemo/ReplayKitDemo/ViewController.m -------------------------------------------------------------------------------- /ReplayKitDemo/ReplayKitDemo/img_01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LSure/ReplayKitDemo/HEAD/ReplayKitDemo/ReplayKitDemo/img_01.png -------------------------------------------------------------------------------- /ReplayKitDemo/ReplayKitDemo/img_02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LSure/ReplayKitDemo/HEAD/ReplayKitDemo/ReplayKitDemo/img_02.png -------------------------------------------------------------------------------- /ReplayKitDemo/ReplayKitDemo/img_03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LSure/ReplayKitDemo/HEAD/ReplayKitDemo/ReplayKitDemo/img_03.png -------------------------------------------------------------------------------- /ReplayKitDemo/ReplayKitDemo/img_04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LSure/ReplayKitDemo/HEAD/ReplayKitDemo/ReplayKitDemo/img_04.png -------------------------------------------------------------------------------- /ReplayKitDemo/ReplayKitDemo/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LSure/ReplayKitDemo/HEAD/ReplayKitDemo/ReplayKitDemo/main.m --------------------------------------------------------------------------------