彈框

自從iOS9出來(lái)之后充尉,需要使用UIAlertController來(lái)彈出彈框玩敏,不在提倡使用UIAlertView了,UIAlertController
琅捏, 這個(gè)類(lèi)怎么說(shuō)好呢,確實(shí)方便我們管理彈框递雀,但是這個(gè)類(lèi)必須在UIViewController
上面presentViewController彈出柄延,沒(méi)UIAlertView使用方便。

那么出現(xiàn)這個(gè)問(wèn)題了缀程,就得想有沒(méi)有什么好的方式去解決搜吧,讓UIAlertController使用起來(lái)跟UIAlertView
一樣的方便,第一個(gè)問(wèn)題杨凑,用繼承還是類(lèi)別滤奈,現(xiàn)在的目的是所有類(lèi)都能直接調(diào)用,尤其是沒(méi)有UI的類(lèi)撩满,所以用類(lèi)別蜒程,

第二個(gè)問(wèn)題绅你,類(lèi)別是哪個(gè)類(lèi),要想所有的類(lèi)都能使用昭躺,方便簡(jiǎn)單的調(diào)用忌锯,那就得所有類(lèi)的父類(lèi),NSObject

第三個(gè)問(wèn)題领炫,iOS系統(tǒng)版本偶垮,既然是好用,那就得適配的版本要盡量多帝洪,

所以似舵,

、葱峡、砚哗、

#import#import#if __IPHONE_OS_VERSION_MAX_ALLOWED < __IPHONE_8_0#define IPHONE_OS_VERSION_MIN_IPHONE_8_0? ? //less than 8.0#else#define IPHONE_OS_VERSION_MAX_IPHONE_8_0? ? //greater than or equal to 8.0#endif#define NO_USE -1000typedef void(^click)(NSInteger index);typedef void(^configuration)(UITextField *field, NSInteger index);typedef void(^clickHaveField)(NSArray*fields, NSInteger index);@interface NSObject (LZAlertView)#ifdef IPHONE_OS_VERSION_MIN_IPHONE_8_0#endif/*! *? use alert * *? @param title? ? title *? @param message? message *? @param others? other button title *? @param animated animated *? @param click? ? button action */- (void)YXBAlertWithTitle:(NSString *)title? ? ? ? ? ? ? ? message:(NSString *)message? ? ? ? ? ? ? andOthers:(NSArray*)others? ? ? ? ? ? ? ? animated:(BOOL)animated? ? ? ? ? ? ? ? ? action:(click)click;/*! *? use action sheet * *? @param title? ? ? ? ? ? title *? @param message? ? ? ? ? message just system verson max or equal 8.0. *? @param destructive? ? ? button title is red color *? @param destructiveAction destructive action *? @param others? ? ? ? ? ? other button *? @param animated? ? ? ? ? animated *? @param click? ? ? ? ? ? other button action */- (void)YXBActionSheetWithTitle:(NSString *)title? ? ? ? ? ? ? ? ? ? ? message:(NSString *)message? ? ? ? ? ? ? ? ? destructive:(NSString *)destructive? ? ? ? ? ? destructiveAction:(click )destructiveAction? ? ? ? ? ? ? ? ? ? andOthers:(NSArray*)others? ? ? ? ? ? ? ? ? ? ? animated:(BOOL )animated? ? ? ? ? ? ? ? ? ? ? ? action:(click )click;/*! *? use alert include textField * *? @param title? ? ? ? title *? @param message? ? ? message *? @param buttons? ? ? buttons *? @param number? ? ? ? number of textField *? @param configuration configuration textField property *? @param animated? ? ? animated *? @param click? ? ? ? button action */- (void)YXBAlertWithTitle:(NSString *)title? ? ? ? ? ? ? ? message:(NSString *)message? ? ? ? ? ? ? ? buttons:(NSArray*)buttons

textFieldNumber:(NSInteger )number

configuration:(configuration )configuration

animated:(BOOL )animated

action:(clickHaveField )click;

@end

、砰奕、蛛芥、

.m文件

、脆淹、、

