需要在NIB/XIB中体现的自定义属性
我正在创建一个具有各种属性和枚举的 UITableView 自定义类,例如 CustomTableStyle (表视图样式属性)和 UITableViewGrouped1、UITableViewGroup2(两者都是自定义样式枚举)。
现在我希望当我在(表视图标识 - 类)下的笔尖中分配此类时,我希望自定义属性必须反映在表视图属性下。
如果可能的话,在表视图属性部分下会有一个名为“CustomTableStyle”的属性,当我选择它时,我将获得选项 UITableViewGrouped1、UITableViewGroup2。
这可能吗?
I am creating a custom class of UITableView with various property and enum such as CustomTableStyle (Table View Style property) and UITableViewGrouped1,UITableViewGroup2(both are custom style enum).
Now i want that when i assign this class in nib under (Table View Identity - Class) then i want that the custom property must be reflected under Table View Attribute.
if it is possible then under Table View Attribute Section there will an attribute named "CustomTableStyle" and when i select it i will get option UITableViewGrouped1,UITableViewGroup2.
IS this possible?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
不,不是。 Interface Builder 从未支持 iOS 自定义类的 IB 插件(现在在 Xcode 4 中,它也不支持 OS X)。您必须在代码中设置这些自定义属性。
No, it isn't. Interface Builder has never supported IB plugins for custom classes for iOS (and now in Xcode 4, it doesn't support them for OS X, neither). You will have to set these custom properties in code.