2011-11-12 36 views

回答

7

的CoreFoundation是較低的C級的API:

http://developer.apple.com/corefoundation/

基礎類是較高的Objective-C的基礎類集合:

http://developer.apple.com/library/mac/#documentation/Cocoa/Reference/Foundation/ObjC_classic/_index.html

蘋果公司提供 '免費電話'這些類型之間的橋接:

http://developer.apple.com/library/ios/#documentation/CoreFoundation/Conceptual/CFDesignConcepts/Articles/tollFreeBridgedTypes.html

對於OSX了AppKit(可可)是使用基礎類的更高級別的UI框架:

http://developer.apple.com/library/mac/#documentation/Cocoa/Reference/ApplicationKit/ObjC_classic/_index.html

對於設備(IOS),在基礎類有UIKit的(可可觸摸):

http://developer.apple.com/library/ios/#documentation/uikit/reference/UIKit_Framework/_index.html

所有這些被廣泛應用於OSX和iOS開發...

相關問題