////? NSObject+LZAlertView.m//? jglz////? Created by jglz on 16/6/12.//? Copyright ? 2016年 yxb. All rights reserved.//#import "NSObject+LZAlertView.h"#import "AppDelegate.h"#ifdef IPHONE_OS_VERSION_MIN_IPHONE_8_0static click clickIndex = nil;static clickHaveField clickIncludeFields = nil;static click clickDestructive = nil;#endifstatic NSMutableArray *fields = nil;@implementation NSObject (LZAlertView)#pragma mark - *****? alert view- (void)YXBAlertWithTitle:(NSString *)title? ? ? ? ? ? ? ? message:(NSString *)message? ? ? ? ? ? ? andOthers:(NSArray*)others? ? ? ? ? ? ? ? animated:(BOOL)animated? ? ? ? ? ? ? ? ? action:(click)click{#ifdef IPHONE_OS_VERSION_MAX_IPHONE_8_0? ? ? ? UIAlertController *alertController = [UIAlertController alertControllerWithTitle:title message:message preferredStyle:UIAlertControllerStyleAlert];? ? ? ? [others enumerateObjectsUsingBlock:^(NSString * _Nonnull obj, NSUInteger idx, BOOL * _Nonnull stop) {? ? ? ? ? ? ? ? if (idx == 0)? ? ? ? {? ? ? ? ? ? [alertController addAction:[UIAlertAction actionWithTitle:obj style:UIAlertActionStyleCancel handler:^(UIAlertAction * _Nonnull action) {? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? if (action)? ? ? ? ? ? ? ? {? ? ? ? ? ? ? ? ? ? click(idx);? ? ? ? ? ? ? ? }? ? ? ? ? ? }]];? ? ? ? }? ? ? ? else? ? ? ? {? ? ? ? ? ? [alertController addAction:[UIAlertAction actionWithTitle:obj style:UIAlertActionStyleDefault handler:^(UIAlertAction * _Nonnull action) {? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? if (action)? ? ? ? ? ? ? ? {? ? ? ? ? ? ? ? ? ? click(idx);? ? ? ? ? ? ? ? }? ? ? ? ? ? }]];? ? ? ? }? ? }];//? ? NSLog(@"%@",[[self currentViewController] class]);? ? UIViewController *vc =[self currentViewController];? ? [vc presentViewController:alertController animated:YES completion:nil];#else? ? UIAlertView *alertView = nil;? ? if (others.count > 0)? ? {? ? ? ? alertView = [[UIAlertView alloc] initWithTitle:title message:message delegate:self cancelButtonTitle:others[0] otherButtonTitles: nil];? ? }? ? else? ? {? ? ? ? alertView = [[UIAlertView alloc] initWithTitle:title message:message delegate:nil cancelButtonTitle:nil otherButtonTitles: nil];? ? }? ? ? ? [others enumerateObjectsUsingBlock:^(NSString * _Nonnull obj, NSUInteger idx, BOOL * _Nonnull stop) {? ? ? ? ? ? ? ? if (idx != 0)? ? ? ? {? ? ? ? ? ? [alertView adButtonWithTitle:obj];? ? ? ? }? ? }];? ? ? ? clickIndex = click;? ? ? ? [alertView show];#endif}#pragma mark - *****? alertView delegate#ifdef IPHONE_OS_VERSION_MIN_IPHONE_8_0- (void)alertView:(UIAlertView *)alertView clickedButtonAtIndex:(NSInteger)buttonIndex{? ? if (clickIndex)? ? {? ? ? ? clickIndex(buttonIndex);? ? }? ? else if (clickIncludeFields)? ? {? ? ? ? clickIncludeFields(fields,buttonIndex);? ? }? ? ? ? clickIndex = nil;? ? clickIncludeFields = nil;}#endif#pragma mark - *****? sheet- (void)YXBActionSheetWithTitle:(NSString *)title? ? ? ? ? ? ? ? ? ? ? message:(NSString *)message? ? ? ? ? ? ? ? ? destructive:(NSString *)destructive? ? ? ? ? ? destructiveAction:(click )destructiveAction? ? ? ? ? ? ? ? ? ? andOthers:(NSArray*)others? ? ? ? ? ? ? ? ? ? ? animated:(BOOL )animated? ? ? ? ? ? ? ? ? ? ? ? action:(click )click{#ifdef IPHONE_OS_VERSION_MAX_IPHONE_8_0? ? UIAlertController *alertController = [UIAlertController alertControllerWithTitle:title message:message preferredStyle:UIAlertControllerStyleActionSheet];? ? ? ? [alertController addAction:[UIAlertAction actionWithTitle:destructive style:UIAlertActionStyleDestructive handler:^(UIAlertAction * _Nonnull action) {? ? ? ? if (action)? ? ? ? {? ? ? ? ? ? destructiveAction(NO_USE);? ? ? ? }? ? }]];? ? ? ? [others enumerateObjectsUsingBlock:^(NSString * _Nonnull obj, NSUInteger idx, BOOL * _Nonnull stop) {? ? ? ? if (idx == 0)? ? ? ? {? ? ? ? ? ? [alertController addAction:[UIAlertAction actionWithTitle:obj style:UIAlertActionStyleCancel handler:^(UIAlertAction * _Nonnull action) {? ? ? ? ? ? ? ? if (action)? ? ? ? ? ? ? ? {? ? ? ? ? ? ? ? ? ? click(idx);? ? ? ? ? ? ? ? }? ? ? ? ? ? }]];? ? ? ? }? ? ? ? else? ? ? ? {? ? ? ? ? ? [alertController addAction:[UIAlertAction actionWithTitle:obj style:UIAlertActionStyleDefault handler:^(UIAlertAction * _Nonnull action) {? ? ? ? ? ? ? ? if (action)? ? ? ? ? ? ? ? {? ? ? ? ? ? ? ? ? ? click(idx);? ? ? ? ? ? ? ? }? ? ? ? ? ? }]];? ? ? ? }? ? }];? ? UIViewController *vc =[self currentViewController];? ? [vc presentViewController:alertController animated:animated completion:nil];#else? ? UIActionSheet *sheet = nil;? ? if (others.count > 0)? ? {? ? ? ? sheet = [[UIActionSheet alloc] initWithTitle:title delegate:self cancelButtonTitle:others[0] destructiveButtonTitle:destructive otherButtonTitles:nil];? ? }? ? else? ? {? ? ? ? sheet = [[UIActionSheet alloc] initWithTitle:title delegate:nil cancelButtonTitle:nil destructiveButtonTitle:destructive otherButtonTitles:nil];? ? }? ? ? ? [others enumerateObjectsUsingBlock:^(NSString * _Nonnull obj, NSUInteger idx, BOOL * _Nonnull stop) {? ? ? ? if (idx != 0)? ? ? ? {? ? ? ? ? ? [sheet addButtonWithTitle:obj];? ? ? ? }? ? }];? ? clickIndex = click;? ? clickDestructive = destructiveAction;? ? [sheet showInView:self.view];#endif}#ifdef IPHONE_OS_VERSION_MIN_IPHONE_8_0- (void)actionSheet:(UIActionSheet *)actionSheet clickedButtonAtIndex:(NSInteger)buttonIndex{? ? if (buttonIndex == 0)? ? {? ? ? ? if (clickDestructive)? ? ? ? {? ? ? ? ? ? clickDestructive(NO_USE);? ? ? ? }? ? }? ? else? ? {? ? ? ? if (clickIndex)? ? ? ? {? ? ? ? ? ? clickIndex(buttonIndex - 1);? ? ? ? }? ? }}#endif#pragma mark - *****? textField- (void)YXBAlertWithTitle:(NSString *)title? ? ? ? ? ? ? ? message:(NSString *)message? ? ? ? ? ? ? ? buttons:(NSArray*)buttons

