属性与成员变量

成员变量是类内部的变量, 外部类不能直接访问该变量! 

@interface MyViewController :UIViewController {

NSString *name;

}

@end


属性一般是

你可能感兴趣的:(属性与成员变量)