尝试将图像保存到相机卷SWIFT时出现问题

时间:2015-05-13 00:10:28

标签: ios swift xcode6.3 save-image

在尝试保存视图时遇到一个奇怪的问题。 图片保存了图像。

这是代码:

    let scale = UIScreen.mainScreen().scale

    let size:CGSize = CGSize(width: CGFloat(self.customView!.frame.size.width), height:  CGFloat(self.customView!.frame.size.height))


    UIGraphicsBeginImageContextWithOptions( size, false, scale);

    self.customView!.layer.renderInContext(UIGraphicsGetCurrentContext())
    let screenshot = UIGraphicsGetImageFromCurrentImageContext()
    UIGraphicsEndImageContext()

    UIImageWriteToSavedPhotosAlbum(screenshot, nil, nil, nil)

请帮忙! 提前谢谢

1 个答案:

答案 0 :(得分:0)

相机胶卷具有自动变焦功能,因为高度略小于屏幕。