"Go" iOS Development UI chapter-Program start principle and UIApplication

Source: Internet
Author: User
Tags uikit

Original http://www.cnblogs.com/wendingding/p/3766347.html First,uiapplication 1. Brief introduction

(1) The UIApplication object is a symbol of the application, and a UIApplication object represents an application.

(2) Each application has its own UIApplication object, and is a singleton, if you try to create a new UIApplication object in the program, then the error prompt.

(3) This singleton object can be obtained by [Uiapplicationsharedapplication]

(4) An iOS program is created after the first object is the UIApplication object, and only one (through the code to get two UIApplication objects, the print address can see the address is the same).

(5) Use the UIApplication object to perform some application-level operations

2. Application-level operation examples:

1) Set the application icon in the upper right corner of the red reminder number (such as QQ message, the icon will show a new message, such as three-way bar. )

@property (nonatomic) Nsinteger applicationiconbadgenumber;

Code implementation and Effects:

- (void) viewdidload{[Super Viewdidload];//Create and add a button UIButton *btn=[[uibutton alloc]initwithframe:cgrectmake (100,100,60,30)]; [BTN Settitle:@"Button"Forstate:uicontrolstatenormal]; [Btn Setbackgroundcolor:[uicolor Browncolor]; [Btn addtarget:self Action: @selector (OnClick) forcontrolevents:uicontroleventtouchupinside]; [Self.view addsubview:btn];} -(void) onclick{NSLog (@ " button click event "); // error, can only have a unique uiapplication object, can not be created // uiapplication *app=[[uiapplication Alloc]init]; // UIApplication object uiapplication *app=[uiapplication sharedapplication] obtained by sharedapplication for the program; app.applicationiconbadgenumber=123;}           

2) Set the visibility of the networking indicator

@property (nonatomic,getter=isnetworkactivityindicatorvisible) BOOL networkactivityindicatorvisible;

Code and Effects:

  Set the indicator's networked animation    App.networkactivityindicatorvisible=yes;

3) Manage status bar

Starting with IOS7, the system provides 2 ways to manage the status bar

A. Through Uiviewcontroller management (each uiviewcontroller can have its own different status bar).

In IOS7, by default, the status bar is managed by Uiviewcontroller, and Uiviewcontroller can easily manage the visibility and style of the status bar by implementing the following methods

The style of the status bar-(Uistatusbarstyle) Preferredstatusbarstyle;

Visibility of the status bar-(BOOL) Prefersstatusbarhidden;

#pragma mark-Set the style of the status bar-(uistatusbarstyle) preferredstatusbarstyle{    // set to white    / /// return Uistatusbarstyledefault;} #pragma mark-Set whether the status bar is hidden (no)-return NO;         

B. Through UIApplication management (the status bar of an application is managed by it uniformly)

If you want to use uiapplication to manage the status bar, you first need to modify the Info.plist settings

Code:

  //Gets the UIApplication object of the program through Sharedapplication uiapplication *app=[UIApplication sharedapplication]; App.applicationiconbadgenumber=123// set indicator for networked animation app.networkactivityindicatorvisible=< Span style= "color: #000000;" >yes; // Set the style of the status bar //app.statusbarstyle=uistatusbarstyledefault; // default (black) // set to white + animated effect  [app Setstatusbarstyle:uistatusbarstylelightcontent Animated:yes]; //yes; //             

C. Supplementary

Since both can be managed on the status bar, when should you use it? If the style of the status bar is set only once, use uiapplication to manage it, and if the status bar is hidden, the style is different then it is managed with the controller. UIApplication to manage has additional benefits that can provide animation effects.

4) OpenURL: Method

UIApplication has a very powerful OpenURL: method

-(BOOL) OpenURL: (nsurl*) URL;

OpenURL: Some of the functions of the method are

