访问界面构建器中创建的工具栏

时间:2013-08-06 14:20:23

标签: ios cocoa-touch interface-builder xib

enter image description here

是否可以访问和操作相应viewcontroller中界面构建器中定义的工具栏(参见图片底部)

2 个答案:

答案 0 :(得分:1)

模拟度量标准为标题中的状态,它们仅显示在界面构建器中。如果您的视图包含在UInavigationController中,则可以看到它的外观。

答案 1 :(得分:0)

您可以设置工具栏 IBOutlet ,然后您就可以访问和操作

@property (weak, nonatomic) IBOutlet UIToolbar     *toolBar;

如何连接?

我在这个帖子中做了一些事情,我终于取得了成功。

在“界面”构建器(不是xcode)

File->Reload All Class Files
File->Read Class Files (select MyClass.h)
Reconnect File's Owner by
a. Setting the Class to "MyClass"
b. Reconnecting the View to the File's Owner's View

现在一切都恢复正常了。