Knowledge about IOS uinavigationcontroller and uitabbarcontroller

Source: Internet
Author: User

1. Navigation uinavigationcontroller

Navigate to a controller:

[Navigatecontroller pushviewcontroller: loginview animated: Yes];

Code returned to the previous page:

[Self. navigationcontroller
Popviewcontrolleranimated: Yes];

Code returned to the root:

[Self. navigationcontroller poptorootviewcontrolleranimated: <# (bool) #>]

Return the fixed view code:

[Self. navigationcontroller poptoviewcontroller: <# (uiviewcontroller *) #> animated: <# (bool) #>:< # (bool) #>]

Sample Code:

Code example 1

-(Bool) Application :( uiapplication *) Application didfinishlaunchingwitexceptions :( nsdictionary
*) Launchoptions

{

Self. Window = [[uiwindow
Alloc] initwithframe: [[uiscreen
Mainscreen] bounds]
Autorelease];

// Override point for customization after application launch.

Loginviewcontroller * loginview = [[loginviewcontroller
Alloc] init];

Loginview. Title = @ "User Login ";

Uinavigationcontroller * navigatecontroller = [uinavigationcontroller
Alloc] init];

[Navigatecontroller
Pushviewcontroller: loginview
Animated: Yes];

[Self. Window
Addsubview: navigatecontroller. View];

Self. Window. backgroundcolor = [uicolor
Whitecolor];

[Self. Window
Makekeyandvisible];

Return
Yes;

}

Ii. uitabbarcontroller knowledge sorting

Code Example 2

-(Void) onlogin :( ID) sender

{

Uitabbarcontroller * tabcontroller = [uitabbarcontroller
Alloc] init];

Infoviewcontroller * info = [[infoviewcontroller
Alloc] init];

Info. Title = @ "phone bill query ";

Uinavigationcontroller * infonav = [uinavigationcontroller
Alloc] init];

[Infonav pushviewcontroller: info
Animated: Yes];

Uinavigationcontroller * indexnav = [uinavigationcontroller
Alloc] init];

Indexviewcontroller * indexcontroller = [indexviewcontroller
Alloc] init];

Indexcontroller. Title = @ "Buddha worship system ";

[Indexnav
Pushviewcontroller: indexcontroller
Animated: Yes];

Tabcontroller. viewcontrollers = [nsarray
Arraywithobjects: indexnav, infonav,
Nil];

[Self
Presentmodalviewcontroller: tabcontroller
Animated: Yes];

}

One or two examples of Code are as follows:

Related Article

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.