标签:view on class 方法 string ie as 基础
首先创建一个类 并且定义一个变量str:
@property(nonatomic,copy) NSString *str;
如果这是同时实现get 和set 方法的话 就会报错 :
找不到"_str"
这时候必需 要在 interface中写
@interface CQViewController()
{
NSString *_str;
}即可
关于get 和set方法的基础知识,布布扣,bubuko.com
标签:view on class 方法 string ie as 基础
原文地址:http://www.cnblogs.com/pprgra56/p/3894256.html