Objective C:当使用代码实现导航控制器时如何在NIB中添加工具栏
到目前为止,我已经在不使用 NIB 的情况下实现了导航控制器和 UITable View。此时是否可以使用 NIB 将工具栏添加到我的 UITable 视图(在导航控制器中)中?
我尝试将工具栏拖动到 NIB 中的视图窗口,并将其与 IBOutlet 连接起来,但是,当我编译并运行代码时,没有显示任何内容。
非常感谢对此的任何建议。
珍
I have implemented my navigation controller and UITable View without using a NIB so far. Is it possible to add a toolbar into my UITable View (in navigation controller) using the NIB at this point of time?
I tried to drag a toolbar to the View Window in the NIB and also hooked it up with an IBOutlet, however, nothing is displayed when I compile and run the code.
Any advice on this is greatly appreciated.
Zhen
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我的猜测是,如果您设置的尺寸不正确,您的表格视图会覆盖工具栏。 将工具栏置于前面
您还可以尝试通过
[self.viewbringSubviewToFront:toolBar]
希望这会有所帮助:)
My guess is your tableview covers toolbar if you set its size improperly. You can also try bring your toolbar to front by
[self.view bringSubviewToFront:toolBar]
Hope this help :)