iOS-簡(jiǎn)約系統(tǒng)風(fēng)格自由定制的彈窗Alert&ActionSheet

先上效果圖

SLAlertView.gif

再上demo地址 如果覺(jué)得好用請(qǐng)給star鼓勵(lì) 謝謝

github demo

項(xiàng)目介紹

  • 這是一款簡(jiǎn)約系統(tǒng)風(fēng)格的彈窗抬虽,開(kāi)發(fā)者可通過(guò)一句代碼創(chuàng)建并彈出官觅。
  • 開(kāi)發(fā)者可以選擇通過(guò)代理的方式或者block的方式來(lái)監(jiān)聽(tīng)按鈕的點(diǎn)擊事件。
  • 開(kāi)發(fā)者可通過(guò)settingHandler設(shè)置彈窗的背景顏色阐污、字體顏色休涤、字體以及分割線(xiàn)的顏色以滿(mǎn)足不同風(fēng)格的app的需求
  • 更加詳盡的使用情況請(qǐng)下載demo

使用說(shuō)明

安裝

將demo中的SLAlertView文件夾拖入項(xiàng)目


SLAlertView文件夾.png

接口說(shuō)明

/**
 *  創(chuàng)建并彈出使用代理監(jiān)聽(tīng)點(diǎn)擊事件的默認(rèn)的alertView
 *  param title   標(biāo)題
 *  param message   提示文字內(nèi)容
 *  param delegate  代理 可通過(guò)設(shè)置代理監(jiān)聽(tīng)按鈕的點(diǎn)擊
 *  param preferredStyle    彈出樣式
 *  param cancelButtonTitle     取消按鈕文字
 *  param otherButtonTitles     其他按鈕文字(數(shù)組)@[@"other1",@"other2"]
 */
+ (void)alertViewWithTitle:(nullable NSString *)title
                   message:(nullable NSString *)message
                  delegate:(nullable id<SLAlertViewProtocol>)delegate
            preferredStyle:(SLAlertViewStyle)preferredStyle
         cancelButtonTitle:(nullable NSString *)cancelButtonTitle
         otherButtonTitles:(nullable NSArray *)otherButtonTitles;




/**
 *  創(chuàng)建并彈出使用block監(jiān)聽(tīng)點(diǎn)擊事件的默認(rèn)的alertView
 *  param title   標(biāo)題
 *  param message   提示文字內(nèi)容
 *  param preferredStyle    彈出樣式
 *  param cancelButtonTitle     取消按鈕文字
 *  param otherButtonTitles     其他按鈕文字(數(shù)組)@[@"other1",@"other2"]
 *  param clickHandler     點(diǎn)擊按鈕的回調(diào)
 */
+ (void)alertViewWithTitle:(nullable NSString *)title
                   message:(nullable NSString *)message
            preferredStyle:(SLAlertViewStyle)preferredStyle
         cancelButtonTitle:(nullable NSString *)cancelButtonTitle
         otherButtonTitles:(nullable NSArray *)otherButtonTitles
              clickHandler:(nullable void (^)(SLAlertView * _Nonnull alertView,NSInteger buttonIndex,NSString * _Nullable buttonTitle))clickHandler;





/**
 *  創(chuàng)建并彈出使用代理監(jiān)聽(tīng)點(diǎn)擊事件的可自定義的alertView
 *  param title   標(biāo)題
 *  param message   提示文字內(nèi)容
 *  param delegate  代理 可通過(guò)設(shè)置代理監(jiān)聽(tīng)按鈕的點(diǎn)擊
 *  param preferredStyle    彈出樣式
 *  param cancelButtonTitle     取消按鈕文字
 *  param otherButtonTitles     其他按鈕文字(數(shù)組)@[@"other1",@"other2"]
 *  param settingHandler    自定義設(shè)置的回調(diào) 可通過(guò)此block設(shè)置各種背景顏色、字體顏色和字體笛辟。
    自定義設(shè)置方式:
    alertView.titleColor = [UIColor blackColor];
    alertView.messageColor = [UIColor blackColor];
    ...
 */
+ (void)alertViewWithTitle:(nullable NSString *)title
                   message:(nullable NSString *)message
                  delegate:(nullable id<SLAlertViewProtocol>)delegate
            preferredStyle:(SLAlertViewStyle)preferredStyle
         cancelButtonTitle:(nullable NSString *)cancelButtonTitle
         otherButtonTitles:(nullable NSArray *)otherButtonTitles
            settingHandler:(nullable void (^)( SLAlertView * _Nonnull alertView))settingHandler;




