&tag(Objective-C/規約);
@property(nonatomic, retain) UITextView *textView;
-(void)viewDidLoad {
self.textView = [[UITextView alloc] initWithFrame:[self.view bounds]];
}
-(void)dealloc {
self.textView = nil;
}
@interface Person () @property (nonatomic, retain) NSString* name; @end