KDotAlert

用一個(gè)簡潔的方式使用UIAlertController青柄。

一個(gè)iPhone X的適配讓樓主受盡了自定義的苦,使用系統(tǒng)API多好松忍,所以在樓主不懈的努力下潭枣,終于和組長達(dá)成一致:逐步用系統(tǒng)控件替換代碼里面的自定義控件震放,第一個(gè)挨刀的就是 BlockAlertsAnd-ActionSheets,不是樓主不喜歡它或者它寫的不好宾毒,而是因?yàn)檫@個(gè)好替換,可是啊殿遂,樓主維護(hù)的App代碼量大概在100萬行左右伍俘,全都寫成系統(tǒng)的也會吐靶靶俊勉躺!癌瘾,下面先介紹下系統(tǒng)的樣子。

iOS8.0饵溅,蘋果開放:UIAlertController 并在之后兩個(gè)版本放棄了對UIAlertView(9.0)和 UIActionSheet(8.3)的維護(hù)妨退。

NS_CLASS_DEPRECATED_IOS(2_0, 9_0, "UIAlertView is deprecated. Use UIAlertController with a preferredStyle of UIAlertControllerStyleAlert instead") __TVOS_PROHIBITED
@interface UIAlertView : UIView
@end

NS_CLASS_DEPRECATED_IOS(2_0, 8_3, "UIActionSheet is deprecated. Use UIAlertController with a preferredStyle of UIAlertControllerStyleActionSheet instead") __TVOS_PROHIBITED
@interface UIActionSheet : UIView
@end

UIAlertController 是UIAlertView &UIActionSheet的合集,通過UIAlertControllerStyle來確定是Alert or ActionSheet

NS_CLASS_AVAILABLE_IOS(8_0) @interface UIAlertController : UIViewController

+ (instancetype)alertControllerWithTitle:(nullable NSString *)title message:(nullable NSString *)message preferredStyle:(UIAlertControllerStyle)preferredStyle;

 - (void)addAction:(UIAlertAction *)action;
@property (nonatomic, readonly) NSArray<UIAlertAction *> *actions;

@property (nonatomic, strong, nullable) UIAlertAction *preferredAction NS_AVAILABLE_IOS(9_0);

- (void)addTextFieldWithConfigurationHandler:(void (^ __nullable)(UITextField *textField))configurationHandler;
@property (nullable, nonatomic, readonly) NSArray<UITextField *> *textFields;

@property (nullable, nonatomic, copy) NSString *title;
@property (nullable, nonatomic, copy) NSString *message;

@property (nonatomic, readonly) UIAlertControllerStyle preferredStyle;

@end

UIAlertController 要求初始化的時(shí)候就指明類型(preferredStyle 是 readonly)蜕企,盡管API設(shè)計(jì)的相當(dāng)簡單咬荷,但是用起來總是有點(diǎn)不太舒服,如下:
UIAlertController *alertController = [UIAlertController alertControllerWithTitle:nil message:nil preferredStyle:style];

UIAlertAction *okAction = [UIAlertAction actionWithTitle:@"OK" style:UIAlertActionStyleDefault handler:^(UIAlertAction * _Nonnull action) {
    NSLog(@"OK");
}];
UIAlertAction *cancelAction = [UIAlertAction actionWithTitle:@"Cancel" style:UIAlertActionStyleCancel handler:^(UIAlertAction * _Nonnull action) {
    NSLog(@"OK");
}];
[alertController addAction:okAction];
[alertController addAction:cancelAction];
[self /** self isKindof:UIViewController */presentViewController:alertController animated:YES /** must be YES*/ completion:nil];

樓主想哭轻掩,可是自己找的鍋幸乒,累死也要搞定,所以就著手開始處理唇牧,整了3個(gè)我就開始覺得不是辦法了罕扎,想了下,樓主決定動手改造下系統(tǒng)API丐重,樓主不會打自己臉的腔召,所以也不是瞎折騰,也不是自定義扮惦,只是改了系統(tǒng)API的調(diào)用方式臀蛛。

