OC知识

KVO

2016-08-02  本文已影响3人  BinaryRo

import "ViewController.h"

import "tempView.h"

@interface ViewController ()

@property (nonatomic,strong) tempView *tempView;

@end

@implementation ViewController

-(void)observeValueForKeyPath:(NSString *)keyPath ofObject:(id)object change:(NSDictionary *)change context:(void *)context

{
//第一个参数就是观察的属性名
//第二个参数是观察对象
//第三个参数是改变的值
//第四个参数是说明
NSLog(@"str 变了");
NSLog(@"%@",keyPath);
if([keyPath isEqualToString:@"name"])//观察的str属性改变了 记准了哈!!!是属性名字!!!不是属性的值,,所以会进来

{
    NSLog(@"%@",change[@"new"]);
    self.view.backgroundColor = [UIColor colorWithRed:arc4random()%255/255.0 green:arc4random()%255/255.0 blue:arc4random()%255/255.0 alpha:arc4random()%255/255.0];
    
}
else{
    //该干嘛干嘛
}

}

tempView

import <UIKit/UIKit.h>

@interface tempView : UIView

@property (nonatomic,copy) NSString *name;

@end

import "tempView.h"

@interface tempView ()

@property (nonatomic,weak) UIView *tempView;

@end

@implementation tempView

@end

上一篇 下一篇

猜你喜欢

热点阅读