美文网首页iOS直播原理及实现(转)
ios中的屏幕截图(UIView方法)

ios中的屏幕截图(UIView方法)

作者: helinyu | 来源:发表于2016-06-21 22:44 被阅读1340次
    • (UIView *)snapshotViewAfterScreenUpdates:(BOOL)afterUpdates ;
    • (UIView *)resizableSnapshotViewFromRect:(CGRect)rect afterScreenUpdates:(BOOL)afterUpdates withCapInsets:(UIEdgeInsets)capInsets ;
    • (BOOL)drawViewHierarchyInRect:(CGRect)rect afterScreenUpdates:(BOOL)afterUpdate
      (uiview中的快照的介个方法)
    一个简单的事例

    self.snapImageView = (UIImageView*) [self.view snapshotViewAfterScreenUpdates:true];(简单)
    这个方法直接就可以获取到截取的图片,然后就可以用来实现设置相应的内容。

    可参考的链接

    相关文章

      网友评论

      • LoveY34:这个地方好像不可以这么强转吧?self.snapImageView = (UIImageView*) [self.view snapshotViewAfterScreenUpdates:true];这个方法返回的其实不是UIImageView类型的!

      本文标题:ios中的屏幕截图(UIView方法)

      本文链接:https://www.haomeiwen.com/subject/ynbgdttx.html