iOS封裝 AlertView提示框

////? AlertViewTool.h//? AlertActiionDemo////? Created by Max on 16/8/30.//? Copyright ? 2016年 maxzhang. All rights reserved.//#import#importtypedef void (^ActionBlockAtIndex)(NSInteger index);

@interface AlertViewTool : NSObject

@property (nonatomic, copy) ActionBlockAtIndex actionBlockAtIndex;

//UIAlertControllerStyleAlert邑闺,多個按鈕(中間)

+ (id)AlertAlertWithTitle:(NSString*)title Message:(NSString *)message otherItemArrays:(NSArray *)array viewController:(UIViewController *)controller handler:(ActionBlockAtIndex)block;

//用法

//? ? UIAlertControllerStyleAlert

//[AlertViewTool AlertAlertWithTitle:@"標題" Message:@"這是一條消息" otherItemArrays:@[@"按鈕1", @"按鈕2"] viewController:self handler:^(NSInteger index) {

//

//? ? if (index == 0) {

//? ? ? ? NSLog(@"點擊了按鈕1");

//? ? }

//? ? else if (index == 1) {

//? ? ? ? NSLog(@"點擊了按鈕2");

//? ? }

//

//}];

//UIAlertControllerStyleActionSheet 多個按鈕(底部) isShowCancel==是否展示取消按鈕芽唇,yes表示展示

+ (id)AlertSheetToolWithTitle:(NSString*)title Message:(NSString *)message otherItemArrays:(NSArray *)array viewController:(UIViewController *)controller handler:(ActionBlockAtIndex)block isShowCancel:(BOOL)isShow CancelTitle:(NSString*)cancetitle;

//用法

//? UIAlertControllerStyleActionSheet

//? ? [AlertViewTool AlertSheetToolWithTitle:@"標題" Message:@"這是一條消息" otherItemArrays:@[@"按鈕1", @"按鈕2", @"按鈕3"] viewController:self handler:^(NSInteger index) {

//? ? ? ? if (index == 0) {

//? ? ? ? ? ? ? ? NSLog(@"點擊了按鈕1");

//? ? ? ? ? ? }

//? ? ? ? ? ? else if (index == 1) {

//? ? ? ? ? ? ? ? NSLog(@"點擊了按鈕2");

//? ? ? ? ? ? }

//? ? ? ? ? ? else if (index == 2) {

//? ? ? ? ? ? ? ? NSLog(@"點擊了按鈕3");

//? ? ? ? ? ? }

//? ? ? ? ? ? else if (index == 2) {

//? ? ? ? ? ? ? ? NSLog(@"點擊了取消");

//? ? ? ? ? ? }

//

//? ? } isShowCancel:YES CancelTitle:@"取消"];

@end


//

//? AlertViewTool.m

//? AlertActiionDemo

//

//? Created by Max on 16/8/30.

//? Copyright ? 2016年 maxzhang. All rights reserved.

//

#import "AlertViewTool.h"

@implementation AlertViewTool

#pragma mark ==================AlertView=========================

//在中間提示的很多個按鈕

+ (id)AlertAlertWithTitle:(NSString*)title Message:(NSString *)message otherItemArrays:(NSArray *)array viewController:(UIViewController *)controller handler:(ActionBlockAtIndex)block{

return [[self alloc] initWithTitleCenter:title Message:message otherItemArrays:array viewController:controller handler:block];

}

//在中間提示的很多個按鈕

- (instancetype)initWithTitleCenter:(NSString *)title Message:(NSString*)message otherItemArrays:(NSArray *)array viewController:(UIViewController *)controller handler:(id)sender{

if ([self init]) {

UIAlertController *alertC = [UIAlertController alertControllerWithTitle:title message:message preferredStyle:UIAlertControllerStyleAlert];

self.actionBlockAtIndex = sender;

if (![array isKindOfClass:[NSNull class]] && array != nil && array.count) {

for (int i = 0; i < array.count; i++) {

UIAlertAction *otherAction = [UIAlertAction actionWithTitle:array[i] style:UIAlertActionStyleDefault handler:^(UIAlertAction * _Nonnull action) {

if (self.actionBlockAtIndex) {

self.actionBlockAtIndex(i);

}

[alertC dismissViewControllerAnimated:YES completion:nil];

}];

[alertC addAction:otherAction];

}

}

[controller presentViewController:alertC animated:YES completion:nil];

}

return self;

}

#pragma mark ==================AlertSheetTool=========================

+ (id)AlertSheetToolWithTitle:(NSString*)title Message:(NSString *)message otherItemArrays:(NSArray *)array viewController:(UIViewController *)controller handler:(ActionBlockAtIndex)block isShowCancel:(BOOL)isShow CancelTitle:(NSString*)cancetitle

