制作我自己的课..如何添加类型建议?

时间:2011-05-17 14:59:59

标签: iphone objective-c

例如,如果你制作了UIButton,它将会'buttonwithType:'然后在你输入时给你一个选项列表。

如何使用我自己的类型为单个对象添加到该列表,如何知道它是否为我的对象的有效类型?

1 个答案:

答案 0 :(得分:4)

UIButtonTypetypedef ed enum

typedef enum {
   UIButtonTypeCustom = 0,
   UIButtonTypeRoundedRect,
   UIButtonTypeDetailDisclosure,
   UIButtonTypeInfoLight,
   UIButtonTypeInfoDark,
   UIButtonTypeContactAdd,
} UIButtonType;

为你的类的某些属性创建一个类似的枚举应该能够很好地理解Xcode;假设导入了适当的标题。