ios中的KVC和KVO

             最近研究了一下子KVC和KVO,KVC:即Key-Value-Coding 而KVO:即Key-Value-Observer

      KVC是针对NSObject的子类,因为它的实现是由于其括展类NSObject(NSKeyValueCoding),实现了

   - (void)setValue:(id)value forKey:(NSString *)key;   

    - (id)valueForKey:(NSString *)key;这两个方法的原因。

  还有一个说清楚点就是上面的两个方法不光针对属性,对于类中的对象型变量同样适用。

  而KVO也差不多,它是由于NSObject(NSKeyValueObserverRegistration)和NSObject(NSKeyValueObserving)的原因,用它可以实现回调功能下面是我写的,下面的例子我将其融合在一起

  

  

#import "BIDViewController.h"
#import "FirstViewController.h"
@interface BIDViewController ()
{
    FirstViewController* first;
    
}
@end

@implementation BIDViewController

- (void)viewDidLoad
{
    [super viewDidLoad];
	// Do any additional setup after loading the view, typically from a nib.
    first=[[FirstViewController alloc] init];
    //观察FirstViewController中的变量name
    [first addObserver:self forKeyPath:@"name" options:NSKeyValueObservingOptionNew|NSKeyValueObservingOptionOld context:NULL];
}

- (void)didReceiveMemoryWarning
{
    [super didReceiveMemoryWarning];
    // Dispose of any resources that can be recreated.
}

- (IBAction)clicked:(UIButton *)sender {
    [self presentViewController:first animated:YES completion:^{}];
}
//如果FirstViewController中的变量name的值变化执行下面
-(void)observeValueForKeyPath:(NSString *)keyPath ofObject:(id)object change:(NSDictionary *)change context:(void *)context
{
    if([keyPath isEqualToString:@"name"])
    {
        NSLog(@"observer name is %@",[first valueForKey:@"name"]);
    }
}

-(void)dealloc
{
    [self removeObserver:first forKeyPath:@"name"];
    [first release];
    [super dealloc];
}
@end

#import <UIKit/UIKit.h>

@interface FirstViewController : UIViewController
{
    NSString* name;
}
- (IBAction)clicked:(id)sender;
- (IBAction)otherClicked:(id)sender;

@end


#import "FirstViewController.h"

@interface FirstViewController ()
{
}
@end

@implementation FirstViewController
- (id)initWithNibName:(NSString *)nibNameOrNil bundle:(NSBundle *)nibBundleOrNil
{
    self = [super initWithNibName:nibNameOrNil bundle:nibBundleOrNil];
    if (self) {
        // Custom initialization
    }
    return self;
}

- (void)viewDidLoad
{
    [super viewDidLoad];
    // Do any additional setup after loading the view from its nib.
}

- (void)didReceiveMemoryWarning
{
    [super didReceiveMemoryWarning];
    // Dispose of any resources that can be recreated.
}

- (IBAction)clicked:(id)sender {
    //当为name设值时会执行BIDViewController中的观察方法,就可进行回调了,不过其范围是比不上真正意义上的回调
    [self setValue:@"chenliang" forKey:@"name"];

//    [self dismissModalViewControllerAnimated:YES];
    
    
}

- (IBAction)otherClicked:(id)sender {
    
    NSLog(@"firstVC name is %@",[self valueForKey:@"name"]);
}
@end



好了就说这么多有什么问题请多多指教


  

   

          

  • 0
    点赞
  • 5
    收藏
    觉得还不错? 一键收藏
  • 1
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值