WEB开发网
开发学院手机开发iPhone 开发 iphone程序中实现截屏的一种方法 阅读

iphone程序中实现截屏的一种方法

 2010-10-13 02:03:00 来源:本站整理   
核心提示:iphone程序中实现截屏的一种方法在iphone程序中实现截屏的一种方法://导入头文件#import < QuartzCore/QuartzCore.h>//将整个self.view大小的图层内容创建一张图片imageUIGraphicsBeginImageContext(self.view.bound

iphone程序中实现截屏的一种方法

在iphone程序中实现截屏的一种方法:

//导入头文件

#import < QuartzCore/QuartzCore.h>

//将整个self.view大小的图层内容创建一张图片image

UIGraphicsBeginImageContext(self.view.bounds.size);

[self.view.layer renderInContext:UIGraphicsGetCurrentContext()];

UIImage *image= UIGraphicsGetImageFromCurrentImageContext();

UIGraphicsEndImageContext();

//然后将该图片保存到图片图

UIImageWriteToSavedPhotosAlbum(image, self, nil, nil);

Tags:iphone 程序 实现

编辑录入:爽爽 [复制链接] [打 印]
赞助商链接