不知道能不能實現自動添加實例變量?好像以前在哪兒看過現在不用手動加了。請知道的人教教我,謝謝。
.h:
@interface Class : UIView
@property (nonatomic, strong) NSString *testString;
@end
.m:
@interface Class () {
NSString *_testString;
}
@end
@implementation Class
@synthesize testString = _testString;
解決方法:
h:
@interface Class : UIView
@property (nonatomic, strong) NSString *testString;
@end
.m:
@implementation Class
@end