类变量 成员变量

在变量定义区定义的变量叫做成员变量(全局变量)
在方法体重定义的变量叫局部变量

@interface MyViewController :UIViewControlle {     UIButton *myButton; 实例变量 } @property (nonatomic, retain) UIButton *myButton; 属性 编译器会自动为你生成以下划线开头的实例变量_myButton @end

你可能感兴趣的:(类变量 成员变量)