Objective C:当使用代码实现导航控制器时如何在NIB中添加工具栏

发布于 2024-11-02 17:52:47 字数 272 浏览 4 评论 0原文

到目前为止,我已经在不使用 NIB 的情况下实现了导航控制器和 UITable View。此时是否可以使用 NIB 将工具栏添加到我的 UITable 视图(在导航控制器中)中?

在 NIB 中添加工具栏

我尝试将工具栏拖动到 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?

Adding toolbar in NIB

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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

圈圈圆圆圈圈 2024-11-09 17:52:47

我的猜测是,如果您设置的尺寸不正确,您的表格视图会覆盖工具栏。 将工具栏置于前面

您还可以尝试通过[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 :)

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文