gpt4 book ai didi

iphone - 初始化 View Controller

转载 作者:塔克拉玛干 更新时间:2023-11-02 20:22:34 25 4
gpt4 key购买 nike

When a view controller is first instantiated, it usually creates or loads objects it needs through its lifetime. It should not create views or objects associated with displaying content. It should focus on data objects and objects needed to implement other critical behaviors.

以上内容来自iOS引用:

http://developer.apple.com/library/ios/#featuredarticles/ViewControllerPGforiPhoneOS/ViewLoadingandUnloading/ViewLoadingandUnloading.html#//apple_ref/doc/uid/TP40007457-CH10

文档继续描述了使用 Storyboard 的 View 加载序列。

我的问题是:

1

由于 View Controller 将与包含 View 对象的 nib 文件相关联;而它的“viewDidLoad”方法似乎是为在加载时配置 View 对象而设计的。那么文档的建议应该如何:

“不应创建与显示内容关联的 View 或对象”

被解释?

2

问题 1 是否与我们是否使用 Storyboard 有关?

最佳答案

不确定我是否正确回答了您的问题,但这是我的解释:

  1. init初始化和 View 创建是两个独立的步骤。假设我有一个 View Controller ,其表为 IBOutlet,它应该显示存储在核心数据中的食谱列表。在我的初始化方法中,我将从 CoreData 获取数据并将其存储在数组或获取结果 Controller 中。我不需要表格,因此我对 self.view 属性不做任何事情(如果还没有 View ,它会调用 viewDidLoad)。在 viewDidLoad 中,我调用 [tableView reloadData] 重绘单元格,以便它们显示来自 Controller 初始化程序中创建的 Controller 的数据。

  2. 我认为这不相关,但 Storyboard应该只是您的 View Controller 的脚手架,用单个文件替换单独的 nib。

关于iphone - 初始化 View Controller ,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10062269/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com