其實(shí)還是系統(tǒng)的!Q旅邸W瞧汀!
其實(shí)還是系統(tǒng)的Tチ臁B帐痢!氏堤!
其實(shí)還是系統(tǒng)的I尘!J笮狻闪檬!

好處是你不用太麻煩new一堆東西,也不用一次又一次addAction,只用一個(gè)點(diǎn)就可以進(jìn)行下一步购笆,基本上一氣呵成粗悯。

下面上一段代碼看看怎么使用!

[KDotAlert alert].format(@"Cancel", @"There is Cancel")
.action(@"OK", ^(UIAlertAction * _Nonnull action) {
    [self showMore:@"OK"];
}).cancel(@"Cancel", nil).show(self, nil);

至于:[self showMore:@"OK"]; self是安全的同欠,不需要你加weak

看下定義:

NS_CLASS_AVAILABLE_IOS(8_0) @interface KDotAlert : NSObject

@property (nonatomic, strong, readonly) KDotAlertFormat format;         // format title & message
@property (nonatomic, strong, readonly) NSString * _Nullable title;     // title
@property (nonatomic, strong, readonly) NSString * _Nullable message;   // message
@property (nonatomic, assign, readonly) UIAlertControllerStyle preferredStyle;  // The style of the alert controller.

@property (nonatomic, strong, readonly) KDotAlertAction action;     // Attaches an action object to the alert or action sheet. default style;
@property (nonatomic, strong, readonly) KDotAlertAction cancel;     // ... cancel style;
@property (nonatomic, strong, readonly) KDotAlertAction destructive;// ... destructive style;

// The actions that the user can take in response to the alert or action sheet.
@property (nonatomic, strong, readonly) NSArray<UIAlertAction *> * _Nullable actions;

// Make the preferred action for the user to take from an alert.
@property (nonatomic, strong, readonly) KDotAlertPreferred preferred NS_AVAILABLE_IOS(9_0);


@property (nonatomic, strong, readonly) KDotAlertTextField  textField;                  // Adds a text field to an alert;
@property (nonatomic, strong, readonly) NSArray<UITextField *> * _Nullable textFields;  // The array of text fields displayed by the alert.

@property (nonatomic, strong, readonly) KDotAlertShow show; // show with viewController 

+ (instancetype _Nonnull )alert;
+ (instancetype _Nonnull )actionSheet;

@end

基本上支持了所有系統(tǒng)API...

算了样傍,不吹了,上Github連接;

Crazy凡
2017-11-11

