是否可以访问和操作相应viewcontroller中界面构建器中定义的工具栏(参见图片底部)?
答案 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
现在一切都恢复正常了。