例如,如果你制作了UIButton,它将会'buttonwithType:'然后在你输入时给你一个选项列表。
如何使用我自己的类型为单个对象添加到该列表,如何知道它是否为我的对象的有效类型?
答案 0 :(得分:4)
UIButtonType
是typedef
ed enum
:
typedef enum {
UIButtonTypeCustom = 0,
UIButtonTypeRoundedRect,
UIButtonTypeDetailDisclosure,
UIButtonTypeInfoLight,
UIButtonTypeInfoDark,
UIButtonTypeContactAdd,
} UIButtonType;
为你的类的某些属性创建一个类似的枚举应该能够很好地理解Xcode;假设导入了适当的标题。