/**
 *  創(chuàng)建并彈出使用block監(jiān)聽(tīng)點(diǎn)擊事件的可自定義的alertView
 *  param title   標(biāo)題
 *  param message   提示文字內(nèi)容
 *  param preferredStyle    彈出樣式
 *  param cancelButtonTitle     取消按鈕文字
 *  param otherButtonTitles     其他按鈕文字(數(shù)組)@[@"other1",@"other2"]
 *  param settingHandler    自定義設(shè)置的回調(diào) 可通過(guò)此block設(shè)置各種背景顏色功氨、字體顏色和字體。
    自定義設(shè)置方式:
    alertView.titleColor = [UIColor blackColor];
    alertView.messageColor = [UIColor blackColor];
    ...
 *  param clickHandler     點(diǎn)擊按鈕的回調(diào)
 */
+ (void)alertViewWithTitle:(nullable NSString *)title
                   message:(nullable NSString *)message
            preferredStyle:(SLAlertViewStyle)preferredStyle
         cancelButtonTitle:(nullable NSString *)cancelButtonTitle
         otherButtonTitles:(nullable NSArray *)otherButtonTitles
            settingHandler:(nullable void (^)( SLAlertView * _Nonnull alertView))settingHandler
              clickHandler:(nullable void (^)(SLAlertView * _Nonnull alertView,NSInteger buttonIndex,NSString * _Nullable buttonTitle))clickHandler;


// 代理方法
- (void)alertView:(SLAlert * _Nonnull)alertView didSelectedButtonWithButtonIndex:(NSInteger)index buttonTitle:(NSString * _Nullable)buttonTitle;
- (void)actionSheet:(SLActionSheet * _Nonnull)actionSheet didSelectedButtonWithButtonIndex:(NSInteger)index buttonTitle:(NSString * _Nullable)buttonTitle;

調(diào)用

  • 導(dǎo)入頭文件
#import "SLAlertView.h"
  • 在需要彈窗的地方調(diào)用接口
    1> 創(chuàng)建并彈出使用代理監(jiān)聽(tīng)點(diǎn)擊事件的默認(rèn)的alert / actionSheet
// alert
[SLAlertView alertViewWithTitle:@"title"
                            message:@"messagemessagemessagemessagemessagemessagemessagemessaemessagemessage"
                           delegate:self
                     preferredStyle:SLAlertViewStyleAlert
                  cancelButtonTitle:@"cancel"
                  otherButtonTitles:nil];

 // action sheet
    [SLAlertView alertViewWithTitle:@"title"
                            message:@"this is message"
                           delegate:self
                     preferredStyle:SLAlertViewStyleActionSheet
                  cancelButtonTitle:@"cancel"
                  otherButtonTitles:@[@"other"]];

2> 創(chuàng)建并彈出使用block監(jiān)聽(tīng)點(diǎn)擊事件的默認(rèn)的alert / actionSheet

// 通過(guò)block回調(diào)方式創(chuàng)建alert
    [SLAlertView alertViewWithTitle:@"title"
                            message:@"message"
                     preferredStyle:SLAlertViewStyleAlert
                  cancelButtonTitle:@"cancel"
                  otherButtonTitles:@[@"other"]
                       clickHandler:^(SLAlertView * _Nonnull alertView, NSInteger buttonIndex, NSString * _Nullable buttonTitle) {
        
        NSLog(@"block %ld-%@",buttonIndex,buttonTitle);
        
    }];
// 通過(guò)block回調(diào)方式創(chuàng)建action sheet
    [SLAlertView alertViewWithTitle:@"actionSheet"
                            message:@"sheet_default"
                     preferredStyle:SLAlertViewStyleActionSheet
                  cancelButtonTitle:@"cancel"
                  otherButtonTitles:@[@"other1",@"other2",@"other3"]
                       clickHandler:^(SLAlertView * _Nonnull alertView, NSInteger buttonIndex, NSString * _Nullable buttonTitle) {
         NSLog(@"block sheet_default %ld-%@",buttonIndex,buttonTitle);
    }];

