KVO
土鳖不土
sporting and coding
展开
-
KVO(1)
#import "ViewController.h"@interface ViewController () @property(nonatomic, strong)UIButton *button; @end@implementation ViewController- (void)viewDidLoad { [super viewDidLoad]; self.button = [原创 2015-06-30 13:04:58 · 592 阅读 · 0 评论 -
KVO(2)
@interface Walker : NSObject { NSInteger _age; NSString *_name; } @property (nonatomic) NSInteger age; @property (nonatomic, retain) NSString *name; - (id)initWithName:(NSString *)name age:(NSI原创 2015-06-30 19:31:41 · 478 阅读 · 0 评论