How to Use uialertview

Source: Internet
Author: User

Uialertview is similar to the modal dialog box or MessageBox in C #, but it is much more troublesome to use in IOS.

The following sectionCodeIs a typical application:

Uialertview* Alert = [[Uialertview Alloc]Initwithtitle:@ "Hello" 

 Message:@ "IPad, I come"

Delegate:Self 

 Cancelbuttontitle:@ "OK" 

Otherbuttontitles:Nil];

[AlertShow];

[AlertRelease];

 

However, if it is more complex, it will be troublesome. if you add a few buttons above, for example:

 Uialertview* Alert = [[Uialertview Alloc]Initwithtitle:@ "Hello" 

 Message:@ "IPad, I come"

Delegate:Self 

 Cancelbuttontitle:@ "OK" 

Otherbuttontitles:@"Cancel", @ "Ignore", Nil];

 

Three buttons are displayed in the view. How do you know which button the user selects?

 

The procedure is as follows:

1. In the modify. h file, add the processing for alertview as follows:

@ InterfacePad4viewcontroller: uiviewcontroller

<Uialertviewdelegate>

{...

 

2. Add a response to the alertview event in the. M file as follows:

 

-(Void) Alertview :(Uialertview*) Alertview

Clickedbuttonatindex :(Nsinteger) Buttonindex {

Nslog(@ "% @", Alertview.Title);

}

The preceding method implements the Event Response of all the uialertviews in current. M,AlertviewSpecifies the view,ButtonindexSpecifies the button.

 

 

 

 

 

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.