KVO

作者: BinaryRo | 来源:发表于2016-08-02 18:56 被阅读3次

import "ViewController.h"

import "tempView.h"

@interface ViewController ()

@property (nonatomic,strong) tempView *tempView;

@end

@implementation ViewController

  • (tempView *)tempView
    {
    if (!_tempView) {
    _tempView = [[tempView alloc] initWithFrame:CGRectMake(100, 100, 100, 100)];

      [_tempView addObserver:self forKeyPath:@"name" options:NSKeyValueObservingOptionNew context:nil];
      
      [self.view addSubview:_tempView];
    

    }
    return _tempView;
    }

  • (void)viewDidLoad {
    [super viewDidLoad];

    [self tempView];
    }

  • (void)touchesBegan:(NSSet<UITouch *> *)touches withEvent:(UIEvent *)event
    {
    self.tempView.name = @"2345";
    }

-(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

  • (instancetype)initWithFrame:(CGRect)frame
    {
    if (self = [super initWithFrame:frame]) {

      UIView *view = [[UIView alloc] initWithFrame:self.bounds];
      view.backgroundColor = [UIColor redColor];
      [self addSubview:view];
      self.name = @"123";
      self.tempView = view;
    

    }
    return self;
    }

@end

相关文章

  • iOS原理篇(一): KVO实现原理

    KVO实现原理 什么是 KVO KVO 基本使用 KVO 的本质 总结 一 、 什么是KVO KVO(Key-Va...

  • 04. KVO使用,原理,本质

    问题 KVO日常使用 KVO原理(KVO本质是什么) 如何手动触发KVO 直接修改成员变量会触发KVO吗 KVO图...

  • 20.iOS底层学习之KVO 原理

    本篇提纲1、KVO简介;2、KVO的使用;3、KVO的一些细节;4、KVO的底层原理; KVO简介 KVO全称Ke...

  • 深入理解KVO

    iOS | KVO | Objective-C KVO的本质是什么,如何手动触发KVO? 1.什么是KVO KVO...

  • OC语法:KVO的底层实现

    一、KVO是什么二、怎么使用KVO三、KVO的底层实现四、KVO常见面试题 一、KVO是什么 KVO全称Key-V...

  • KVO基本使用

    分三部分解释KVO一.KVO基本使用二.KVO原理解析三.自定义实现KVO 一、KVO基本使用 使用KVO,能够非...

  • KVO 解析

    KVO解析(一) —— 基本了解KVO解析(二) —— 一个简单的KVO实现KVO解析(三) —— KVO合规性K...

  • KVO

    目录 1. KVO的使用1.1 KVO基本使用方法1.2 KVO手动触发模式1.3 KVO属性依赖1.4 KVO容...

  • OC语言之KVO与KVC

    KVO 什么是KVO? KVO 是 Key-value observing(键值观察)的缩写。 KVO是Objec...

  • 可能碰到的iOS笔试面试题(7)--KVO-KVC

    KVC-KVO KVC的底层实现? KVO的底层实现? 什么是KVO和KVC? KVO的缺陷? KVO是一个对象能...

网友评论

    本文标题:KVO

    本文链接:https://www.haomeiwen.com/subject/fuwojttx.html