-2

I am storing high resolution images in iPhone cache . I am getting Memory warning and the app is crashing.

Please help me how to handle crash ?

4

1 回答 1

0

您可以缩小图像尺寸并保存。以下方法减小了图像的大小。
NSData *imageData = UIImageJPEGRepresentation(YOUR_IMAGE_OBJECT, 0.0);
第二个参数决定图像的质量和大小。它从 0.0 变为 1.0。
请试试这个

于 2012-07-10T10:49:06.953 回答