Cocoa Touch: Difference between revisions

From Medien Wiki
(created)
 
mNo edit summary
Line 2: Line 2:


* Cocoa (for Mac OS X)
* Cocoa (for Mac OS X)
** [[Foundation Classes|foundation.framework]]
** [[Foundation Classes]] (eg. NSString, NSNumber, Collections like NSArray, NSDictionary...)
** AppKit.framework
** AppKit Classes (eg. NSResponder, NSView, NSWindow, NSButton and many more...)
 
* Cocoa Touch (for iPhoneOS)
* Cocoa Touch (for iPhoneOS)
** [[Foundation Classes|Foundation.framework]]
** [[Foundation Classes]] (eg. NSString, NSNumber, Collections like NSArray, NSDictionary...)
** UIKit.framework
** [[UIKit Classes]] (eg. UIResponder, UIView, UIWindow, UIButton, UIAccelerometer and many more...)
 
== Foundation ==
 
See [[Foundation Classes]] for an overview of available classes. Foundation covers basic classes like NSString, NSNumber or Collections like NSArray, NSDictionary...
 
== UIKit ==
 
UIKit provides following classes:
 
...