美文网首页
objc_getAssociatedObject, objc_s

objc_getAssociatedObject, objc_s

作者: 雨幕孤星 | 来源:发表于2018-03-05 11:02 被阅读0次

    1.使用AssociatedObject必须导入头文件<objc/runtime.h>.
    随便写一个列子,假如页面上有一个Button和一个Label,点击按钮获取Label上的文字.

    - (void)viewDidLoad {
    [super viewDidLoad];
    // Do any additional setup after loading the view.
    self.view.backgroundColor = [UIColor whiteColor];
    
    UIButton *button = [UIButton buttonWithType:UIButtonTypeCustom];
    [button addTarget:self action:@selector(buttonAction:) forControlEvents:UIControlEventTouchUpInside];
    [button setBackgroundColor:[UIColor redColor]];
    [button setTitle:@"button" forState:UIControlStateNormal];
    button.frame = CGRectMake(100, 100, 100, 50);
    [self.view addSubview:button];
    
    UILabel *label = [[UILabel alloc] initWithFrame:CGRectMake(100, 200, 100, 50)];
    label.backgroundColor = [UIColor greenColor];
    label.text = @"label";
    [self.view addSubview:label];
    
    objc_setAssociatedObject(button, @"title", label, OBJC_ASSOCIATION_RETAIN);
    }
    - (void)buttonAction:(UIButton *)sender {
      UILabel *label = objc_getAssociatedObject(sender, @"title");
      NSLog(@"%@", label.text);
    }
    

    1.第一个参数: <code>id object</code> : 需要传入的是 : 对象的主分支
    2.第二个参数: <code>const void *key</code> : 是一个 static 类型的 关键字,这里根据开发者自身来定义就行(尽量写的有根据一点,避免以后忘记是干啥用的)
    3.第三个参数: <code>id value</code> : 传入的是: 对象的子分支
    4.第四个参数: <code>objc_AssociationPolicy policy</code> :是当前关联对象的类型 strong,weak,copy (枚举类型:开发者可以点进去看)

    相关文章

      网友评论

          本文标题:objc_getAssociatedObject, objc_s

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