Permalink
Cannot retrieve contributors at this time
Jump to Line
JailbreakCon-Talk-2013/18-layersnapshotter.h
Fetching contributors…
| #import <UIKit/UIKit.h> | |
| #import <QuartzCore/QuartzCore.h> | |
| @interface CALayer (Snapshot) | |
| - (UIImage *)renderSnapshotWithScale:(CGFloat)scale; | |
| @end | |
| @interface UIView (Snapshot) | |
| - (UIImage *)renderSnapshot; | |
| @end | |
| @interface UIImage (Saving) | |
| - (BOOL)writeToFile:(NSString *)path atomically:(BOOL)atomically; | |
| @end |