Is there a lower level of API below Cocoa as Win32 API below MFC? If there is, Is it widely used in Mac OS X or iOS Application develepment?
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
CoreFoundation is the lower level C APIs:
http://developer.apple.com/corefoundation/
Foundation classes is the higher objective-c foundation set of classes:
http://developer.apple.com/library/mac/#documentation/Cocoa/Reference/Foundation/ObjC_classic/_index.html
Apple offers ‘toll-free’ bridging of types between these:
http://developer.apple.com/library/ios/#documentation/CoreFoundation/Conceptual/CFDesignConcepts/Articles/tollFreeBridgedTypes.html
For OSX AppKit (Cocoa) is the higher level UI framework which uses the foundation classes:
http://developer.apple.com/library/mac/#documentation/Cocoa/Reference/ApplicationKit/ObjC_classic/_index.html
For Devices (iOS), there’s UIKit (Cocoa Touch) over the foundation classes:
http://developer.apple.com/library/ios/#documentation/uikit/reference/UIKit_Framework/_index.html
All of these are widely used in OSX and iOS development …