textFieldNumber:(NSInteger )number

configuration:(configuration )configuration

animated:(BOOL )animated

action:(clickHaveField )click

{

if (fields == nil)

{

fields = [NSMutableArray array];

}

else

{

[fields removeAllObjects];

}

#ifdef IPHONE_OS_VERSION_MAX_IPHONE_8_0

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

// textfield

for (NSInteger i = 0; i < number; i++)

{

[alertController addTextFieldWithConfigurationHandler:^(UITextField * _Nonnull textField) {

[fields addObject:textField];

configuration(textField,i);

}];

}

// button

[buttons enumerateObjectsUsingBlock:^(NSString * _Nonnull obj, NSUInteger idx, BOOL * _Nonnull stop) {

if (idx == 0)

{

[alertController addAction:[UIAlertAction actionWithTitle:obj style:UIAlertActionStyleCancel handler:^(UIAlertAction * _Nonnull action) {

if (action)

{

click(fields,idx);

}

}]];

}

else

{

[alertController addAction:[UIAlertAction actionWithTitle:obj style:UIAlertActionStyleDefault handler:^(UIAlertAction * _Nonnull action) {

if (action)

{

click(fields,idx);

}

}]];

}

}];

UIViewController *vc =[self currentViewController];

[vc presentViewController:alertController animated:animated completion:nil];

#else

UIAlertView *alertView = nil;

if (buttons.count > 0)

{

alertView = [[UIAlertView alloc] initWithTitle:title message:message delegate:self cancelButtonTitle:buttons[0] otherButtonTitles:nil];

}

else

{

alertView = [[UIAlertView alloc] initWithTitle:title message:message delegate:nil cancelButtonTitle:nil otherButtonTitles:nil];

}

// field

if (number == 1)

{

alertView.alertViewStyle = UIAlertViewStylePlainTextInput;

}

else if (number > 2)

{

alertView.alertViewStyle = UIAlertViewStyleLoginAndPasswordInput;

}

// configuration field

if (alertView.alertViewStyle == UIAlertViewStyleLoginAndPasswordInput)

{

[fields addObject:[alertView textFieldAtIndex:0]];

[fields addObject:[alertView textFieldAtIndex:1]];

configuration([alertView textFieldAtIndex:0],0);

configuration([alertView textFieldAtIndex:1],1);

}

else if(alertView.alertViewStyle == UIAlertViewStylePlainTextInput || alertView.alertViewStyle == UIAlertViewStyleSecureTextInput)

{

[fields addObject:[alertView textFieldAtIndex:0]];

configuration([alertView textFieldAtIndex:0],0);

}

// other button

[buttons enumerateObjectsUsingBlock:^(NSString * _Nonnull obj, NSUInteger idx, BOOL * _Nonnull stop) {

if (idx != 0)

{

[alertView addButtonWithTitle:obj];

}

}];

clickIncludeFields = click;

[alertView show];

#endif

}

