- Objective-C 2.0プログラミング言語
- Objective-C Runtime Programming Guide
- https://developer.apple.com/library/mac/documentation/cocoa/conceptual/objcruntimeguide/objcruntimeguide.pdf
入門†
- ダイナミックObjective-C
- iPhoneアプリ開発の虎の巻
- メソッドの定義 〜 インスタンスメソッドとクラスメソッド
Delegate†
- デリゲートを自作クラスに実装する
.†
- Objective-Cで正規表現を使う
アットマーク†
- Objective-Cは特殊な言語? (1/2)
- objective-cで@マークから始まるコマンド一覧
ifdef†
- c++ #ifdef Mac OS X question
- http://stackoverflow.com/questions/6802903/c-ifdef-mac-os-x-question
#ifdef __APPLE__ #include "TargetConditionals.h" #ifdef TARGET_OS_IPHONE // iOS #elif TARGET_IPHONE_SIMULATOR // iOS Simulator #elif TARGET_OS_MAC // Other kinds of Mac OS #else // Unsupported platform #endif #endif
- http://stackoverflow.com/questions/6802903/c-ifdef-mac-os-x-question