// // UIAlertController+RQExtension.h // RQCommon // // Created by 张嵘 on 2018/11/23. // Copyright © 2018 张嵘. All rights reserved. // #import @interface UIAlertController (RQExtension) /// 统一按钮样式 不写系统默认的蓝色 @property (nonatomic , readwrite, strong) UIColor *tintColor; /// 标题的颜色 @property (nonatomic , readwrite, strong) UIColor *titleColor; /// 信息的颜色 @property (nonatomic , readwrite, strong) UIColor *messageColor; @end @interface UIAlertAction (RQExtension) /**< 按钮title字体颜色 */ @property (nonatomic , readwrite, strong) UIColor *textColor; @end