cocoaMac是Win32 API或MFC在Windows中的等价物吗?

在MFC下面的Cocoa下面的Win32 API是否有较低级别的API? 如果有,是否广泛用于Mac OS X或iOS应用程序开发?

CoreFoundation是较低级别的C API:

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

基础课程是更高级的目标-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(Cocoa)是使用基础类的更高级的UI框架:

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

对于设备(iOS),在基础类上有UIKit(Cocoa Touch):

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

所有这些在OSX和iOS开发中被广泛使用…