- (UIViewController *)currentViewController

{

AppDelegate *app = [UIApplication sharedApplication].delegate;

UIViewController *vc = app.window.rootViewController;

if ([vc isKindOfClass:[UITabBarController class]]) {

UITabBarController *tab = (UITabBarController *)vc;

if ([tab.selectedViewController isKindOfClass:[UINavigationController class]]) {

UINavigationController *nav = (UINavigationController *)tab.selectedViewController;

return [nav.viewControllers lastObject];

} else {

return tab.selectedViewController;

}

} else if ([vc isKindOfClass:[UINavigationController class]]) {

UINavigationController *nav = (UINavigationController *)vc;

return [nav.viewControllers lastObject];

} else {

return vc;

}

return vc;

}

@end

沽一、盖溺、、

最后編輯于
?著作權(quán)歸作者所有,轉(zhuǎn)載或內(nèi)容合作請(qǐng)聯(lián)系作者
  • 序言:七十年代末铣缠,一起剝皮案震驚了整個(gè)濱河市烘嘱,隨后出現(xiàn)的幾起案子,更是在濱河造成了極大的恐慌蝗蛙,老刑警劉巖蝇庭,帶你破解...
    沈念sama閱讀 206,214評(píng)論 6 481
  • 序言:濱河連續(xù)發(fā)生了三起死亡事件,死亡現(xiàn)場(chǎng)離奇詭異捡硅,居然都是意外死亡哮内,警方通過(guò)查閱死者的電腦和手機(jī),發(fā)現(xiàn)死者居然都...
    沈念sama閱讀 88,307評(píng)論 2 382
  • 文/潘曉璐 我一進(jìn)店門(mén)壮韭,熙熙樓的掌柜王于貴愁眉苦臉地迎上來(lái)北发,“玉大人,你說(shuō)我怎么就攤上這事喷屋×詹Γ” “怎么了?”我有些...
    開(kāi)封第一講書(shū)人閱讀 152,543評(píng)論 0 341
  • 文/不壞的土叔 我叫張陵屯曹,是天一觀的道長(zhǎng)狱庇。 經(jīng)常有香客問(wèn)我惊畏,道長(zhǎng),這世上最難降的妖魔是什么密任? 我笑而不...
    開(kāi)封第一講書(shū)人閱讀 55,221評(píng)論 1 279
  • 正文 為了忘掉前任颜启,我火速辦了婚禮,結(jié)果婚禮上批什,老公的妹妹穿的比我還像新娘农曲。我一直安慰自己,他們只是感情好驻债,可當(dāng)我...
    茶點(diǎn)故事閱讀 64,224評(píng)論 5 371
  • 文/花漫 我一把揭開(kāi)白布乳规。 她就那樣靜靜地躺著,像睡著了一般合呐。 火紅的嫁衣襯著肌膚如雪暮的。 梳的紋絲不亂的頭發(fā)上,一...
    開(kāi)封第一講書(shū)人閱讀 49,007評(píng)論 1 284
  • 那天淌实,我揣著相機(jī)與錄音冻辩,去河邊找鬼。 笑死拆祈,一個(gè)胖子當(dāng)著我的面吹牛恨闪,可吹牛的內(nèi)容都是我干的。 我是一名探鬼主播放坏,決...
    沈念sama閱讀 38,313評(píng)論 3 399
  • 文/蒼蘭香墨 我猛地睜開(kāi)眼咙咽,長(zhǎng)吁一口氣:“原來(lái)是場(chǎng)噩夢(mèng)啊……” “哼!你這毒婦竟也來(lái)了淤年?” 一聲冷哼從身側(cè)響起钧敞,我...
    開(kāi)封第一講書(shū)人閱讀 36,956評(píng)論 0 259
  • 序言:老撾萬(wàn)榮一對(duì)情侶失蹤,失蹤者是張志新(化名)和其女友劉穎麸粮,沒(méi)想到半個(gè)月后溉苛,有當(dāng)?shù)厝嗽跇?shù)林里發(fā)現(xiàn)了一具尸體,經(jīng)...
    沈念sama閱讀 43,441評(píng)論 1 300
  • 正文 獨(dú)居荒郊野嶺守林人離奇死亡弄诲,尸身上長(zhǎng)有42處帶血的膿包…… 初始之章·張勛 以下內(nèi)容為張勛視角 年9月15日...
    茶點(diǎn)故事閱讀 35,925評(píng)論 2 323
  • 正文 我和宋清朗相戀三年愚战,在試婚紗的時(shí)候發(fā)現(xiàn)自己被綠了。 大學(xué)時(shí)的朋友給我發(fā)了我未婚夫和他白月光在一起吃飯的照片齐遵。...
    茶點(diǎn)故事閱讀 38,018評(píng)論 1 333
  • 序言:一個(gè)原本活蹦亂跳的男人離奇死亡凤巨,死狀恐怖,靈堂內(nèi)的尸體忽然破棺而出洛搀,到底是詐尸還是另有隱情敢茁,我是刑警寧澤,帶...
    沈念sama閱讀 33,685評(píng)論 4 322
  • 正文 年R本政府宣布留美,位于F島的核電站彰檬,受9級(jí)特大地震影響伸刃,放射性物質(zhì)發(fā)生泄漏。R本人自食惡果不足惜逢倍,卻給世界環(huán)境...
    茶點(diǎn)故事閱讀 39,234評(píng)論 3 307
  • 文/蒙蒙 一捧颅、第九天 我趴在偏房一處隱蔽的房頂上張望。 院中可真熱鬧较雕,春花似錦碉哑、人聲如沸。這莊子的主人今日做“春日...
    開(kāi)封第一講書(shū)人閱讀 30,240評(píng)論 0 19
  • 文/蒼蘭香墨 我抬頭看了看天上的太陽(yáng)。三九已至慎玖,卻和暖如春贮尖,著一層夾襖步出監(jiān)牢的瞬間,已是汗流浹背趁怔。 一陣腳步聲響...
    開(kāi)封第一講書(shū)人閱讀 31,464評(píng)論 1 261
  • 我被黑心中介騙來(lái)泰國(guó)打工湿硝, 沒(méi)想到剛下飛機(jī)就差點(diǎn)兒被人妖公主榨干…… 1. 我叫王不留,地道東北人润努。 一個(gè)月前我還...
    沈念sama閱讀 45,467評(píng)論 2 352
  • 正文 我出身青樓关斜,卻偏偏與公主長(zhǎng)得像,于是被迫代替她去往敵國(guó)和親铺浇。 傳聞我的和親對(duì)象是個(gè)殘疾皇子痢畜,可洞房花燭夜當(dāng)晚...
    茶點(diǎn)故事閱讀 42,762評(píng)論 2 345

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