SEL

作者: DVWang | 来源:发表于2017-09-08 15:08 被阅读0次

    //选择器 是一个类 但是使用时看不到* 可以指向任意方法 实现动态的调用方法 在类与类之间 可以作为参数传递 实现方法的跨类动态调用
    Ape * ape = [[Ape alloc]init];
    //1.指向无参数的对象方法 “绑定”print方法
    SEL sel = @selector(print);
    //[ape print];
    //选择器的使用,是绑定一些方法,方法本身也是存储空间,选择器也是有空间的,在使用结束后,有可能这些空间不能及时的“回收”,造成内存的泄露因此会产生警告
    [ape performSelector:sel];
    //2.指向有一个参数的对象方法
    SEL sel1 = @selector(printWithName:);
    //需要传递一个SEL参数 且绑定方法需要一个参数
    [ape performSelector:sel1 withObject:@"elean"];
    //PS:传递的参数只能是类的对象 基本数据不可以
    //解决方案 传递字符串 再转换基本数据类型 使用NSNumber 再转换
    //3.指向有两个参数的对象方法
    SEL sel2 = @selector(printWithAge:andFaceValue:);
    [ape performSelector:sel2 withObject:@"18" withObject:@"100"];
    //4.选择器没有指向两个以上参数的对象方法
    //解决方案 将多个参数存入数组或者字典 将数组或字典作为参数传递 或者创建一个模型类 将参数都抽象为该类属性 通过创建对象 将属性赋值 再把对象作为参数传递
    NSDictionary * dic = @{@"name":@"elean", @"age":@"18", @"faceValue":@"100"};
    [ape printWithName:@"elean" andAge:18 andFaceValue:100];
    SEL sel4 = @selector(printApeInfoWithDic:);
    [ape performSelector:sel4 withObject:dic ];
    sel4 = @selector(printApeInfoWithModel:);
    ApeModel * model = [[ApeModel alloc]init];
    model.name = @"elean";
    model.age = 18;
    model.faceValue = 100;
    //固定用法 将选择器调用的语句在中间书写 相当于告诉系统,我是没有内存泄露的,你不要再警告了 达到去除警告作用
    //PS:实际就是欺骗行为 内存泄露还是会存在 所以这就是个 然并luan

    pragma clang diagnostic push

    pragma clang diagnostic ignored "-Warc-performSelector-leaks"

    [ape performSelector:sel4 withObject:model];

    pragma clang diagnostic pop

    相关文章

      网友评论

        本文标题:SEL

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