12-クラスの本質、クラスの起動プロセス(load,initialize)、SELタイプ
2247 ワード
クラスの本質
isa
がある.クラスの開始プロセス
load
メソッド:load
メソッドは、現在のクラスがメモリにロードするときに呼び出され、initialize
メソッド:initialize
メソッドは、プログラム全体の実行中に1回のみ呼び出され、このクラスは何回使用しても1回だけ呼び出されますinitialize
あるクラスを一度に初期化するためのinitialize
とload
と同様に、継承関係がある場合は、親クラスのinitializeを呼び出し、子クラスのinitialize SELタイプ
三つの使い方
SEL sel = @selector(setAge:);
Person *p = [Person new];
// p - setAge:
// P setAge: YES
// P setAge: NO
BOOL flag = [p respondsToSelector:sel];
NSLog(@"flag = %i", flag);
SEL sel = @selector(demo);
Person *p = [Person new];
// p sel
[p performSelector:sel];
SEL sel1 = @selector(signalWithNumber:);
// withObject:
// : performSelector , ,
// , withObject
[p performSelector:sel1 withObject:@"13838383438"];
SEL sel2 = @selector(setAge:);
[p performSelector:sel2 withObject:@(5)];
NSLog(@"age = %i", p.age);
// :performSelector 2
SEL sel3 = @selector(sendMessageWithNumber:andContent:);
[p performSelector:sel3 withObject:@"138383438" withObject:@"abcdefg"];
Car *c = [Car new];
SEL sel = @selector(run);
Person *p = [Person new];
[p makeObject:c andSel:sel];// , c run