LCActionSheet+RQExtension.m 697 B

1234567891011121314151617181920212223242526272829
  1. //
  2. // LCActionSheet+RQExtension.m
  3. // RQCommon
  4. //
  5. // Created by 张嵘 on 2018/11/23.
  6. // Copyright © 2018 张嵘. All rights reserved.
  7. //
  8. #import "LCActionSheet+RQExtension.h"
  9. @implementation LCActionSheet (RQExtension)
  10. + (void)rq_configureActionSheet {
  11. LCActionSheetConfig *config = LCActionSheetConfig.config;
  12. /// 蒙版可点击
  13. config.darkViewNoTaped = NO;
  14. config.separatorColor = RQ_MAIN_LINE_COLOR_1;
  15. config.buttonColor = [UIColor qmui_colorWithHexString:@"#3C3E44"];
  16. config.buttonFont = RQRegularFont_16;
  17. config.unBlur = YES;
  18. config.darkOpacity = .6f;
  19. /// 设置
  20. config.titleEdgeInsets = UIEdgeInsetsMake(27, 22, 27, 22);
  21. config.titleFont = RQRegularFont_13;
  22. }
  23. @end