3> 自定義的情況(以actionSheet為例手幢,alert用法完全一樣)

 [SLAlertView alertViewWithTitle:@"title"
                            message:@"message"
                     preferredStyle:SLAlertViewStyleActionSheet
                  cancelButtonTitle:@"cancel"
                  otherButtonTitles:@[@"other1",@"other2"]
                     settingHandler:^(SLAlertView * _Nonnull alertView) {
        
                         alertView.titleBackgroundColor = [UIColor colorWithRed:arc4random() % 256 / 255.0 green:arc4random() % 256 / 255.0 blue:arc4random() % 256 / 255.0 alpha:1.0];
                         alertView.messageBackgroundColor = [UIColor colorWithRed:arc4random() % 256 / 255.0 green:arc4random() % 256 / 255.0 blue:arc4random() % 256 / 255.0 alpha:1.0];
                         alertView.otherBackgroundColor = [UIColor colorWithRed:arc4random() % 256 / 255.0 green:arc4random() % 256 / 255.0 blue:arc4random() % 256 / 255.0 alpha:1.0];
                         alertView.cancelBackgroundColor = [UIColor colorWithRed:arc4random() % 256 / 255.0 green:arc4random() % 256 / 255.0 blue:arc4random() % 256 / 255.0 alpha:1.0];
                         alertView.titleColor = [UIColor colorWithRed:arc4random() % 256 / 255.0 green:arc4random() % 256 / 255.0 blue:arc4random() % 256 / 255.0 alpha:1.0];
                         alertView.messageColor = [UIColor colorWithRed:arc4random() % 256 / 255.0 green:arc4random() % 256 / 255.0 blue:arc4random() % 256 / 255.0 alpha:1.0];
                         alertView.otherTitleColor = [UIColor colorWithRed:arc4random() % 256 / 255.0 green:arc4random() % 256 / 255.0 blue:arc4random() % 256 / 255.0 alpha:1.0];
                         alertView.cancelTitleColor = [UIColor colorWithRed:arc4random() % 256 / 255.0 green:arc4random() % 256 / 255.0 blue:arc4random() % 256 / 255.0 alpha:1.0];
                         alertView.separatorColor = [UIColor colorWithRed:arc4random() % 256 / 255.0 green:arc4random() % 256 / 255.0 blue:arc4random() % 256 / 255.0 alpha:1.0];
                         alertView.titleFont = [UIFont fontWithName:@"AmericanTypewriter-Bold" size:16];
                         alertView.messageFont = [UIFont fontWithName:@"AmericanTypewriter" size:16];
                         alertView.otherTitleFont = [UIFont fontWithName:@"DBLCDTempBlack" size:16];
                         alertView.cancelTitleFont = [UIFont fontWithName:@"AmericanTypewriter-Bold" size:16];
    }
                       clickHandler:^(SLAlertView * _Nonnull alertView, NSInteger buttonIndex, NSString * _Nullable buttonTitle) {
        
        NSLog(@"block sheet_customBackgroundColor %ld-%@",buttonIndex,buttonTitle);
        
    }];

4> 代理方法捷凄。遵守協(xié)議 <SLAlertViewProtocol>

 - (void)actionSheet:(SLActionSheet *)actionSheet didSelectedButtonWithButtonIndex:(NSInteger)index buttonTitle:(NSString *)buttonTitle {
    NSLog(@"actionSheet:didSelectedButtonWithButtonIndex:%ld buttonTitle:%@",index,buttonTitle);
}
 - (void)alertView:(SLAlert *)alertView didSelectedButtonWithButtonIndex:(NSInteger)index buttonTitle:(NSString *)buttonTitle {
    NSLog(@"alertView:didSelectedButtonWithButtonIndex:%ld buttonTitle:%@",index,buttonTitle);
}

轉(zhuǎn)載請(qǐng)注明出處,好用請(qǐng)github star围来。謝謝跺涤!

