UIAlertController 簡單修改title以及按鈕的字體顏色(block)

歡迎加入 iOS開發(fā)QQ群:151133690

本篇內(nèi)容是對<a href ="http://www.reibang.com/p/cecd1b4bbf27" > UIAlertController 簡單修改title以及按鈕的字體顏色 </a>的加強(qiáng)版,對系統(tǒng)UIAlertController類添加Category使用更加簡單,同時添加block回調(diào)方法

/**
 根據(jù)otherActionTitles數(shù)組創(chuàng)建UIAlertController

 @param title title
 @param message message
 @param cancelActionTitle 取消Action標(biāo)題
 @param otherActionTitles 其他Action標(biāo)題
 @param handle 點(diǎn)擊回調(diào) -1 取消Action點(diǎn)擊 0~n 其他Action點(diǎn)擊
 @return UIAlertController
 */
+(instancetype)alertControllerWithTitle:(NSString *)title message:(NSString *)message cancelActionTitle:(NSString *)cancelActionTitle otherActionTitles:(NSArray<NSString *> *)otherActionTitles handle:(void (^)(NSInteger index))handle;

先來看看效果示例

修改按鈕顏色.PNG
修改標(biāo)題顏色.PNG
修改按鈕和標(biāo)題的顏色.PNG

做法很簡單,自己寫UIAlertController的Category 別忘了導(dǎo)入頭文件,然后復(fù)制如下代碼到.h 和.m即可.

UIAlertController+Color.h

//
//  UIAlertController+Color.h
//  UIAlertControllerColor
//
//  Created by benben on 16/12/15.
//  Copyright ? 2016年 benben. All rights reserved.
//

#import <UIKit/UIKit.h>

@interface UIAlertController (Color)

@property (nonatomic,strong) UIColor *tintColor; /**< 統(tǒng)一按鈕樣式 不寫系統(tǒng)默認(rèn)的藍(lán)色 */
@property (nonatomic,strong) UIColor *titleColor; /**< 標(biāo)題的顏色 */
@property (nonatomic,strong) UIColor *messageColor; /**< 信息的顏色 */


/**
 根據(jù)otherActionTitles數(shù)組創(chuàng)建UIAlertController

 @param title title
 @param message message
 @param cancelActionTitle 取消Action標(biāo)題
 @param otherActionTitles 其他Action標(biāo)題
 @param handle 點(diǎn)擊回調(diào) -1 取消Action點(diǎn)擊 0~n 其他Action點(diǎn)擊
 @return UIAlertController
 */
+(instancetype)alertControllerWithTitle:(NSString *)title message:(NSString *)message cancelActionTitle:(NSString *)cancelActionTitle otherActionTitles:(NSArray<NSString *> *)otherActionTitles handle:(void (^)(NSInteger index))handle;

@end

@interface UIAlertAction (Color)

@property (nonatomic,strong) UIColor *textColor; /**< 按鈕title字體顏色 */

@end

UIAlertController+Color.m

//
//  UIAlertController+Color.h
//  UIAlertControllerColor
//
//  Created by benben on 16/12/15.
//  Copyright ? 2016年 benben. All rights reserved.
//

#import "UIAlertController+Color.h"
#import <objc/runtime.h>

@implementation UIAlertController (Color)

/**
 根據(jù)otherActionTitles數(shù)組創(chuàng)建UIAlertController
 
 @param title title
 @param message message
 @param cancelActionTitle 取消Action標(biāo)題
 @param otherActionTitles 其他Action標(biāo)題
 @param handle 點(diǎn)擊回調(diào) -1 取消Action點(diǎn)擊 0~n 其他Action點(diǎn)擊
 @return UIAlertController
 */
