XCode4 使用界面生成器声明变量
这是使用 viewController 实现/连接视图的一般方法(如下)。
- 在视图控制器的 .h 文件中声明 IBOutlet 变量。
- 打开视图控制器的 .xib。
- 点击文件所有者和然后进行相应的连接。
我想以反向模式(对于 XCode4)进行操作,
- 我将使用 Interface builder(XCode 4)给出一个名称
- ,然后保存 .xib 文件。
- 该视图控制器的 .h 文件将自动更新为 Outlet Variables
这可能吗?如何?
It is the general way of implementing/connecting views using viewControllers ( as follows ).
- Declare IBOutlet variables in .h file of your view controller.
- Open .xib of your view controller.
- tap on Files Owner & then connect accordingly.
I want to do in reverse mode ( For XCode4 )
- I will give a name using Interface builder ( XCode 4 )
- Then save .xib file.
- .h file of that view controller will be automatically updated with Outlet Variables
Is it possible? How?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果您想通过嵌入式 Interface Builder 声明变量,您需要在助手中打开头文件。您会在右上角找到它。应该是这三个按钮的中间按钮...
接下来,选择您的 Hader 文件(如果尚未打开),然后将您的 Outlet 连接到头文件中您希望的位置。
If you want do declare your variables through the embedded Interface Builder you need to open your header file in the assistant. You'll find it in the upper right corner. Should be the middle button of those three...
Next you select your Hader-File if it's not opened yet and then connect your Outlets to the place you wish in the Header-File.