├── .gitignore ├── FastScreenshotDemo.xcodeproj └── project.pbxproj ├── FastScreenshotDemo ├── ABAppDelegate.h ├── ABAppDelegate.m ├── ABViewController.h ├── ABViewController.m ├── Base.lproj │ └── Main.storyboard ├── FastScreenshotDemo-Info.plist ├── FastScreenshotDemo-Prefix.pch ├── Images.xcassets │ ├── AppIcon.appiconset │ │ └── Contents.json │ └── LaunchImage.launchimage │ │ └── Contents.json ├── en.lproj │ └── InfoPlist.strings └── main.m ├── FastScreenshotDemoTests ├── FastScreenshotDemoTests-Info.plist ├── FastScreenshotDemoTests.m └── en.lproj │ └── InfoPlist.strings ├── LICENSE ├── README.md ├── UIView+FastScreenshot.h ├── UIView+FastScreenshot.m └── headers ├── CoreSurface └── CoreSurface.h ├── IOKit ├── IOBSD.h ├── IOCFBundle.h ├── IOCFPlugIn.h ├── IOCFSerialize.h ├── IOCFURLAccess.h ├── IOCFUnserialize.h ├── IODataQueueClient.h ├── IODataQueueShared.h ├── IOKitKeys.h ├── IOKitLib.h ├── IOKitServer.h ├── IOMessage.h ├── IOReturn.h ├── IOSharedLock.h ├── IOTypes.h ├── OSMessageNotification.h └── iokitmig.h ├── IOMobileFrameBuffer.h └── IOSurface ├── IOSurface.h ├── IOSurfaceAPI.h └── IOSurfaceBase.h /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k06a/UIView-FastScreenshot/HEAD/.gitignore -------------------------------------------------------------------------------- /FastScreenshotDemo.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k06a/UIView-FastScreenshot/HEAD/FastScreenshotDemo.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /FastScreenshotDemo/ABAppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k06a/UIView-FastScreenshot/HEAD/FastScreenshotDemo/ABAppDelegate.h -------------------------------------------------------------------------------- /FastScreenshotDemo/ABAppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k06a/UIView-FastScreenshot/HEAD/FastScreenshotDemo/ABAppDelegate.m -------------------------------------------------------------------------------- /FastScreenshotDemo/ABViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k06a/UIView-FastScreenshot/HEAD/FastScreenshotDemo/ABViewController.h -------------------------------------------------------------------------------- /FastScreenshotDemo/ABViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k06a/UIView-FastScreenshot/HEAD/FastScreenshotDemo/ABViewController.m -------------------------------------------------------------------------------- /FastScreenshotDemo/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k06a/UIView-FastScreenshot/HEAD/FastScreenshotDemo/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /FastScreenshotDemo/FastScreenshotDemo-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k06a/UIView-FastScreenshot/HEAD/FastScreenshotDemo/FastScreenshotDemo-Info.plist -------------------------------------------------------------------------------- /FastScreenshotDemo/FastScreenshotDemo-Prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k06a/UIView-FastScreenshot/HEAD/FastScreenshotDemo/FastScreenshotDemo-Prefix.pch -------------------------------------------------------------------------------- /FastScreenshotDemo/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k06a/UIView-FastScreenshot/HEAD/FastScreenshotDemo/Images.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /FastScreenshotDemo/Images.xcassets/LaunchImage.launchimage/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k06a/UIView-FastScreenshot/HEAD/FastScreenshotDemo/Images.xcassets/LaunchImage.launchimage/Contents.json -------------------------------------------------------------------------------- /FastScreenshotDemo/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /FastScreenshotDemo/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k06a/UIView-FastScreenshot/HEAD/FastScreenshotDemo/main.m -------------------------------------------------------------------------------- /FastScreenshotDemoTests/FastScreenshotDemoTests-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k06a/UIView-FastScreenshot/HEAD/FastScreenshotDemoTests/FastScreenshotDemoTests-Info.plist -------------------------------------------------------------------------------- /FastScreenshotDemoTests/FastScreenshotDemoTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k06a/UIView-FastScreenshot/HEAD/FastScreenshotDemoTests/FastScreenshotDemoTests.m -------------------------------------------------------------------------------- /FastScreenshotDemoTests/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k06a/UIView-FastScreenshot/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k06a/UIView-FastScreenshot/HEAD/README.md -------------------------------------------------------------------------------- /UIView+FastScreenshot.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k06a/UIView-FastScreenshot/HEAD/UIView+FastScreenshot.h -------------------------------------------------------------------------------- /UIView+FastScreenshot.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k06a/UIView-FastScreenshot/HEAD/UIView+FastScreenshot.m -------------------------------------------------------------------------------- /headers/CoreSurface/CoreSurface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k06a/UIView-FastScreenshot/HEAD/headers/CoreSurface/CoreSurface.h -------------------------------------------------------------------------------- /headers/IOKit/IOBSD.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k06a/UIView-FastScreenshot/HEAD/headers/IOKit/IOBSD.h -------------------------------------------------------------------------------- /headers/IOKit/IOCFBundle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k06a/UIView-FastScreenshot/HEAD/headers/IOKit/IOCFBundle.h -------------------------------------------------------------------------------- /headers/IOKit/IOCFPlugIn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k06a/UIView-FastScreenshot/HEAD/headers/IOKit/IOCFPlugIn.h -------------------------------------------------------------------------------- /headers/IOKit/IOCFSerialize.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k06a/UIView-FastScreenshot/HEAD/headers/IOKit/IOCFSerialize.h -------------------------------------------------------------------------------- /headers/IOKit/IOCFURLAccess.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k06a/UIView-FastScreenshot/HEAD/headers/IOKit/IOCFURLAccess.h -------------------------------------------------------------------------------- /headers/IOKit/IOCFUnserialize.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k06a/UIView-FastScreenshot/HEAD/headers/IOKit/IOCFUnserialize.h -------------------------------------------------------------------------------- /headers/IOKit/IODataQueueClient.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k06a/UIView-FastScreenshot/HEAD/headers/IOKit/IODataQueueClient.h -------------------------------------------------------------------------------- /headers/IOKit/IODataQueueShared.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k06a/UIView-FastScreenshot/HEAD/headers/IOKit/IODataQueueShared.h -------------------------------------------------------------------------------- /headers/IOKit/IOKitKeys.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k06a/UIView-FastScreenshot/HEAD/headers/IOKit/IOKitKeys.h -------------------------------------------------------------------------------- /headers/IOKit/IOKitLib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k06a/UIView-FastScreenshot/HEAD/headers/IOKit/IOKitLib.h -------------------------------------------------------------------------------- /headers/IOKit/IOKitServer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k06a/UIView-FastScreenshot/HEAD/headers/IOKit/IOKitServer.h -------------------------------------------------------------------------------- /headers/IOKit/IOMessage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k06a/UIView-FastScreenshot/HEAD/headers/IOKit/IOMessage.h -------------------------------------------------------------------------------- /headers/IOKit/IOReturn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k06a/UIView-FastScreenshot/HEAD/headers/IOKit/IOReturn.h -------------------------------------------------------------------------------- /headers/IOKit/IOSharedLock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k06a/UIView-FastScreenshot/HEAD/headers/IOKit/IOSharedLock.h -------------------------------------------------------------------------------- /headers/IOKit/IOTypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k06a/UIView-FastScreenshot/HEAD/headers/IOKit/IOTypes.h -------------------------------------------------------------------------------- /headers/IOKit/OSMessageNotification.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k06a/UIView-FastScreenshot/HEAD/headers/IOKit/OSMessageNotification.h -------------------------------------------------------------------------------- /headers/IOKit/iokitmig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k06a/UIView-FastScreenshot/HEAD/headers/IOKit/iokitmig.h -------------------------------------------------------------------------------- /headers/IOMobileFrameBuffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k06a/UIView-FastScreenshot/HEAD/headers/IOMobileFrameBuffer.h -------------------------------------------------------------------------------- /headers/IOSurface/IOSurface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k06a/UIView-FastScreenshot/HEAD/headers/IOSurface/IOSurface.h -------------------------------------------------------------------------------- /headers/IOSurface/IOSurfaceAPI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k06a/UIView-FastScreenshot/HEAD/headers/IOSurface/IOSurfaceAPI.h -------------------------------------------------------------------------------- /headers/IOSurface/IOSurfaceBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k06a/UIView-FastScreenshot/HEAD/headers/IOSurface/IOSurfaceBase.h --------------------------------------------------------------------------------