+(instancetype)alertControllerWithTitle:(NSString *)title message:(NSString *)message cancelActionTitle:(NSString *)cancelActionTitle otherActionTitles:(NSArray<NSString *> *)otherActionTitles handle:(void (^)(NSInteger))handle
{
    UIAlertController *alertController = [UIAlertController alertControllerWithTitle:title message:message preferredStyle:UIAlertControllerStyleActionSheet];
    
    //如果有取消按鈕
    if (cancelActionTitle) {
        UIAlertAction *cancelAction = [UIAlertAction actionWithTitle:cancelActionTitle style:UIAlertActionStyleCancel handler:^(UIAlertAction * _Nonnull action) {
            
            if (handle) {
                handle(-1);
            }
        }];
        
        [alertController addAction:cancelAction];
    }
    
    if (otherActionTitles.count > 0) {
        
        [otherActionTitles enumerateObjectsUsingBlock:^(id  _Nonnull obj, NSUInteger idx, BOOL * _Nonnull stop) {
            
            UIAlertAction *otherAction = [UIAlertAction actionWithTitle:obj style:UIAlertActionStyleDefault handler:^(UIAlertAction * _Nonnull action) {
                if (handle) {
                    handle(idx);
                }
            }];
            
            [alertController addAction:otherAction];
            
        }];
    }
    
    return alertController;
}

-(void)viewWillLayoutSubviews
{
    [super viewWillLayoutSubviews];
    
    //按鈕統(tǒng)一顏色
    if (self.tintColor) {
        for (UIAlertAction *action in self.actions) {
            if (!action.textColor || action.style != UIAlertActionStyleDestructive) {
                action.textColor = self.tintColor;
            }
        }
    }
}

-(UIColor *)tintColor
{
    return objc_getAssociatedObject(self, @selector(tintColor));
}

-(void)setTintColor:(UIColor *)tintColor
{
    
    objc_setAssociatedObject(self, @selector(tintColor), tintColor, OBJC_ASSOCIATION_RETAIN_NONATOMIC);
}

-(UIColor *)titleColor
{
    return objc_getAssociatedObject(self, @selector(titleColor));
}

-(void)setTitleColor:(UIColor *)titleColor
{
    unsigned int count = 0;
    Ivar *ivars = class_copyIvarList([UIAlertController class], &count);
    for(int i = 0;i < count;i ++){
        
        Ivar ivar = ivars[i];
        NSString *ivarName = [NSString stringWithCString:ivar_getName(ivar) encoding:NSUTF8StringEncoding];

        //標(biāo)題顏色
        if ([ivarName isEqualToString:@"_attributedTitle"] && self.title && titleColor) {
            
            NSMutableAttributedString *attr = [[NSMutableAttributedString alloc]initWithString:self.title attributes:@{NSForegroundColorAttributeName:titleColor,NSFontAttributeName:[UIFont boldSystemFontOfSize:14.0]}];
            [self setValue:attr forKey:@"attributedTitle"];
        }
    }
    
    free(ivars);
    
    objc_setAssociatedObject(self, @selector(titleColor), titleColor, OBJC_ASSOCIATION_RETAIN_NONATOMIC);
}

-(UIColor *)messageColor
{
    return objc_getAssociatedObject(self, @selector(messageColor));
}

-(void)setMessageColor:(UIColor *)messageColor
{
    unsigned int count = 0;
    Ivar *ivars = class_copyIvarList([UIAlertController class], &count);
    for(int i = 0;i < count;i ++){
        
        Ivar ivar = ivars[i];
        NSString *ivarName = [NSString stringWithCString:ivar_getName(ivar) encoding:NSUTF8StringEncoding];
    
        //描述顏色
        if ([ivarName isEqualToString:@"_attributedMessage"] && self.message && messageColor) {
            
            NSMutableAttributedString *attr = [[NSMutableAttributedString alloc] initWithString:self.message attributes:@{NSForegroundColorAttributeName:messageColor,NSFontAttributeName:[UIFont systemFontOfSize:14.0]}];
            [self setValue:attr forKey:@"attributedMessage"];
        }
    }
    
    free(ivars);
    
    objc_setAssociatedObject(self, @selector(messageColor), messageColor, OBJC_ASSOCIATION_RETAIN_NONATOMIC);
}

@end


@implementation UIAlertAction (Color)
-(UIColor *)textColor
{
    return objc_getAssociatedObject(self, @selector(textColor));
}

