Is there a lower API level below Cocoa as a Win32 API below MFC? If so, is it widely used in Mac OS X or iOS Application develepment?
CoreFoundation is a lower-level C API:
http://developer.apple.com/corefoundation/
Foundation classes are the highest set of objective-c classes:
http://developer.apple.com/library/mac/#documentation/Cocoa/Reference/Foundation/ObjC_classic/_index.html
Apple offers a βfreeβ connection between these types:
http://developer.apple.com/library/ios/#documentation/CoreFoundation/Conceptual/CFDesignConcepts/Articles/tollFreeBridgedTypes.html
For OSX, AppKit (Cocoa) is a top-level UI that uses foundation classes:
http://developer.apple.com/library/mac/#documentation/Cocoa/Reference/ApplicationKit/ObjC_classic/_index.html
For devices (iOS) to the UIKit foundation classes (Cocoa Touch):
http://developer.apple.com/library/ios/#documentation/uikit/reference/UIKit_Framework/_index.html
All of them are widely used in the development of OSX and iOS ...
Source: https://habr.com/ru/post/901336/More articles:Using SwingEventMonitor to monitor other applications? - javaWhat happened to SwingEventMonitor? - javaIs it possible for MouseMotionListener to listen for all mouse movement events in the system? - javaHow to return the full Xcode 4 interface? - iosPaypal Preapproval Start Date Time Zone? - timezoneCombining C ++ to represent data memory with a variable variable type C - c ++FFmpeg drawtext - Failed to load font from file - windowsError connecting to Oracle DB with Java - oracleHow to add text to video using ffmpeg and python - pythonWhy does each process need its own page table? - memory-managementAll Articles