在没有导航控制器的 UIViewController 中创建 UIToolbar
我创建了一个 UIViewController 笔尖,并使用该笔尖将 UIToolbar 拖动到我的界面。我已经将 nib 中的工具栏与 IBOutlet UIToolbar 类变量建立了必要的链接。当我运行该应用程序时,工具栏没有出现。我错过了什么吗?我还为类变量创建了 @property 和 @syntesize。
谢谢。
I have create a nib that is a UIViewController and have drag a UIToolbar to my interface using the nib. I have make the necessary link of the toolbar in nib to the IBOutlet UIToolbar class variable. When I run the app, the toolbar did not appear. Am I missing out something? I have also create the @property and @syntesize for the class variable.
Thanks.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我在 iPad 上也遇到了类似的问题。
默认情况下,使用界面生成器添加的工具栏位于视图的底部(在我的例子中它根本没有出现)。
当我更改工具栏位置(使用“大小/自动调整大小”检查器)以粘贴在我想要的顶部时,工具栏出现了。
I had a similar problem on the iPad.
By default the toolbar added with the interface builder is positioned at the bottom of the view (and in my case it didn't appear at all).
When I changed the toolbar position (using the Size/Autosizing inspector) to stick at the top, where I wanted it, the toolbar appeared.