iOS 快速获取屏幕截图的方法

关玮
2023-12-01

如下说明了2种方法获取屏幕截图

第一种、通过UIView的方法,方法如下

@interface UIView (UISnapshotting)

- (UIView *)snapshotViewAfterScreenUpdates:(BOOL)afterUpdates NS_AVAILABLE_IOS(7_0);

第二种、通过UIScreen的方法

@interface UIScreen (UISnapshotting)
- (UIView *)snapshotViewAfterScreenUpdates:(BOOL)afterUpdates NS_AVAILABLE_IOS(7_0);
@end
 类似资料: