IOS-OC-选择器1221

  • description 方法
#import <Foundation/Foundation.h>
#import "Dog.h"

int main(int argc, const char * argv[]) {
    @autoreleasepool {
       
        Dog *dog = [[Dog alloc] init];
        dog.name = @"小黄";
        dog.color = @"黄色";
        NSLog(@"%@",dog);
    }
    return 0;
}
#import <Foundation/Foundation.h>

@interface Dog : NSObject
@property NSString *name;
@property NSString *color;
@end

#import "Dog.h"

@implementation Dog
- (NSString *)description
{
    NSString *str = [NSString stringWithFormat:@"这是一条名字是%@的狗,他得颜色是%@",_name,_color];
    return str;
}
@end

【选择器】

一.认识选择器(Selector)
【注】选择器是一个变量类型
选择器的作用
1:选择支持了IOS开发中,控件的时间相应机制。
2:选择器可以令一个方法实现不同功能,增加代码复用度。
3:用于方法的回调。
SEL
【注】SEL的变量装消息 类似于函数指针
【见选择器Demo】

选择器Demo

#import <Foundation/Foundation.h>
#import "Dog.h"

int main(int argc, const char * argv[]) {
    @autoreleasepool {
        Dog *dog = [[Dog alloc] init];
        dog.age = 10;
        dog.name = @"旺财";
        
        // [dog run];
        
        // int a = 10;
        // SEL类型的创建
        SEL sel = @selector(run);
        
        // 使用SEL类型
//在ARC(自动内存管理)的条件下,使用选择器,很可能会报警
//可照如下方式去除报警
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Warc-performSelector-leaks"
        
        /*调用方法写这里*/
        [dog performSelector:sel];

        
        // SEL 类型和字符串的转化
        NSString *selStr = NSStringFromSelector(sel);
        // 字符串转换成SEL类型
        SEL selOne = NSSelectorFromString(selStr);
        
        // SEL类型的调用方式
        // 无参
        [dog performSelector:selOne];
        
        // 一个参数的
        SEL selSleep = @selector(sleeWith:);
        [dog performSelector:selSleep withObject:@"10"];
//        [dog sleeWith:@"10"];
        // SEL 最多传递2个参数
        SEL selEat = @selector(eatPepleAtLittleTime:atBigTime:);
        [dog performSelector:selEat withObject:@"8" withObject:@"16"];
        
        // 调用我们的方法在某个线程,是否立马执行
        //[dog performSelector:<#(SEL)#> onThread:<#(NSThread *)#> withObject:<#(id)#> waitUntilDone:<#(BOOL)#>];
        
        // 多长时间之后执行我们的方法
        // [dog performSelector:selSleep withObject:@"20" afterDelay:5];
        
        // 在后台执行
        // [dog performSelectorInBackground:selSleep withObject:@"10"];
        
        // 在主线程执行
        // [dog performSelectorOnMainThread:<#(SEL)#> withObject:<#(id)#> waitUntilDone:<#(BOOL)#>];
        
#pragma clang diagnostic pop
    }
    return 0;
}
#import <Foundation/Foundation.h>

@interface Dog : NSObject

// 年龄
@property int age;

// 名字
@property NSString *name;

//
- (void)run;
- (void)eat;

// 狗要睡的时间
- (void)sleeWith:(NSString* )time;

- (void)eatPepleAtLittleTime:(NSString *)littleCount atBigTime:(NSString *)bigCount;
@end
#import "Dog.h"

@implementation Dog

- (void)run
{
    NSLog(@"狗看见坏人,吓跑了");
}

- (void)eat
{
    NSLog(@"狗把坏人吃了,拉肚子了");
}

- (void)sleeWith:(NSString *)time
{
    int t = [time intValue];
    NSLog(@"这条蠢🐶睡了%d年",t);
}

- (void)eatPepleAtLittleTime:(NSString *)littleCount atBigTime:(NSString *)bigCount
{
    NSLog(@"这条斗牛犬小时候吃了%@个人,长大了被%@个人吃了",littleCount, bigCount);
}
@end
SEL sel = @selector(crash);

[man performSelector:sel];

[man performSelector:@selector(setName:) withObject:@"Tom"];

//在ARC(自动内存管理)的条件下,使用选择器,很可能会报警
//可照如下方式去除报警

pragma clang diagnostic push

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

/调用方法写这里/

pragma clang diagnostic pop

SEL sel = @selector(run);
// 这个方法用于编译时就能确定调用的方法

SEL sel = NSSelectorFromString(@"run");
// 这个方法用于运行时确定调用的方法

控件的事件机制
// 见选择器Demo_控件的事件机制

给可变数组添加方法(使用类别),可以添加任何对象,按照对象的某一个属性,排序
// 见选择器Demo_数组排序

#import "NSMutableArray+Sort.h"
#import "Lavra.h"
#import <Foundation/Foundation.h>

//给可变数组添加方法,可以添加任何对象,按照对象的某一个属性,排序

int main(int argc, const char * argv[])
{

    @autoreleasepool {
        
     // 创建虫子
        NSMutableArray *arrayM = [[NSMutableArray alloc] init];
        
        int i = 0;
        while (i++ < 5) {
            //lavra地址不一样
            Lavra *lavra = [[Lavra alloc] init];
            // arc4random() % 10 从0-9中随机出来一个数
            lavra.length = arc4random() % 10 +5;//随机数  arc4random()%10表示随机从10取出一个数
           // arc4random()%10 + 5表示5个数
            [arrayM addObject:lavra];
        }
        
    // 使用可变数组方法排序
        [arrayM sortWithSelector:@selector(isLongerThanLavra:)];
        
        NSLog(@"%@",arrayM);
        
    }
    return 0;
}
#import <Foundation/Foundation.h>

@interface NSMutableArray (Sort)

- (void)sortWithSelector:(SEL)selector;

@end
#import "NSMutableArray+Sort.h"
#import "Lavra.h"

@implementation NSMutableArray (Sort)
- (void)sortWithSelector:(SEL)selector
{
    for (int i = 0 ; i < self.count; i ++) {
        for (int j = 0; j < self.count - i -1; j ++){
            
            
 //           Lavra *lavraj  = self[j];
//            Lavra *lavraj1  = self[j + 1];
//            // [lavraj isLongerThanLavra:lavraj1]
            
            if ([self[j] performSelector:selector withObject:self[j +1]]) {
                
                [self exchangeObjectAtIndex:j withObjectAtIndex:j +1];
            }
        }
    }
}
@end

#import <Foundation/Foundation.h>

@interface Lavra : NSObject

// 虫子长度
@property NSUInteger length;

// 自己的长度与虫子的长度的对比
- (BOOL)isLongerThanLavra:(Lavra *)lavra;

@end
#import "Lavra.h"

@implementation Lavra
- (BOOL)isLongerThanLavra:(Lavra *)lavra
{
    return self.length > lavra.length;
}

- (NSString *)description//这是父类的方法,已经存在,自己又继承父类,所以不用什么这个方法,可以使用,现在的这个方法叫重写
{
//再使用NSlog打印这个类的对象,就会打印这句话。
return [NSString stringWithFormat:@"虫子的长度是%ld",self.length];
}
@end

方法二:简单方法

#import <Foundation/Foundation.h>
#import "Dog.h"
#import "NSMutableArray+Sort.h"

int main(int argc, const char * argv[]) {
    @autoreleasepool {
        Dog *dogOne = [[Dog alloc] init];
        dogOne.age = 1;
        
        Dog *dogTwo = [[Dog alloc] init];
        dogTwo.age = 2;
        
        Dog *dogThree = [[Dog alloc] init];
        dogThree.age = 3;
        
        // 把对象放进数组
        NSMutableArray *arrayM = [[NSMutableArray alloc] initWithObjects:dogOne,dogTwo,dogThree, nil];
        
        // 排序
        [arrayM sortArray];
    }
    return 0;
}
#import <Foundation/Foundation.h>

@interface NSMutableArray (Sort)
- (void) sortArray;
@end
#import "NSMutableArray+Sort.h"
#import "Dog.h"

@implementation NSMutableArray (Sort)
- (void)sortArray
{
    for (int i = 0; i < self.count - 1; i ++) {
      
        for (int j = i + 1; j < self.count ; j ++) {
             Dog *dogI = self[i];
            Dog *dogJ = self[j];
            if (dogI.age > dogJ.age) {
                [self exchangeObjectAtIndex:i withObjectAtIndex:j];
            }
        }
        
    }
    NSLog(@"%@",self);
}
@end

SEL来进行加减乘除

#import <Foundation/Foundation.h>
#import "Student.h"
#import "Teacher.h"
#import "Calculator.h"

int main(int argc, const char * argv[]) {
    @autoreleasepool {
        
       // 1.获取计算器对象
        Calculator *cal = [[Calculator alloc] init];
        
        // 2.获取方法名
        NSArray *array = @[@"plusA:withB:",@"minusA:withB:",@"multipA:withB:",@"divideA:withB:"];
        NSString *plusStr = array[0];
        
        // 3.把NSString 转成SEL
        
//        SEL selOne = @selector(plusStr);//@selector(方法的名字,不能直接传一个字符串过去)
        SEL sel = NSSelectorFromString(plusStr);
        
        // 4.调用方法
        NSInteger result = [cal compuA:@"100" withB:@"150" useSymbol:sel];
        NSLog(@"%ld",result);
        
    }
    return 0;
}
#import <Foundation/Foundation.h>

@interface Calculator : NSObject

// 传入一个方法 计算a、b的结果
- (NSInteger )compuA:(NSString *)a withB:(NSString *)b useSymbol:(SEL)symbol;
@end
#import "Calculator.h"

@implementation Calculator
- (NSInteger)compuA:(NSString *)a withB:(NSString *)b useSymbol:(SEL)symbol
{
    // 谁拥有symbol这个方法谁去调用performSelector:
    NSString *result = [self performSelector:symbol withObject:a withObject:b];
    return [result integerValue];
}

// 加
- (NSString *)plusA:(NSString *)a withB:(NSString *)b
{
    return [NSString stringWithFormat:@"%ld",[a integerValue] + [b integerValue]];
}

// 减法
- (NSString *)minusA:(NSString *)a withB:(NSString *)b
{
    return [NSString stringWithFormat:@"%ld",[a integerValue] - [b integerValue]];
}

// 乘法
- (NSString *)multipA:(NSString *)a withB:(NSString *)b
{
    return [NSString stringWithFormat:@"%ld",[a integerValue] * [b integerValue]];
}

// 除法
- (NSString *)divideA:(NSString *)a withB:(NSString *)b
{
    return [NSString stringWithFormat:@"%ld",[a integerValue] / [b integerValue]];
}

@end

作业:
1.编写一个程序,创建一只猫,一只狗。每个类都有同样的一个方法,从终端读取方法名,让对象执行方法。
2.理解择器Demo_数组排序

// 见作业

Class
【注】Class也是类型,装类的类型。
//获取一个类的类型
Class cls = [Dog class];
//NSObject自带类方法class,将当前类转成Class类型。

Class cls = [Dog class];

//通过类的类型实例化的对象是id类型
id dog = [[cls alloc] init];
//Class变量,也能创建对象。

//强转换
Dog *d = (Dog *)dog;

BOOL ret = [dog isKindOfClass:[Dog class]];
//判断一个对象是否属于一个类

//把字符串准换成类
Class cls2 = NSClassFromString(@"Dog");
//Class变量也可以在运行时(runtime)赋值。

// Class一些方法的使用

最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 215,463评论 6 497
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 91,868评论 3 391
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 161,213评论 0 351
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 57,666评论 1 290
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 66,759评论 6 388
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 50,725评论 1 294
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 39,716评论 3 415
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 38,484评论 0 270
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 44,928评论 1 307
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 37,233评论 2 331
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 39,393评论 1 345
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 35,073评论 5 340
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 40,718评论 3 324
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 31,308评论 0 21
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 32,538评论 1 268
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 47,338评论 2 368
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 44,260评论 2 352

推荐阅读更多精彩内容