{

return [[self alloc] initWithCancelTitle:title Message:message otherItemArrays:array viewController:controller handler:block isShowCancel:isShow CancelTitle:cancetitle];

}

- (instancetype)initWithCancelTitle:(NSString *)title Message:(NSString*)message otherItemArrays:(NSArray *)array viewController:(UIViewController *)controller handler:(id)sender isShowCancel:(BOOL)isShowCancel CancelTitle:(NSString *)Cancetitle

{

if ([self init]) {

UIAlertController *alertC = [UIAlertController alertControllerWithTitle:title message:message preferredStyle:UIAlertControllerStyleActionSheet];

self.actionBlockAtIndex = sender;

if (isShowCancel == YES) {

UIAlertAction *cancelAction=[UIAlertAction actionWithTitle:Cancetitle style:UIAlertActionStyleCancel handler:^(UIAlertAction * _Nonnull action) {

if (self.actionBlockAtIndex) {

self.actionBlockAtIndex(array.count);

}

[alertC dismissViewControllerAnimated:YES completion:nil];

}];

[alertC addAction:cancelAction];

}

if (![array isKindOfClass:[NSNull class]] && array != nil && array.count) {

for (int i = 0; i < array.count; i++) {

UIAlertAction *otherAction = [UIAlertAction actionWithTitle:array[i] style:UIAlertActionStyleDefault handler:^(UIAlertAction * _Nonnull action) {

if (self.actionBlockAtIndex) {

self.actionBlockAtIndex(i);

}

[alertC dismissViewControllerAnimated:YES completion:nil];

}];

[alertC addAction:otherAction];

}

}

[controller presentViewController:alertC animated:YES completion:nil];

}

return self;

}

@end

//調(diào)用

#import "AlertViewTool.h"

- (void)touchesBegan:(NSSet*)touches withEvent:(UIEvent *)event

{

//? ? UIAlertControllerStyleAlert

[AlertViewTool AlertAlertWithTitle:@"標題" Message:@"這是一條消息" otherItemArrays:@[@"按鈕1", @"按鈕2"] viewController:self handler:^(NSInteger index) {

if (index == 0) {

NSLog(@"點擊了按鈕1");

}

else if (index == 1) {

NSLog(@"點擊了按鈕2");

}

}];

//? UIAlertControllerStyleActionSheet

//? ? [AlertViewTool AlertSheetToolWithTitle:@"標題" Message:@"這是一條消息" otherItemArrays:@[@"按鈕1", @"按鈕2", @"按鈕3"] viewController:self handler:^(NSInteger index) {

//? ? ? ? if (index == 0) {

//? ? ? ? ? ? ? ? NSLog(@"點擊了按鈕1");

//? ? ? ? ? ? }

//? ? ? ? ? ? else if (index == 1) {

//? ? ? ? ? ? ? ? NSLog(@"點擊了按鈕2");

//? ? ? ? ? ? }

//? ? ? ? ? ? else if (index == 2) {

//? ? ? ? ? ? ? ? NSLog(@"點擊了按鈕3");

//? ? ? ? ? ? }

//? ? ? ? ? ? else if (index == 2) {

//? ? ? ? ? ? ? ? NSLog(@"點擊了取消");

//? ? ? ? ? ? }

//

//? ? } isShowCancel:YES CancelTitle:@"取消"];

}

