iOS 将图像保存到文档目录会减慢应用程序的速度
我目前正在编写一个应用程序,允许用户从照片应用程序中选择图像,并将它们添加到我的应用程序中。我发现当用户这样做几次就可以了。当他们这样做 5-6 次时,问题就出现了,应用程序开始变慢。
我正在释放资源,并通过仪器运行它,没有发现泄漏。我只是好奇以这种方式将图像保存到应用程序时是否还应该考虑其他事情。我现在还没有看到任何明显的东西。
I am currently writing an app where I allowing a user to select images from the photos app, and add them to my app. I find that when the users does this a couple times it is fine. The problem comes in when they do this 5-6 times, it starts to slow the app down.
I am freeing up resources, and ran it through instruments and found no leaks. I'm just curious if there are any other things I should consider when saving images to the app this way. I just not seeing anything obvious at this point.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
尝试使用 FreeImage 或 OpenCV 库来读取/写入图像。也许他们会比你更有效率
Try FreeImage or OpenCV library for reading/writing Images. Maybe they'll be more efficient than yours