UIAlertController+RQExtension.h 642 B

12345678910111213141516171819202122232425
  1. //
  2. // UIAlertController+RQExtension.h
  3. // RQCommon
  4. //
  5. // Created by 张嵘 on 2018/11/23.
  6. // Copyright © 2018 张嵘. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. @interface UIAlertController (RQExtension)
  10. /// 统一按钮样式 不写系统默认的蓝色
  11. @property (nonatomic , readwrite, strong) UIColor *tintColor;
  12. /// 标题的颜色
  13. @property (nonatomic , readwrite, strong) UIColor *titleColor;
  14. /// 信息的颜色
  15. @property (nonatomic , readwrite, strong) UIColor *messageColor;
  16. @end
  17. @interface UIAlertAction (RQExtension)
  18. /**< 按钮title字体颜色 */
  19. @property (nonatomic , readwrite, strong) UIColor *textColor;
  20. @end