Call UIApplication *app = [Uiapplicationsharedapplication]; [App openurl:[nsurlurlwithstring:@ "tel://10086"];

Send SMS [app openurl:[nsurlurlwithstring:@ "sms://10086"];

email [app openurl:[nsurlurlwithstring:@ "Mailto://[email protected]"];

Open a Web page resource [app openurl:[nsurlurlwithstring:@ "http://ios.itcast.cn"];

Open another app OpenURL method to open other apps.

URL Additions:URL: A Uniform Resource locator that is used to uniquely represent a resource. URL format: protocol header://Host address/resource Path network resources: Http/ftp and so on to represent the address of Baidu on a picture http://www.baidu.com/images/20140603/abc.png local resources: file:///users/ Apple/desktop/abc.png (host address omitted) Second,uiapplication Delegate

1. Brief description

All mobile operating systems have a fatal disadvantage: apps are vulnerable to interruptions. For example, a call or lock screen will cause the app to go backstage or even be terminated.

There are a number of other similar situations that can cause the app to be disturbed, causing some system events when the app is disturbed, and UIApplication notifies its delegate object, allowing delegate agents to handle these system events.

Function: When interrupted, notifies the agent to enter the background.

Each new project, there is a "appdelegate" word of the class, it is the uiapplication agent, njappdelegate by default has complied with the Uiapplicationdelegate protocol, is already an agent of uiapplication.

2. Proxy methods
1#import"YYAppDelegate.h"23@implementationYyappdelegate45//Called when the application is finished (automatically called by the system)6-(BOOL) Application: (UIApplication *) application didfinishlaunchingwithoptions: (Nsdictionary *) launchoptions7{8 NSLog (@"Didfinishlaunchingwithoptions");9ReturnYES;10}1112//Called when it is about to lose its active state (loses focus, cannot interact)13-(void) Applicationwillresignactive: (UIApplication *) application14{NSLog (@"Resignactive");16}1718//Regain focus (ability to interact with users)19-(void) Applicationdidbecomeactive: (UIApplication *) application20{NSLog (@"Becomeactive");22}2324//Called when the application enters the background25//The application's data is typically stored in this method, as well as the state26-(void) Applicationdidenterbackground: (UIApplication *) application27{NSLog (@"Background");29}3031//Called when the application is about to enter the foreground32//Typically restores the application's data in this method, as well as the state33-(void) Applicationwillenterforeground: (UIApplication *) application34{NSLog (@"Foreground");36}3738//This method is called when the application is about to be destroyed39//Note: This method cannot be called if the application is in a suspended state40-(void) Applicationwillterminate: (UIApplication *) application41{42}43 44 //45 // generally frees unwanted memory 46 -(void) applicationdidreceivememorywarning: (UIApplication * ) Application47 {48 NSLog (memorywarning  "); 49 }50  @end                 
Applications typically have five statuses: Official document App.states Three, the principle of program start

Uiapplicationmain

A uiapplicationmain function is executed in the main function.

Intuiapplicationmain (int argc, char *argv[], nsstring *principalclassname, NSString *delegateclassname);

ARGC, argv: direct transfer to Uiapplicationmain for related processing can be

Principalclassname: Specifies the application class name (symbol of the app), which must be uiapplication (or subclass). If nil, use the UIApplication class as the default value

Delegateclassname: Specifies the application's proxy class, which must comply with the Uiapplicationdelegate protocol

The Uiapplicationmain function creates a UIApplication object based on Principalclassname, creates a delegate object from Delegateclassname, and assigns the delegate object to the The delegate property in the UIApplication object

The application's main Runloop (the event loop) is then created, and the event is processed (the application:didfinishlaunchingwithoptions of the delegate object is called first after the program is completed: method)

The Uiapplicationmain function returns when the program exits normally

#import <UIKit/UIKit.h>#import"YYAppDelegate.h"int main (int argc,char *Argv[]) {@autoreleasepool {// return Uiapplicationmain (argc, argv, Nil, Nsstringfromclass ([Yyappdelegate class])); // return Uiapplicationmain (argc, argv, @ " UIApplication ", Nsstringfromclass ([Yyappdelegate class])); /* argc: The number of parameters the system or user passed in argv: the actual parameter 1 that the system or user passed in. Creates a UIApplication object based on the third parameter passed in 2. The agent that created the UIApplication object is generated according to the incoming fourth 3. Set the proxy object that you just created as a proxy for uiapplication 4. Turn on an event loop */return Uiapplicationmain (argc, argv, @ "uiapplication@"  Yyappdelegate ");}       

Code and parameter description for system entry:

ARGC: System or user-passed parameter argv: actual parameter passed in by the system or user 1. Based on the third parameter passed in, Create a UIApplication object 2. Based on the fourth incoming agent that generated the UIApplication object, 3. Set the proxy object that you just created as a proxy for uiapplication 4. Turn on an event loop (which can be understood as a dead loop inside) This time loop is a queue (advanced first The first to add in first how iOS programs start

Iv. complete process of program initiation

1.main function

2.UIApplicationMain

* Create UIApplication objects

* Create a UIApplication delegate object

3.delegate object starts processing (listening) system events (no storyboard)

* When the program is started, the agent's application:didfinishlaunchingwithoptions is called: method

* Create UIWindow in application:didfinishlaunchingwithoptions:

* Create and set UIWindow Rootviewcontroller

* Display window

3. According to Info.plist to obtain the most important storyboard file name, load the main storyboard (with storyboard)

* Create UIWindow

* Create and set UIWindow Rootviewcontroller

* Display window

"Go" iOS Development UI chapter-Program start principle and UIApplication

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.