是否可以为 iPhone 项目创建一个支持 IB 中子节点的 NSObject 子类?
我正在为 iPhone 制作一个自定义 UI 元素类。 在带有层次结构的 Interface Builder 上编辑我的类会很酷。
我的一些类是像 UINavigationController 这样的管理类,但它们不是其中之一,是 NSObject 的子类。
当然,我可以在IB上放置一个NSObject实例,但它不能有子节点。 有没有办法将子节点添加到 NSObject 的子类中?
I'm making a custom UI element class for iPhone.
It'll cool to edit my class on Interface Builder with hierarchy.
Some of my class is management class like UINavigationController, but they're not one of them, subclassed from NSObject.
Of course, I can place a NSObject instance on IB, but it cannot have a child node.
Is there a way to enable adding child node to subclass of NSObject?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以为 Interface Builder 制作一个插件。请参阅此处,或者更多具体来说, 这里。
Matt Gallagher 在此处也有一个很好的教程。
现在,这些链接都与 Mac 相关。老实说,我不确定同样的原则是否适用于 iPhone。
You can make a plug-in for Interface Builder. See here, or, more specifically, here.
Matt Gallagher also has a nice tutorial here.
Now, these links all pertain to Mac. I honestly am not sure if the same principles apply to iPhone.