最后編輯于
?著作權(quán)歸作者所有,轉(zhuǎn)載或內(nèi)容合作請聯(lián)系作者
  • 序言:七十年代末横缔,一起剝皮案震驚了整個(gè)濱河市,隨后出現(xiàn)的幾起案子衫哥,更是在濱河造成了極大的恐慌茎刚,老刑警劉巖,帶你破解...
    沈念sama閱讀 210,914評論 6 490
  • 序言:濱河連續(xù)發(fā)生了三起死亡事件撤逢,死亡現(xiàn)場離奇詭異膛锭,居然都是意外死亡,警方通過查閱死者的電腦和手機(jī)蚊荣,發(fā)現(xiàn)死者居然都...
    沈念sama閱讀 89,935評論 2 383
  • 文/潘曉璐 我一進(jìn)店門初狰,熙熙樓的掌柜王于貴愁眉苦臉地迎上來,“玉大人互例,你說我怎么就攤上這事奢入。” “怎么了媳叨?”我有些...
    開封第一講書人閱讀 156,531評論 0 345
  • 文/不壞的土叔 我叫張陵腥光,是天一觀的道長。 經(jīng)常有香客問我肩杈,道長柴我,這世上最難降的妖魔是什么? 我笑而不...
    開封第一講書人閱讀 56,309評論 1 282
  • 正文 為了忘掉前任扩然,我火速辦了婚禮艘儒,結(jié)果婚禮上,老公的妹妹穿的比我還像新娘夫偶。我一直安慰自己界睁,他們只是感情好,可當(dāng)我...
    茶點(diǎn)故事閱讀 65,381評論 5 384
  • 文/花漫 我一把揭開白布兵拢。 她就那樣靜靜地躺著翻斟,像睡著了一般。 火紅的嫁衣襯著肌膚如雪说铃。 梳的紋絲不亂的頭發(fā)上访惜,一...
    開封第一講書人閱讀 49,730評論 1 289
  • 那天,我揣著相機(jī)與錄音腻扇,去河邊找鬼债热。 笑死,一個(gè)胖子當(dāng)著我的面吹牛幼苛,可吹牛的內(nèi)容都是我干的窒篱。 我是一名探鬼主播,決...
    沈念sama閱讀 38,882評論 3 404
  • 文/蒼蘭香墨 我猛地睜開眼,長吁一口氣:“原來是場噩夢啊……” “哼墙杯!你這毒婦竟也來了配并?” 一聲冷哼從身側(cè)響起,我...
    開封第一講書人閱讀 37,643評論 0 266
  • 序言:老撾萬榮一對情侶失蹤高镐,失蹤者是張志新(化名)和其女友劉穎溉旋,沒想到半個(gè)月后,有當(dāng)?shù)厝嗽跇淞掷锇l(fā)現(xiàn)了一具尸體避消,經(jīng)...
    沈念sama閱讀 44,095評論 1 303
  • 正文 獨(dú)居荒郊野嶺守林人離奇死亡低滩,尸身上長有42處帶血的膿包…… 初始之章·張勛 以下內(nèi)容為張勛視角 年9月15日...
    茶點(diǎn)故事閱讀 36,448評論 2 325
  • 正文 我和宋清朗相戀三年,在試婚紗的時(shí)候發(fā)現(xiàn)自己被綠了岩喷。 大學(xué)時(shí)的朋友給我發(fā)了我未婚夫和他白月光在一起吃飯的照片。...
    茶點(diǎn)故事閱讀 38,566評論 1 339
  • 序言:一個(gè)原本活蹦亂跳的男人離奇死亡监憎,死狀恐怖纱意,靈堂內(nèi)的尸體忽然破棺而出,到底是詐尸還是另有隱情鲸阔,我是刑警寧澤偷霉,帶...
    沈念sama閱讀 34,253評論 4 328
  • 正文 年R本政府宣布,位于F島的核電站褐筛,受9級特大地震影響类少,放射性物質(zhì)發(fā)生泄漏。R本人自食惡果不足惜渔扎,卻給世界環(huán)境...
    茶點(diǎn)故事閱讀 39,829評論 3 312
  • 文/蒙蒙 一硫狞、第九天 我趴在偏房一處隱蔽的房頂上張望。 院中可真熱鬧晃痴,春花似錦残吩、人聲如沸。這莊子的主人今日做“春日...
    開封第一講書人閱讀 30,715評論 0 21
  • 文/蒼蘭香墨 我抬頭看了看天上的太陽。三九已至紧唱,卻和暖如春活尊,著一層夾襖步出監(jiān)牢的瞬間,已是汗流浹背漏益。 一陣腳步聲響...
    開封第一講書人閱讀 31,945評論 1 264
  • 我被黑心中介騙來泰國打工蛹锰, 沒想到剛下飛機(jī)就差點(diǎn)兒被人妖公主榨干…… 1. 我叫王不留,地道東北人遭庶。 一個(gè)月前我還...
    沈念sama閱讀 46,248評論 2 360
  • 正文 我出身青樓宁仔,卻偏偏與公主長得像,于是被迫代替她去往敵國和親峦睡。 傳聞我的和親對象是個(gè)殘疾皇子翎苫,可洞房花燭夜當(dāng)晚...
    茶點(diǎn)故事閱讀 43,440評論 2 348

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