最后編輯于
?著作權(quán)歸作者所有,轉(zhuǎn)載或內(nèi)容合作請聯(lián)系作者
  • 序言:七十年代末痹栖,一起剝皮案震驚了整個濱河市鸟蟹,隨后出現(xiàn)的幾起案子俊戳,更是在濱河造成了極大的恐慌乞娄,老刑警劉巖彭则,帶你破解...
    沈念sama閱讀 206,378評論 6 481
  • 序言:濱河連續(xù)發(fā)生了三起死亡事件哎媚,死亡現(xiàn)場離奇詭異,居然都是意外死亡阶女,警方通過查閱死者的電腦和手機颊糜,發(fā)現(xiàn)死者居然都...
    沈念sama閱讀 88,356評論 2 382
  • 文/潘曉璐 我一進店門哩治,熙熙樓的掌柜王于貴愁眉苦臉地迎上來,“玉大人衬鱼,你說我怎么就攤上這事业筏。” “怎么了鸟赫?”我有些...
    開封第一講書人閱讀 152,702評論 0 342
  • 文/不壞的土叔 我叫張陵蒜胖,是天一觀的道長。 經(jīng)常有香客問我惯疙,道長翠勉,這世上最難降的妖魔是什么? 我笑而不...
    開封第一講書人閱讀 55,259評論 1 279
  • 正文 為了忘掉前任霉颠,我火速辦了婚禮对碌,結(jié)果婚禮上,老公的妹妹穿的比我還像新娘蒿偎。我一直安慰自己朽们,他們只是感情好,可當我...
    茶點故事閱讀 64,263評論 5 371
  • 文/花漫 我一把揭開白布诉位。 她就那樣靜靜地躺著骑脱,像睡著了一般。 火紅的嫁衣襯著肌膚如雪苍糠。 梳的紋絲不亂的頭發(fā)上叁丧,一...
    開封第一講書人閱讀 49,036評論 1 285
  • 那天,我揣著相機與錄音岳瞭,去河邊找鬼拥娄。 笑死,一個胖子當著我的面吹牛瞳筏,可吹牛的內(nèi)容都是我干的稚瘾。 我是一名探鬼主播,決...
    沈念sama閱讀 38,349評論 3 400
  • 文/蒼蘭香墨 我猛地睜開眼姚炕,長吁一口氣:“原來是場噩夢啊……” “哼摊欠!你這毒婦竟也來了?” 一聲冷哼從身側(cè)響起柱宦,我...
    開封第一講書人閱讀 36,979評論 0 259
  • 序言:老撾萬榮一對情侶失蹤些椒,失蹤者是張志新(化名)和其女友劉穎,沒想到半個月后掸刊,有當?shù)厝嗽跇淞掷锇l(fā)現(xiàn)了一具尸體免糕,經(jīng)...
    沈念sama閱讀 43,469評論 1 300
  • 正文 獨居荒郊野嶺守林人離奇死亡,尸身上長有42處帶血的膿包…… 初始之章·張勛 以下內(nèi)容為張勛視角 年9月15日...
    茶點故事閱讀 35,938評論 2 323
  • 正文 我和宋清朗相戀三年,在試婚紗的時候發(fā)現(xiàn)自己被綠了说墨。 大學時的朋友給我發(fā)了我未婚夫和他白月光在一起吃飯的照片。...
    茶點故事閱讀 38,059評論 1 333
  • 序言:一個原本活蹦亂跳的男人離奇死亡苍柏,死狀恐怖尼斧,靈堂內(nèi)的尸體忽然破棺而出,到底是詐尸還是另有隱情试吁,我是刑警寧澤棺棵,帶...
    沈念sama閱讀 33,703評論 4 323
  • 正文 年R本政府宣布,位于F島的核電站熄捍,受9級特大地震影響烛恤,放射性物質(zhì)發(fā)生泄漏。R本人自食惡果不足惜余耽,卻給世界環(huán)境...
    茶點故事閱讀 39,257評論 3 307
  • 文/蒙蒙 一缚柏、第九天 我趴在偏房一處隱蔽的房頂上張望。 院中可真熱鬧碟贾,春花似錦币喧、人聲如沸。這莊子的主人今日做“春日...
    開封第一講書人閱讀 30,262評論 0 19
  • 文/蒼蘭香墨 我抬頭看了看天上的太陽。三九已至朱巨,卻和暖如春史翘,著一層夾襖步出監(jiān)牢的瞬間,已是汗流浹背冀续。 一陣腳步聲響...
    開封第一講書人閱讀 31,485評論 1 262
  • 我被黑心中介騙來泰國打工琼讽, 沒想到剛下飛機就差點兒被人妖公主榨干…… 1. 我叫王不留,地道東北人沥阳。 一個月前我還...
    沈念sama閱讀 45,501評論 2 354
  • 正文 我出身青樓跨琳,卻偏偏與公主長得像,于是被迫代替她去往敵國和親桐罕。 傳聞我的和親對象是個殘疾皇子脉让,可洞房花燭夜當晚...
    茶點故事閱讀 42,792評論 2 345

推薦閱讀更多精彩內(nèi)容

  • 1.oc基本語法 // // main.m // oc基本語法 // // Created by lanou on...
    GOT_HODOR閱讀 414評論 0 0
  • { 11、核心動畫 需要簽協(xié)議功炮,但是系統(tǒng)幫簽好 一溅潜、CABasicAnimation 1、創(chuàng)建基礎(chǔ)動畫對象 CAB...
    CYC666閱讀 1,528評論 2 4
  • 轉(zhuǎn)至元數(shù)據(jù)結(jié)尾創(chuàng)建: 董瀟偉薪伏,最新修改于: 十二月 23, 2016 轉(zhuǎn)至元數(shù)據(jù)起始第一章:isa和Class一....
    40c0490e5268閱讀 1,679評論 0 9
  • 戀愛是想一個人的心滚澜,愛情是吞一個人的心,婚姻是拴一個人的心 人們常說 熟悉的地方?jīng)]有風景 而我認為 重復是一種別樣...
    因為朵朵閱讀 566評論 0 0
  • 這其實是第三天啦嫁怀!這幅畫畫了兩天设捐,都是午睡起來就開始準備畫畫借浊,一般會畫一個小時左右,下午的時間自由安排萝招,真的非常棒...
    亖叁21閱讀 341評論 6 5