我有noob objective-c 问题。如何将 UIImage 添加到 MSMutableArray?这是我拥有的代码:
MSMutableArray *arr = [[NSMutableArray alloc] init];
UIImage *image;
UIGraphicsBeginImageContext(contextSize);
{
CGContextRef context = UIGraphicsGetCurrentContext();
CGContextTranslateCTM(context, 0, pushUpSize);
[screenWindow.layer renderInContext: context];
image = UIGraphicsGetImageFromCurrentImageContext();
}
UIGraphicsEndImageContext();
[arr addObject:image];
但是,当它尝试添加图像时,这会使程序崩溃。我在某处读到它添加了一个变量而不是指针,对吗?如何将 UIImage 添加到数组中,它不是一个对象吗?
谢谢!