iOS 中的 Interface Builder 中没有 IBOutlets
我已经在头文件中声明了 IBOutlet,但是当我打开 XIB 文件并单击视图(我的类是采用 TableViewDelegate 的 UIViewController 子类)时,我只看到引用的出口而没有 IBOutlet。请指教。
I have declared IBOutlets in the header file but when I open the XIB file and click on the View(my class is a UIViewController sublass adopting TableViewDelegate), I see only the referencing outlets and no IBOutlet. Please advise.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
NamRatha,转到 Nib 文件中的文件所有者文件,现在转到检查器中的最后一个选项卡。在班级身份中,从列表中选择您的班级。您现在应该能够看到您的 IBOutlet。
NamRatha, go to File's Owner file in your Nib file, now go to the last tab in the inspector. In the class Identity choose from the list your class. You should be able to see now your IBOutlets.
您需要在控制器引用上设置类,而不是视图。
You need to set your class on the controller reference, not the view.