当我加载回来时,保存的图像是否具有标签属性?
我有 3 个 UIImageView,它们都有标签 1、2、3,并且位于 NSMutableArray 内部。我想在应用程序终止时将图像保存到文件中,然后在应用程序加载时将它们加载回来并从数组中提取它们,并且仍然让它们具有标签。
I have 3 UIImageViews
, and they all have tags 1, 2, 3, and are inside of an NSMutableArray
. I want to save the images to a file upon termination of the app, then load them back whe the app loads and extract them from the array, and still have them have the tags.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
通常,您会保留 UIImage 对象,但标签位于 UIImageView 对象中。
我建议单独处理标签。例如,您可以将其存储为文件名的一部分,然后在加载图像时恢复它。
Typically you would persist the UIImage object, but the tag is in the UIImageView object.
I would recommend handling the tag separately. For example, you could store it as part of the file name and then restore it when loading the images.