11 lines
203 B
C
11 lines
203 B
C
|
#import <UIKit/UIKit.h>
|
||
|
|
||
|
@interface RNSScreenController : UIViewController
|
||
|
|
||
|
- (instancetype)initWithView:(UIView *)view;
|
||
|
- (void)takeSnapshot;
|
||
|
- (void)setViewToSnapshot;
|
||
|
- (void)resetViewToScreen;
|
||
|
|
||
|
@end
|