blog

Home / DeveloperSection / Blogs / iOS : UIKit Framework

iOS : UIKit Framework

Anonymous User4442 20-Jul-2015

Previously we learn to iterate over a collection using fast enumeration : Objective-C : Fast enumeration 


While the Foundation framework defines classes, protocols, and functions for both iOS and OS X development, the UIKit framework is exclusively geared towards iOS development. It's the equivalent of the Application Kit or AppKit framework for OS X development. 


Like Foundation, UIKit defines classes, protocols, functions, data types, and constants. It also adds additional functionality to various Foundation classes, such as NSObject, NSString, and NSValue through the use of Objective-C categories. 


The UIKit framework provides the window and view architecture needed to manage an app’s user interface, the event handling infrastructure needed to respond to user input, and the app model needed to drive the main run loop and interact with the system. 


In addition to the core app behaviors, UIKit provides support for the
following features:

·    A view controller model to encapsulate the contents of your user interface

·   Support for handling touch- and motion-based events

·   Support for a document model that includes iCloud integration;

·   Graphics and windowing support, including support for external displays;

·   Support for managing the app’s foreground and background execution

·   Printing support;

·   Support for customizing the appearance of standard UIKit controls

·   Support for text and web content

·   Cut, copy, and paste support

·   Support for animating user-interface content

·   Integration with other apps on the system through URL schemes and framework interfaces

·   Accessibility support for disabled users

·   Support for the Apple Push Notification service;

·    Local notification scheduling and delivery;

·    PDF creation

·    Support for using custom input views that behave like the system      keyboard

·   Support for creating custom text views that interact with the system keyboard

·   Support for sharing content through email, Twitter, Facebook, and other services 


In addition to providing the fundamental code for building your app, UIKit also incorporates support for some device-specific features,

such as the following:


·         The built-in camera (where present)

·         The user’s photo library

·         Device name and model information

·         Battery state information

·         Proximity sensor information

·         Remote control information from attached headsets


Updated 13-Mar-2018
I am a content writter !

Leave Comment

Comments

Liked By