首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 移动开发 > Iphone >

iphone 截屏封存

2012-09-25 
iphone 截屏保存UIGraphicsBeginImageContext(self.view.bounds.size)//UIGraphicsBeginImageContextWith

iphone 截屏保存

UIGraphicsBeginImageContext(self.view.bounds.size);//UIGraphicsBeginImageContextWithOptions(self.view.bounds.size, NO, 0.0);[self.view.layer renderInContext:UIGraphicsGetCurrentContext()];UIImage *viewImage = UIGraphicsGetImageFromCurrentImageContext();UIGraphicsEndImageContext();UIImageWriteToSavedPhotosAlbum(viewImage, self, nil, nil);
?

热点排行