嗨,我也经历了很多关于 SO的问题,但它对 ios 5.1.1 没有帮助。当我拍摄前 2 次图像时,它的工作正常,然后第 3 次应用程序显示内存警告并崩溃。这是我的代码:
- (void)imagePickerController:(UIImagePickerController *)picker didFinishPickingMediaWithInfo:(NSDictionary *)info {
[picker dismissModalViewControllerAnimated:YES];
UIImage *image = [info objectForKey:@"UIImagePickerControllerOriginalImage"];
if (image) {
if ([appdel.arrImageData count]==0) {
count=0;
}
count++;
[appdel.arrImageData addObject:[image copy]];
}}
任何帮助,将不胜感激。