0
我想直接加我的UIImage到文件,而不是轉換成UIImagePNGRepresentation或UIImageJPGRepresentation(因爲它需要時間),如: -要添加的UIImage直接提交
UIImage *im = [UIImage imageWithCGImage:ref];
[array addObject:im];
NSData *data = [array objectAtIndex:i];
[data writeToFile:path atomically:YES];
但它顯示錯誤。 所以我有辦法做到這一點。 在此先感謝。