当 iPhone 从睡眠状态重新打开且应用程序仍处于打开状态时释放

发布于 2024-11-02 05:29:26 字数 240 浏览 3 评论 0原文

在某些情况下,当我的应用程序从睡眠状态重新打开且应用程序仍处于打开状态时会崩溃。如果当 iPhone 进入睡眠状态时 UITableViews 打开,就会发生这种情况;该表是从正在解析的 XML 中填充的。我明白为什么它会崩溃;在我的 viewDidUnload 方法中,我正在释放填充表格的数组。我不确定如何处理这个问题;是的,我可以简单地不在 viewDidUnload 中释放它,但是如果您返回主菜单,它永远不会留下内存。

任何帮助将不胜感激!

There are a few instances where my app crashes when turned back on from sleep and the app is still open. It happens if a UITableViews is open when the iPhone is put into sleep; the table is being filled from an XML being parsed. I understand why it is crashing; in my viewDidUnload method I am releasing the array that is filling the table. How to handle this I am not sure; yes I could simply not release it in viewDidUnload, but then it would never leave memory if you returned to the main menu.

Any help would be appreciated!

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

哆兒滾 2024-11-09 05:29:26

viewDidUnload 方法根本不是释放数据的正确位置。我引用苹果的文档,它比我能更好地描述它:

该方法被称为对应方法
到 viewDidLoad 方法。这是
在内存不足的情况下调用
当视图控制器需要时
释放其视图和任何对象
与该视图关联以释放
记忆。因为视图控制器经常
存储对视图和其他内容的引用
与视图相关的对象,您应该使用
这种方法放弃所有权
这些对象以便内存
它们可以被回收。你应该做
这仅适用于您可以
稍后可以轻松地重新创建,无论是在您的
viewDidLoad方法或来自其他部分
您的申请。 你不应该
使用该方法释放用户数据

或任何其他无法提供的信息
很容易重新创建。

ViewDidUnload 仅用于释放视图相关对象。视图控制器可以释放其视图,因为它未显示,但该控制器的实例仍然存在,您的模型也存在。

The method viewDidUnload is not the right place to release your data if at all. I quote Apple's documentation, which desribes it better than I could:

This method is called as a counterpart
to the viewDidLoad method. It is
called during low-memory conditions
when the view controller needs to
release its view and any objects
associated with that view to free up
memory. Because view controllers often
store references to views and other
view-related objects, you should use
this method to relinquish ownership in
those objects so that the memory for
them can be reclaimed. You should do
this only for objects that you can
easily recreate later, either in your
viewDidLoad method or from other parts
of your application. You should not
use this method to release user data

or any other information that cannot
be easily recreated.

ViewDidUnload is used only to release view related objects. A view controller can release its view because its not shown, still your instance of that controller exists and so does your model.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文