程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> 更多編程語言 >> 編程綜合問答 >> ios-屏幕截圖時會報內存不足

ios-屏幕截圖時會報內存不足

編輯:編程綜合問答
屏幕截圖時會報內存不足

捕捉視圖的屏幕截圖,保存圖片在文件夾中:

CGSize size = self.view.bounds.size;
CGRect cropRect;
CGRect screenBounds = [[UIScreen mainScreen] bounds];
if([self isPad])
{
    cropRect = CGRectMake(145, 110, 476, 476);
}
else
{
    if (screenBounds.size.height ==568)
    {
        cropRect = CGRectMake(40, 69, 240, 240);
    }
    else
    {
        cropRect = CGRectMake(40, 62, 240, 240);
    }
}
/* Get the entire on screen map as Image */
UIGraphicsBeginImageContext(size);
[self.view.layer renderInContext:UIGraphicsGetCurrentContext()];
UIImage * mapImage = UIGraphicsGetImageFromCurrentImageContext();
UIGraphicsEndImageContext();
/* Crop the desired region */
CGImageRef imageRef = CGImageCreateWithImageInRect(mapImage.CGImage, cropRect);
UIImage * cropImage = [UIImage imageWithCGImage:imageRef];
CGImageRelease(imageRef);
/* Save the cropped image
 UIImageWriteToSavedPhotosAlbum(cropImage, nil, nil, nil);*/
//save to document folder
NSData * imageData = UIImageJPEGRepresentation(cropImage, 1.0);
NSArray* paths = NSSearchPathForDirectoriesInDomains(NSDocumentDirectory, NSUserDomainMask, YES);
NSString* documentsDirectory = [paths objectAtIndex:0];
    imagename=[NSString stringWithFormat:@"Fff.jpg"];
NSString* fullPathToFile = [documentsDirectory stringByAppendingPathComponent:imagename];
////NSLog(@"full path %@",fullPathToFile);
[imageData writeToFile:fullPathToFile atomically:NO];

在截圖15到20次後,就會出現內存空間不足的警告,然後應用就會崩潰。

不知道有沒有更好的方法不引起這種內存問題?

最佳回答:


這說明內存並沒有被釋放干淨,一個簡單的做法是用
NSAutoReleasePool *pool = [[NSAutoReleasePool alloc] init];
//這裡寫截圖並保存的代碼
[pool release];
這應該能夠顯著提高性能

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved