Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在使用以下代码基于图像文件创建单个 UIImage:
UIImage *myImage = [[UIImage alloc] initWithContentsOfFile:myImagePath];
然后我循环并将这个 myImage 添加到许多包含 UIImage 属性的对象中。这导致我收到以下错误:
错误 = 24(打开的文件太多)
我的问题是,如何在不克隆文件引用的情况下克隆这个 UIImage 。这似乎正在发生。
将此行放在循环之外。