最后編輯于
?著作權(quán)歸作者所有,轉(zhuǎn)載或內(nèi)容合作請(qǐng)聯(lián)系作者
  • 序言:七十年代末,一起剝皮案震驚了整個(gè)濱河市监透,隨后出現(xiàn)的幾起案子桶错,更是在濱河造成了極大的恐慌,老刑警劉巖胀蛮,帶你破解...
    沈念sama閱讀 207,113評(píng)論 6 481
  • 序言:濱河連續(xù)發(fā)生了三起死亡事件院刁,死亡現(xiàn)場(chǎng)離奇詭異,居然都是意外死亡粪狼,警方通過(guò)查閱死者的電腦和手機(jī)退腥,發(fā)現(xiàn)死者居然都...
    沈念sama閱讀 88,644評(píng)論 2 381
  • 文/潘曉璐 我一進(jìn)店門(mén)任岸,熙熙樓的掌柜王于貴愁眉苦臉地迎上來(lái),“玉大人狡刘,你說(shuō)我怎么就攤上這事享潜。” “怎么了颓帝?”我有些...
    開(kāi)封第一講書(shū)人閱讀 153,340評(píng)論 0 344
  • 文/不壞的土叔 我叫張陵米碰,是天一觀(guān)的道長(zhǎng)。 經(jīng)常有香客問(wèn)我购城,道長(zhǎng)吕座,這世上最難降的妖魔是什么? 我笑而不...
    開(kāi)封第一講書(shū)人閱讀 55,449評(píng)論 1 279
  • 正文 為了忘掉前任瘪板,我火速辦了婚禮吴趴,結(jié)果婚禮上,老公的妹妹穿的比我還像新娘侮攀。我一直安慰自己锣枝,他們只是感情好,可當(dāng)我...
    茶點(diǎn)故事閱讀 64,445評(píng)論 5 374
  • 文/花漫 我一把揭開(kāi)白布兰英。 她就那樣靜靜地躺著撇叁,像睡著了一般。 火紅的嫁衣襯著肌膚如雪畦贸。 梳的紋絲不亂的頭發(fā)上陨闹,一...
    開(kāi)封第一講書(shū)人閱讀 49,166評(píng)論 1 284
  • 那天,我揣著相機(jī)與錄音薄坏,去河邊找鬼趋厉。 笑死,一個(gè)胖子當(dāng)著我的面吹牛胶坠,可吹牛的內(nèi)容都是我干的君账。 我是一名探鬼主播,決...
    沈念sama閱讀 38,442評(píng)論 3 401
  • 文/蒼蘭香墨 我猛地睜開(kāi)眼沈善,長(zhǎng)吁一口氣:“原來(lái)是場(chǎng)噩夢(mèng)啊……” “哼乡数!你這毒婦竟也來(lái)了?” 一聲冷哼從身側(cè)響起闻牡,我...
    開(kāi)封第一講書(shū)人閱讀 37,105評(píng)論 0 261
  • 序言:老撾萬(wàn)榮一對(duì)情侶失蹤瞳脓,失蹤者是張志新(化名)和其女友劉穎,沒(méi)想到半個(gè)月后澈侠,有當(dāng)?shù)厝嗽跇?shù)林里發(fā)現(xiàn)了一具尸體,經(jīng)...
    沈念sama閱讀 43,601評(píng)論 1 300
  • 正文 獨(dú)居荒郊野嶺守林人離奇死亡埋酬,尸身上長(zhǎng)有42處帶血的膿包…… 初始之章·張勛 以下內(nèi)容為張勛視角 年9月15日...
    茶點(diǎn)故事閱讀 36,066評(píng)論 2 325
  • 正文 我和宋清朗相戀三年哨啃,在試婚紗的時(shí)候發(fā)現(xiàn)自己被綠了烧栋。 大學(xué)時(shí)的朋友給我發(fā)了我未婚夫和他白月光在一起吃飯的照片。...
    茶點(diǎn)故事閱讀 38,161評(píng)論 1 334
  • 序言:一個(gè)原本活蹦亂跳的男人離奇死亡拳球,死狀恐怖审姓,靈堂內(nèi)的尸體忽然破棺而出,到底是詐尸還是另有隱情祝峻,我是刑警寧澤魔吐,帶...
    沈念sama閱讀 33,792評(píng)論 4 323
  • 正文 年R本政府宣布,位于F島的核電站莱找,受9級(jí)特大地震影響酬姆,放射性物質(zhì)發(fā)生泄漏。R本人自食惡果不足惜奥溺,卻給世界環(huán)境...
    茶點(diǎn)故事閱讀 39,351評(píng)論 3 307
  • 文/蒙蒙 一辞色、第九天 我趴在偏房一處隱蔽的房頂上張望。 院中可真熱鬧浮定,春花似錦相满、人聲如沸。這莊子的主人今日做“春日...
    開(kāi)封第一講書(shū)人閱讀 30,352評(píng)論 0 19
  • 文/蒼蘭香墨 我抬頭看了看天上的太陽(yáng)。三九已至方灾,卻和暖如春建蹄,著一層夾襖步出監(jiān)牢的瞬間,已是汗流浹背迎吵。 一陣腳步聲響...
    開(kāi)封第一講書(shū)人閱讀 31,584評(píng)論 1 261
  • 我被黑心中介騙來(lái)泰國(guó)打工躲撰, 沒(méi)想到剛下飛機(jī)就差點(diǎn)兒被人妖公主榨干…… 1. 我叫王不留,地道東北人击费。 一個(gè)月前我還...
    沈念sama閱讀 45,618評(píng)論 2 355
  • 正文 我出身青樓拢蛋,卻偏偏與公主長(zhǎng)得像,于是被迫代替她去往敵國(guó)和親蔫巩。 傳聞我的和親對(duì)象是個(gè)殘疾皇子谆棱,可洞房花燭夜當(dāng)晚...
    茶點(diǎn)故事閱讀 42,916評(píng)論 2 344

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