我应该在 viewDidLoad 还是 loadView 中添加 UIDatePicker ?
在哪里添加 UIDatePicker 合适?我应该将其添加到 viewDidLoad 中吗?或者在loadView中?
此 UIDatePicker 应该是主视图的子视图,并且将在显示此 viewController 的视图的整个过程中显示。
谢谢你!
Where is it proper to add an UIDatePicker? Should I add it in viewDidLoad? Or in loadView?
This UIDatePicker should be a subview of the main view, and will be displayed the entire time that this viewController's view is displayed.
Thank you!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这取决于您是从笔尖加载视图还是以编程方式加载视图。
如果您从 nib 加载,则需要使用 viewDidLoad。
如果您以编程方式加载,则可以使用其中任何一个,但要将所有视图加载逻辑保留在一个方法中,您应该使用 loadView。
It depends on whether you are loading your view from a nib or programmatically.
If you are loading from a nib, you want to use viewDidLoad.
If you are loading programmatically, you can use either, but to keep all of your view loading logic in one method, you should use loadView.