1234567891011121314151617181920212223242526272829 |
- //
- // LCActionSheet+RQExtension.m
- // RQCommon
- //
- // Created by 张嵘 on 2018/11/23.
- // Copyright © 2018 张嵘. All rights reserved.
- //
- #import "LCActionSheet+RQExtension.h"
- @implementation LCActionSheet (RQExtension)
- + (void)rq_configureActionSheet {
- LCActionSheetConfig *config = LCActionSheetConfig.config;
-
- /// 蒙版可点击
- config.darkViewNoTaped = NO;
- config.separatorColor = RQ_MAIN_LINE_COLOR_1;
- config.buttonColor = [UIColor qmui_colorWithHexString:@"#3C3E44"];
- config.buttonFont = RQRegularFont_16;
- config.unBlur = YES;
- config.darkOpacity = .6f;
-
- /// 设置
- config.titleEdgeInsets = UIEdgeInsetsMake(27, 22, 27, 22);
- config.titleFont = RQRegularFont_13;
-
- }
- @end
|