如何在 Interface Builder 中添加自定义对象?
我正在使用 XCode4 并使用很棒的 TTTAttributedLabel 类。我创建了一个 NSObject 并将其类设置为 TTTAttributedLabel。我似乎无法将其添加到我的视图中。我怎样才能这样做呢?
I'm using XCode4 and using the awesome TTTAttributedLabel class. I've created an NSObject and set its class to TTTAttributedLabel. I can't seem to add this to my View. How can I do so?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果您的类是标准控件的子类,则您可以在右侧面板中编辑该类。以下是更改 UILabel 类的方法:
除此之外,Xcode 4 放弃了对 IB 的支持插件。
If your class subclasses a standard control, then you can edit the class in the right panel. Here's how you'd change the class of a UILabel:
Other than that, Xcode 4 dropped support for IB plugins.