OBJECTIVE-C macros define Uialertcontroller common methods

Source: Internet
Author: User

iOS methods often change, the previous popup box uses Alertview, and now uses the Uialertcontroller

Macro definition of Alertview

#define ShowMessage (__message__) \
Uialertview *alertview_ = [[Uialertview alloc] initwithtitle:@ "hint" \
MESSAGE:__MESSAGE__ \
Delegate:nil \
cancelbuttontitle:@ "OK" \
Otherbuttontitles:nil]; \
[Alertview_ show];

Macro definition of Uialertcontroller

The message in the parameter is the hint, QUVC is the page that you are currently working on, and the Uiviewcontroller is the one that passes the self

#define SHOWMESSAGE1 (MESSAGE,QUVC) \
Uialertcontroller *alertcontroller = [Uialertcontroller alertcontrollerwithtitle:@ "hint" Message:MESSAGE Preferredstyle:uialertcontrollerstylealert]; \
Uialertaction *okaction = [uialertaction actionwithtitle:@ "OK" style:uialertactionstyledefault Handler:nil]; \
[Alertcontroller addaction:okaction]; \
[QUVC Presentviewcontroller:alertcontroller Animated:yes Completion:nil];

Call:

-(void) loadview{    [Super Loadview];    [Self.backscrollview   Setbackgroundcolor:[uicolor Redcolor];    ShowMessage1 (@ " Hello uialertcontroller", Self);}

OBJECTIVE-C macros define Uialertcontroller common methods

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.