gpt4 book ai didi

swift - 使用 UIStoryboard.instantiateViewController 时,何时为 UIViewController 的自定义属性设置值?

转载 作者:可可西里 更新时间:2023-10-31 23:43:41 25 4
gpt4 key购买 nike

  1. 当从代码启动 UIViewController 时,它需要运行的数据作为参数传递到 init 方法中并保存在非可选属性中,因此当 ViewDidLoad() 是您可以对数据和 View 执行任何您需要的操作。

  2. 执行 segue 时,属性被声明为隐式展开的可选值(因为 Storyboard需要没有额外参数的 init 方法才能对其进行初始化)。初始化后调用 loadView() 并设置 socket 。最后,prepareForSegue:sender: 被调用,其中数据被传递并设置在先前声明的属性中,所以当 ViewDidLoad() 被调用时,你可以做任何你想做的事需要数据和 View 。

  3. 使用UIStoryboard.instantiateViewController时如何传递数据?据我了解, Storyboard 会自动调用 loadView()viewDidLoad() 结束,而您没有机会将数据传递给您声明的自定义属性,因此该点数据尚未准备好使用。

(很明显,我可以在调用 UIStoryboard.instantiateViewController 后立即设置属性,但我认为此过程不保证在 viewDidLoad() 之前设置它们被称为)

例如,这(很可能)会起作用:

  1. 调用 UIStoryboard.instantiateViewController
  2. 在目标 UIViewController 中设置自定义属性的值
  3. viewDidLoad() 被调用,在里面我可以使用数据和 View 对象。(因为我在之前给了那些属性值)

但想象一下如果:

  1. 调用 UIStoryboard.instantiateViewController
    ...
    ...我花了一些时间来赋予自定义属性值(value)...
    ...
  2. viewDidLoad() 被调用,我在里面使用自定义属性。该应用程序很可能会崩溃,因为未设置这些属性的值。
  3. 在目标 UIViewController 中设置自定义属性的值(此处 viewDidLoad() 已执行)

最佳答案

viewDidLoad() is called regardless of whether the view hierarchy was loaded from a nib file or created programmatically in the loadView method.............You usually override this method to perform additional initialization on views that were loaded from nib files.

确实,viewDidLoad() 用于对 View 进行额外的初始化,因为当您初始化 View Controller 时(使用 -init 或 -initWithNibName:bundle:),它实际上并没有创建并初始化 View 。当您第一次调用 -view 时,它会调用 -loadView(我想这就是为什么 viewDidLoad() 是必需的,用于其他 初始化)。不过,UIViewController本身就是一个Class,我觉得给一个类Object设置属性并没有什么不妥。

我还查看了 UIStoryboard.instantiateViewController 的定义:

You use this method to create view controller objects that you want to manipulate and present programmatically in your application. Before you can use this method to retrieve a view controller, you must explicitly tag it with an appropriate identifier string in Interface Builder.

This method creates a new instance of the specified view controller each time you call it.

我强调 new instance 因为它不同于创建新的 viewController。通过使用 UIStoryboard.instantiateViewController,您在 Storyboard中创建的所有 View 都将自动为您实例化,并且所有导出和操作都将按照您在 Storyboard中指定的方式进行设置。

正如 Apple Doc 所说的“在您的应用程序中以编程方式进行操作和呈现”,我认为您可以随意这样做。

关于swift - 使用 UIStoryboard.instantiateViewController 时,何时为 UIViewController 的自定义属性设置值?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/37436065/

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