在 Xcode 中使用 TabController 模板 - 如何将对象链接回 ViewController 而不是 TabController?
IOS/IB 问题 - 为了澄清我的问题,我将使用以下示例。我使用 TabController 模板创建了一个新项目。然后,我在第一个 ViewController 的标头中创建“IBOutlet UILabel *mylabel”声明。我可以看到“mylabel”显示在 IB 的检查器中 TabController 的“连接”列表中,但“mylabel”没有显示在 IB 的 FirstViewController 的“连接”列表中。缺少什么。
IOS/IB Question - To clarify my question I'll use the following example. I created a new project using the TabController template. I then create the "IBOutlet UILabel *mylabel" declaration in the header of my first ViewController. I can see the "mylabel" show up in the TabController's "Connections" list in IB's inspector, but the "mylabel" doesn't show up in the FirstViewController's "Connections" list in IB. What's missing.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我刚刚使用 iOS sdk 4.2 在 Xcode 中创建了一个新的空标签栏应用程序,添加了 IBOutlet UILabel *myLabel;到 FirstViewController.h,构建应用程序,然后打开 MainWindow.xib,转到连接检查器 (CMD-2),单击选项卡栏对象,但我没有看到 myLabel,单击 FirstViewController ,我看到 myLabel 正如您所期望的那样。
有时我发现我需要退出 IB,构建项目,然后重新启动 IB 才能使 IBOutlet 正确显示在 IB 中。
I just created a new empty tab bar app in Xcode using iOS sdk 4.2, added IBOutlet UILabel *myLabel; to FirstViewController.h, built the app, then opened MainWindow.xib, went to the connections inspector (CMD-2), clicked on the tabbar object, and I don't see myLabel, click on FirstViewController, and I see myLabel like you'd expect.
Sometimes I find that I need to exit IB, buid the project, and restart IB in order for IBOutlets to properly show up in IB.