//按鈕標(biāo)題的字體顏色
-(void)setTextColor:(UIColor *)textColor
{
    if (self.style == UIAlertActionStyleDestructive) {
        return;
    }
    
    unsigned int count = 0;
    Ivar *ivars = class_copyIvarList([UIAlertAction class], &count);
    for(int i =0;i < count;i ++){
        
        Ivar ivar = ivars[i];
        NSString *ivarName = [NSString stringWithCString:ivar_getName(ivar) encoding:NSUTF8StringEncoding];
        
        if ([ivarName isEqualToString:@"_titleTextColor"]) {
            
            [self setValue:textColor forKey:@"titleTextColor"];
        }
    }
    free(ivars);
    
    objc_setAssociatedObject(self, @selector(textColor), textColor, OBJC_ASSOCIATION_RETAIN_NONATOMIC);
}

@end

用法就很簡單了,和系統(tǒng)原生UIAlertController一樣

UIAlertController *alertController = [UIAlertController alertControllerWithTitle:@"你確定退出嗎" message:@"真的要退出嗎?" preferredStyle:UIAlertControllerStyleActionSheet];
    
    alertController.titleColor = [UIColor redColor];//修改title的顏色
    alertController.messageColor = [UIColor yellowColor]; //修改message的顏色
    
    alertController.tintColor = [UIColor redColor]; //全局修改Action的顏色 -- 當(dāng)然你也可以單獨(dú)修改某一個Action的顏色 看下面??
    
    //添加返回按鈕
    UIAlertAction *cancel = [UIAlertAction actionWithTitle:@"我不想退出" style:UIAlertActionStyleCancel handler:nil];
    [alertController addAction:cancel];
    
    cancel.textColor = [UIColor redColor]; //單個修改Action的顏色
    
    //添加確定退出按鈕
    UIAlertAction *alertAction = [UIAlertAction actionWithTitle:@"退出" style:UIAlertActionStyleDefault handler:nil];
    [alertController addAction:alertAction];
    
    [self presentViewController:alertController animated:YES completion:nil];

如果你比較懶 那么我推薦你這么使用

    UIAlertController *alertController = [UIAlertController alertControllerWithTitle:@"我是標(biāo)題" message:@"我是message" cancelActionTitle:@"我是取消按鈕" otherActionTitles:@[@"title1",@"title2",@"title3"] handle:^(NSInteger index) {
        
        //Action點(diǎn)擊回調(diào)
        //注意 cancelAction index 為 -1,
        // otherAction index為 otherActionTitles數(shù)組下標(biāo)
        
    }];
    alertController.titleColor = [UIColor redColor];//修改title的顏色
    alertController.messageColor = [UIColor yellowColor]; //修改message的顏色
    alertController.tintColor = [UIColor redColor]; //全局修改Action的顏色
    //注意 該方法 不能單獨(dú)設(shè)置 某一個Action的顏色 只能修改全部
    
    alertController.tintColor = [UIColor redColor];
    [self presentViewController:alertController animated:YES completion:nil];

好了 ,就這些了...

