Top > ObjectiveC
TITLE:Objective-C

- Objective-C 2.0プログラミング言語
--  http://developer.apple.com/jp/documentation/cocoa/Conceptual/ObjectiveC/

--  Objective-C Runtime Programming Guide
--  https://developer.apple.com/library/mac/documentation/cocoa/conceptual/objcruntimeguide/objcruntimeguide.pdf

- http://www.libjingu.jp/trans/clocFAQ-j.html

* 入門 [#fa8f1370]

- ダイナミックObjective-C
--  http://news.mynavi.jp/column/objc/001.html
- iPhoneアプリ開発の虎の巻
--  http://iphone-tora.sakura.ne.jp/index.html
- メソッドの定義 〜 インスタンスメソッドとクラスメソッド
--  http://www.objectivec-iphone.com/introduction/method/method.html

** Delegate [#u9160772]

- デリゲートを自作クラスに実装する
--  http://www.objectivec-iphone.com/introduction/delegate/delegate.html

*. [#wed3bb9c]

- Objective-Cで正規表現を使う
--  http://faultier.blog.jp/archives/1561287.html その1
--  http://faultier.blog.jp/archives/1561677.html その2 

* アットマーク [#atmark]

- Objective-Cは特殊な言語? (1/2)
--  http://www.atmarkit.co.jp/ait/articles/0809/09/news142.html
- objective-cで@マークから始まるコマンド一覧
--  http://blog.9wick.com/2011/11/objective-c-at-mark/

* ifdef [#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

* 関連 [#rel]

- [[プログラミング言語>ProgrammingLanguage]]
--  [[C言語>C]] | [[Smalltalk]]
- オブジェクト指向プログラミング ([[OOP]])
- [[Apple]] - [[iOS]] - [[MacOSX]]
--  [[Swift]]

Reload   Diff   Front page List of pages Search Recent changes Backup Referer   Help   RSS of recent changes