在 awakeFromNib 中设置委托
我在 Interface Builder 中有一个 ViewController,其中嵌入了一个 TableViewController(我在其他地方重用了 TableViewController 的功能)。我需要将 TabelViewController 中的委托设置回它嵌入的 UIViewController,以便我可以使用 UIViewController 的 NavigationController(单击嵌入的 TableViewController 中的行,出现新的 ViewController...)。
我有一个委托来完成这一切,我唯一的问题是在哪里设置委托。我读过,一旦读入笔尖并且所有 IBOutlet 都已设置(嵌入式 TableViewController 是 IBOutlet),awakeFromNib
就会被调用。我可以单步执行代码并看到该函数在应用程序首次启动时被调用。但是,当我稍后调用委托时(单击一行时),委托为 null
。如果我在 viewDidLoad 中设置委托,一切都会很好。
有什么想法为什么 awakeFromNib 不起作用吗?我应该在 viewDidLoad 中执行此操作吗?
谢谢!
I have a ViewController in Interface Builder that has a TableViewController embedded in it (I reuse the functionality of the TableViewController elsewhere). I need to set a delegate in the TabelViewController back to the UIViewController it is embedded in so that I can use the NavigationController of the UIViewController (click on row in embedded TableViewController, new ViewController appears....).
I've got a delegate to make this all work, the only problem I have is where to set the delegate. I had read that awakeFromNib
gets called once a nib is read in and all IBOutlets have been set (the embedded TableViewController is an IBOutlet). I can step through the code and see that this function is called when the app first launches. However, when I later call the delegate (when a row is clicked), the delegate is null
. If I set the delegate in viewDidLoad
, everything works great.
Any ideas why awakeFromNib isn't working? Should I be doing this in viewDidLoad anyway?
Thanks!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以在此处详细了解为什么您的 awakeFromNib 方法无法正常工作: 为什么我的 awakeFromNib 不会触发?
viewDidLoad 方法是设置 UITableViewDelegate 的完美位置,但在其他方法中设置它没有实际好处。
You can read more about why your awakeFromNib method is not working properly here: Why won't my awakeFromNib fire?
The viewDidLoad method is a perfect place for setting the UITableViewDelegate no actual benefits from setting it in other methods.