最后編輯于
?著作權(quán)歸作者所有,轉(zhuǎn)載或內(nèi)容合作請聯(lián)系作者
  • 序言:七十年代末驯耻,一起剝皮案震驚了整個濱河市加派,隨后出現(xiàn)的幾起案子博助,更是在濱河造成了極大的恐慌累铅,老刑警劉巖也榄,帶你破解...
    沈念sama閱讀 212,718評論 6 492
  • 序言:濱河連續(xù)發(fā)生了三起死亡事件押蚤,死亡現(xiàn)場離奇詭異耸彪,居然都是意外死亡隘世,警方通過查閱死者的電腦和手機(jī)筒扒,發(fā)現(xiàn)死者居然都...
    沈念sama閱讀 90,683評論 3 385
  • 文/潘曉璐 我一進(jìn)店門怯邪,熙熙樓的掌柜王于貴愁眉苦臉地迎上來,“玉大人花墩,你說我怎么就攤上這事悬秉〕尾剑” “怎么了?”我有些...
    開封第一講書人閱讀 158,207評論 0 348
  • 文/不壞的土叔 我叫張陵和泌,是天一觀的道長村缸。 經(jīng)常有香客問我,道長武氓,這世上最難降的妖魔是什么梯皿? 我笑而不...
    開封第一講書人閱讀 56,755評論 1 284
  • 正文 為了忘掉前任,我火速辦了婚禮县恕,結(jié)果婚禮上东羹,老公的妹妹穿的比我還像新娘。我一直安慰自己忠烛,他們只是感情好百姓,可當(dāng)我...
    茶點(diǎn)故事閱讀 65,862評論 6 386
  • 文/花漫 我一把揭開白布。 她就那樣靜靜地躺著况木,像睡著了一般垒拢。 火紅的嫁衣襯著肌膚如雪。 梳的紋絲不亂的頭發(fā)上火惊,一...
    開封第一講書人閱讀 50,050評論 1 291
  • 那天求类,我揣著相機(jī)與錄音,去河邊找鬼屹耐。 笑死尸疆,一個胖子當(dāng)著我的面吹牛,可吹牛的內(nèi)容都是我干的惶岭。 我是一名探鬼主播寿弱,決...
    沈念sama閱讀 39,136評論 3 410
  • 文/蒼蘭香墨 我猛地睜開眼,長吁一口氣:“原來是場噩夢啊……” “哼按灶!你這毒婦竟也來了症革?” 一聲冷哼從身側(cè)響起,我...
    開封第一講書人閱讀 37,882評論 0 268
  • 序言:老撾萬榮一對情侶失蹤鸯旁,失蹤者是張志新(化名)和其女友劉穎噪矛,沒想到半個月后,有當(dāng)?shù)厝嗽跇淞掷锇l(fā)現(xiàn)了一具尸體铺罢,經(jīng)...
    沈念sama閱讀 44,330評論 1 303
  • 正文 獨(dú)居荒郊野嶺守林人離奇死亡艇挨,尸身上長有42處帶血的膿包…… 初始之章·張勛 以下內(nèi)容為張勛視角 年9月15日...
    茶點(diǎn)故事閱讀 36,651評論 2 327
  • 正文 我和宋清朗相戀三年,在試婚紗的時候發(fā)現(xiàn)自己被綠了韭赘。 大學(xué)時的朋友給我發(fā)了我未婚夫和他白月光在一起吃飯的照片缩滨。...
    茶點(diǎn)故事閱讀 38,789評論 1 341
  • 序言:一個原本活蹦亂跳的男人離奇死亡,死狀恐怖,靈堂內(nèi)的尸體忽然破棺而出脉漏,到底是詐尸還是另有隱情蛋勺,我是刑警寧澤,帶...
    沈念sama閱讀 34,477評論 4 333
  • 正文 年R本政府宣布鸠删,位于F島的核電站,受9級特大地震影響贼陶,放射性物質(zhì)發(fā)生泄漏刃泡。R本人自食惡果不足惜,卻給世界環(huán)境...
    茶點(diǎn)故事閱讀 40,135評論 3 317
  • 文/蒙蒙 一碉怔、第九天 我趴在偏房一處隱蔽的房頂上張望烘贴。 院中可真熱鬧,春花似錦撮胧、人聲如沸桨踪。這莊子的主人今日做“春日...
    開封第一講書人閱讀 30,864評論 0 21
  • 文/蒼蘭香墨 我抬頭看了看天上的太陽锻离。三九已至,卻和暖如春墓怀,著一層夾襖步出監(jiān)牢的瞬間汽纠,已是汗流浹背。 一陣腳步聲響...
    開封第一講書人閱讀 32,099評論 1 267
  • 我被黑心中介騙來泰國打工傀履, 沒想到剛下飛機(jī)就差點(diǎn)兒被人妖公主榨干…… 1. 我叫王不留虱朵,地道東北人。 一個月前我還...
    沈念sama閱讀 46,598評論 2 362
  • 正文 我出身青樓钓账,卻偏偏與公主長得像碴犬,于是被迫代替她去往敵國和親。 傳聞我的和親對象是個殘疾皇子梆暮,可洞房花燭夜當(dāng)晚...
    茶點(diǎn)故事閱讀 43,697評論 2 351

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