Uialertcontroller class--alert Frame 2 (destructive "warning")

Source: Internet
Author: User

First, the effect

Second, the realization

-(void) Touchesbegan: (Nsset<uitouch *> *) touches withevent: (Uievent *) event

{

[Self alertTest2];

}

/**

* Destructive: "alert" style

*/

-(void) AlertTest2

{

1. Create Uialertcontroller

Uialertcontroller *alertcontroller = [Uialertcontroller

alertcontrollerwithtitle:@ "title"

message:@ "This is the default style for Uialertcontroller"

Preferredstyle:uialertcontrollerstylealert];

2. Create a Uialertaction instance

/**

button for "alert" style: red button for actions that may change or delete data

*/

Uialertaction *destructiveaction = [uialertaction actionwithtitle:@ "reset" style:uialertactionstyledestructive handler : ^ (uialertaction * _nonnull action) {

}];

Uialertaction *cancelaction = [uialertaction actionwithtitle:@ "Cancel" Style:uialertactionstylecancel handler:^ ( Uialertaction * _nonnull action) {

}];

3.UIAlertAction instance added to Uialertcontroller

[Alertcontroller addaction:destructiveaction];

[Alertcontroller addaction:cancelaction];

4. Display the dialog View Controller

[Self Presentviewcontroller:alertcontroller animated:yes completion:^{

}];

}

Uialertcontroller class--alert Frame 2 (destructive "warning")

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.