16
14

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

Objective-Cで動的にクラス定義/メッセージ送信

Posted at

objc/runtime.hをフル盛りで使うとこんなことができる。

- (void)testDynamicClassDefinition
{    
	// コンパイル時に存在しないクラスをallocateする
    Class dynamicClass = objc_allocateClassPair([NSObject class], "DynamicClass", 0);
	// コンパイル時に存在しないクラスに存在しないメソッドを実装する
    SEL dynamicSelector = NSSelectorFromString(@"whoami");
    IMP dynamicImp = imp_implementationWithBlock(^{return @"I'm DynamicClass!!";});
    BOOL added = class_addMethod(dynamicClass, dynamicSelector, dynamicImp, @encode(NSString*));
    XCTAssert(added, @"メソッドが追加されている");
	// コンパイル時に存在しないクラスを新規にruntimeに登録する
    objc_registerClassPair(dynamicClass);
	// コンパイル時に存在しないクラスをインスタンス化する
    typeof(dynamicClass) dynamicInstance = objc_msgSend(dynamicClass, @selector(new));
    XCTAssert(dynamicInstance, @"ちゃんとインスタンス化されている");
	// コンパイル時に存在しないインスタンスメソッドを呼び出す
    NSString *s = nil;
    XCTAssertNoThrow(s = objc_msgSend(dynamicInstance, dynamicSelector), @"メソッドが呼び出せる");
    XCTAssert([s isEqualToString:@"I'm DynamicClass!!"], @"返り値もただしい");
}

キモイよぉ……

16
14
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
16
14

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?