/**
|
* Tencent is pleased to support the open source community by making QMUI_iOS available.
|
* Copyright (C) 2016-2021 THL A29 Limited, a Tencent company. All rights reserved.
|
* Licensed under the MIT License (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at
|
* http://opensource.org/licenses/MIT
|
* Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License.
|
*/
|
|
//
|
// QMUIAlertController.m
|
// qmui
|
//
|
// Created by QMUI Team on 15/7/20.
|
//
|
|
#import "QMUIAlertController.h"
|
#import "QMUICore.h"
|
#import "QMUIButton.h"
|
#import "QMUITextField.h"
|
#import "UIView+QMUI.h"
|
#import "UIControl+QMUI.h"
|
#import "NSParagraphStyle+QMUI.h"
|
#import "UIImage+QMUI.h"
|
#import "CALayer+QMUI.h"
|
#import "QMUIKeyboardManager.h"
|
#import "QMUIAppearance.h"
|
#import "QMUILabel.h"
|
|
static NSUInteger alertControllerCount = 0;
|
|
#pragma mark - QMUIBUttonWrapView
|
|
@interface QMUIAlertButtonWrapView : UIView
|
|
@property(nonatomic, strong) QMUIButton *button;
|
|
@end
|
|
@implementation QMUIAlertButtonWrapView
|
|
- (instancetype)init {
|
self = [super init];
|
if (self) {
|
self.button = [[QMUIButton alloc] init];
|
self.button.adjustsButtonWhenDisabled = NO;
|
self.button.adjustsButtonWhenHighlighted = NO;
|
[self addSubview:self.button];
|
}
|
return self;
|
}
|
|
- (void)layoutSubviews {
|
[super layoutSubviews];
|
self.button.frame = self.bounds;
|
}
|
|
@end
|
|
|
#pragma mark - QMUIAlertAction
|
|
@protocol QMUIAlertActionDelegate <NSObject>
|
|
- (void)didClickAlertAction:(QMUIAlertAction *)alertAction;
|
|
@end
|
|
@interface QMUIAlertAction ()
|
|
@property(nonatomic, copy, readwrite) NSString *title;
|
@property(nonatomic, assign, readwrite) QMUIAlertActionStyle style;
|
@property(nonatomic, copy) void (^handler)(QMUIAlertController *aAlertController, QMUIAlertAction *action);
|
@property(nonatomic, weak) id<QMUIAlertActionDelegate> delegate;
|
|
@end
|
|
@implementation QMUIAlertAction
|
|
+ (nonnull instancetype)actionWithTitle:(nullable NSString *)title style:(QMUIAlertActionStyle)style handler:(void (^)(__kindof QMUIAlertController *, QMUIAlertAction *))handler {
|
QMUIAlertAction *alertAction = [[self alloc] init];
|
alertAction.title = title;
|
alertAction.style = style;
|
alertAction.handler = handler;
|
return alertAction;
|
}
|
|
- (nonnull instancetype)init {
|
self = [super init];
|
if (self) {
|
_button = [[QMUIButton alloc] init];
|
self.button.adjustsButtonWhenDisabled = NO;
|
self.button.adjustsButtonWhenHighlighted = NO;
|
self.button.qmui_automaticallyAdjustTouchHighlightedInScrollView = YES;
|
[self.button addTarget:self action:@selector(handleAlertActionEvent:) forControlEvents:UIControlEventTouchUpInside];
|
}
|
return self;
|
}
|
|
- (void)setEnabled:(BOOL)enabled {
|
_enabled = enabled;
|
self.button.enabled = enabled;
|
}
|
|
- (void)handleAlertActionEvent:(id)sender {
|
// 需要先调delegate,里面会先恢复keywindow
|
if (self.delegate && [self.delegate respondsToSelector:@selector(didClickAlertAction:)]) {
|
[self.delegate didClickAlertAction:self];
|
}
|
}
|
|
@end
|
|
|
@implementation QMUIAlertController (UIAppearance)
|
|
+ (instancetype)appearance {
|
return [QMUIAppearance appearanceForClass:self];
|
}
|
|
+ (void)initialize {
|
static dispatch_once_t onceToken;
|
dispatch_once(&onceToken, ^{
|
[self initAppearance];
|
});
|
}
|
|
+ (void)initAppearance {
|
QMUIAlertController *alertControllerAppearance = QMUIAlertController.appearance;
|
alertControllerAppearance.alertContentMargin = UIEdgeInsetsMake(0, 0, 0, 0);
|
alertControllerAppearance.alertContentMaximumWidth = 270;
|
alertControllerAppearance.alertSeparatorColor = UIColorMake(211, 211, 219);
|
alertControllerAppearance.alertTitleAttributes = @{NSForegroundColorAttributeName:UIColorBlack,NSFontAttributeName:UIFontBoldMake(17),NSParagraphStyleAttributeName:[NSMutableParagraphStyle qmui_paragraphStyleWithLineHeight:0 lineBreakMode:NSLineBreakByTruncatingTail textAlignment:NSTextAlignmentCenter]};
|
alertControllerAppearance.alertMessageAttributes = @{NSForegroundColorAttributeName:UIColorBlack,NSFontAttributeName:UIFontMake(13),NSParagraphStyleAttributeName:[NSMutableParagraphStyle qmui_paragraphStyleWithLineHeight:0 lineBreakMode:NSLineBreakByTruncatingTail textAlignment:NSTextAlignmentCenter]};
|
alertControllerAppearance.alertButtonAttributes = @{NSForegroundColorAttributeName:UIColorBlue,NSFontAttributeName:UIFontMake(17),NSKernAttributeName:@(0)};
|
alertControllerAppearance.alertButtonDisabledAttributes = @{NSForegroundColorAttributeName:UIColorMake(129, 129, 129),NSFontAttributeName:UIFontMake(17),NSKernAttributeName:@(0)};
|
alertControllerAppearance.alertCancelButtonAttributes = @{NSForegroundColorAttributeName:UIColorBlue,NSFontAttributeName:UIFontBoldMake(17),NSKernAttributeName:@(0)};
|
alertControllerAppearance.alertDestructiveButtonAttributes = @{NSForegroundColorAttributeName:UIColorRed,NSFontAttributeName:UIFontMake(17),NSKernAttributeName:@(0)};
|
alertControllerAppearance.alertContentCornerRadius = 13;
|
alertControllerAppearance.alertButtonHeight = 44;
|
alertControllerAppearance.alertHeaderBackgroundColor = UIColorMakeWithRGBA(247, 247, 247, 1);
|
alertControllerAppearance.alertButtonBackgroundColor = alertControllerAppearance.alertHeaderBackgroundColor;
|
alertControllerAppearance.alertButtonHighlightBackgroundColor = UIColorMake(232, 232, 232);
|
alertControllerAppearance.alertHeaderInsets = UIEdgeInsetsMake(20, 16, 20, 16);
|
alertControllerAppearance.alertTitleMessageSpacing = 3;
|
alertControllerAppearance.alertTextFieldFont = UIFontMake(14);
|
alertControllerAppearance.alertTextFieldTextColor = UIColorBlack;
|
alertControllerAppearance.alertTextFieldBorderColor = UIColorMake(210, 210, 210);
|
alertControllerAppearance.alertTextFieldTextInsets = UIEdgeInsetsMake(4, 7, 4, 7);
|
|
alertControllerAppearance.sheetContentMargin = UIEdgeInsetsMake(10, 10, 10, 10);
|
alertControllerAppearance.sheetContentMaximumWidth = [QMUIHelper screenSizeFor55Inch].width - UIEdgeInsetsGetHorizontalValue(alertControllerAppearance.sheetContentMargin);
|
alertControllerAppearance.sheetSeparatorColor = UIColorMake(211, 211, 219);
|
alertControllerAppearance.sheetTitleAttributes = @{NSForegroundColorAttributeName:UIColorMake(143, 143, 143),NSFontAttributeName:UIFontBoldMake(13),NSParagraphStyleAttributeName:[NSMutableParagraphStyle qmui_paragraphStyleWithLineHeight:0 lineBreakMode:NSLineBreakByTruncatingTail textAlignment:NSTextAlignmentCenter]};
|
alertControllerAppearance.sheetMessageAttributes = @{NSForegroundColorAttributeName:UIColorMake(143, 143, 143),NSFontAttributeName:UIFontMake(13),NSParagraphStyleAttributeName:[NSMutableParagraphStyle qmui_paragraphStyleWithLineHeight:0 lineBreakMode:NSLineBreakByTruncatingTail textAlignment:NSTextAlignmentCenter]};
|
alertControllerAppearance.sheetButtonAttributes = @{NSForegroundColorAttributeName:UIColorBlue,NSFontAttributeName:UIFontMake(20),NSKernAttributeName:@(0)};
|
alertControllerAppearance.sheetButtonDisabledAttributes = @{NSForegroundColorAttributeName:UIColorMake(129, 129, 129),NSFontAttributeName:UIFontMake(20),NSKernAttributeName:@(0)};
|
alertControllerAppearance.sheetCancelButtonAttributes = @{NSForegroundColorAttributeName:UIColorBlue,NSFontAttributeName:UIFontBoldMake(20),NSKernAttributeName:@(0)};
|
alertControllerAppearance.sheetDestructiveButtonAttributes = @{NSForegroundColorAttributeName:UIColorRed,NSFontAttributeName:UIFontMake(20),NSKernAttributeName:@(0)};
|
alertControllerAppearance.sheetCancelButtonMarginTop = 8;
|
alertControllerAppearance.sheetContentCornerRadius = 13;
|
alertControllerAppearance.sheetButtonHeight = 57;
|
alertControllerAppearance.sheetHeaderBackgroundColor = UIColorMakeWithRGBA(247, 247, 247, 1);
|
alertControllerAppearance.sheetButtonBackgroundColor = alertControllerAppearance.sheetHeaderBackgroundColor;
|
alertControllerAppearance.sheetButtonHighlightBackgroundColor = UIColorMake(232, 232, 232);
|
alertControllerAppearance.sheetHeaderInsets = UIEdgeInsetsMake(16, 16, 16, 16);
|
alertControllerAppearance.sheetTitleMessageSpacing = 8;
|
alertControllerAppearance.sheetButtonColumnCount = 1;
|
alertControllerAppearance.isExtendBottomLayout = NO;
|
}
|
|
@end
|
|
|
#pragma mark - QMUIAlertController
|
|
@interface QMUIAlertController () <QMUIAlertActionDelegate, QMUIModalPresentationContentViewControllerProtocol, QMUIModalPresentationViewControllerDelegate, QMUITextFieldDelegate>
|
|
@property(nonatomic, assign, readwrite) QMUIAlertControllerStyle preferredStyle;
|
@property(nonatomic, strong, readwrite) QMUIModalPresentationViewController *modalPresentationViewController;
|
|
@property(nonatomic, strong) UIView *containerView;
|
|
@property(nonatomic, strong) UIControl *maskView;
|
|
@property(nonatomic, strong) UIView *scrollWrapView;
|
@property(nonatomic, strong) UIScrollView *headerScrollView;
|
@property(nonatomic, strong) UIScrollView *buttonScrollView;
|
|
@property(nonatomic, strong) CALayer *extendLayer;
|
|
@property(nonatomic, strong) QMUILabel *titleLabel;
|
@property(nonatomic, strong) QMUILabel *messageLabel;
|
@property(nonatomic, strong) QMUIAlertAction *cancelAction;
|
|
@property(nonatomic, strong) NSMutableArray<QMUIAlertAction *> *alertActions;
|
@property(nonatomic, strong) NSMutableArray<QMUIAlertAction *> *destructiveActions;
|
@property(nonatomic, strong) NSMutableArray<UITextField *> *alertTextFields;
|
|
@property(nonatomic, assign) CGFloat keyboardHeight;
|
|
/// 调用 showWithAnimated 时置为 YES,在 show 动画结束时置为 NO
|
@property(nonatomic, assign) BOOL willShow;
|
|
/// 在 show 动画结束时置为 YES,在 hide 动画结束时置为 NO
|
@property(nonatomic, assign) BOOL showing;
|
|
// 保护 showing 的过程中调用 hide 无效
|
@property(nonatomic, assign) BOOL isNeedsHideAfterAlertShowed;
|
@property(nonatomic, assign) BOOL isAnimatedForHideAfterAlertShowed;
|
|
@end
|
|
@implementation QMUIAlertController {
|
NSString *_title;
|
BOOL _needsUpdateAction;
|
BOOL _needsUpdateTitle;
|
BOOL _needsUpdateMessage;
|
}
|
|
- (instancetype)initWithNibName:(NSString *)nibNameOrNil bundle:(NSBundle *)nibBundleOrNil {
|
if (self = [super initWithNibName:nibNameOrNil bundle:nibBundleOrNil]) {
|
[self didInitialize];
|
}
|
return self;
|
}
|
|
- (instancetype)initWithCoder:(NSCoder *)aDecoder {
|
if (self = [super initWithCoder:aDecoder]) {
|
[self didInitialize];
|
}
|
return self;
|
}
|
|
- (void)didInitialize {
|
[self qmui_applyAppearance];
|
self.alertTextFieldMarginBlock = ^UIEdgeInsets(__kindof QMUIAlertController *aAlertController, NSInteger aTextFieldIndex) {
|
if (aTextFieldIndex == aAlertController.textFields.count - 1) {
|
return UIEdgeInsetsMake(0, 0, 16, 0);
|
}
|
return UIEdgeInsetsZero;
|
};
|
self.shouldManageTextFieldsReturnEventAutomatically = YES;
|
}
|
|
- (void)setAlertButtonAttributes:(NSDictionary<NSString *,id> *)alertButtonAttributes {
|
_alertButtonAttributes = alertButtonAttributes;
|
_needsUpdateAction = YES;
|
}
|
|
- (void)setSheetButtonAttributes:(NSDictionary<NSString *,id> *)sheetButtonAttributes {
|
_sheetButtonAttributes = sheetButtonAttributes;
|
_needsUpdateAction = YES;
|
}
|
|
- (void)setAlertButtonDisabledAttributes:(NSDictionary<NSString *,id> *)alertButtonDisabledAttributes {
|
_alertButtonDisabledAttributes = alertButtonDisabledAttributes;
|
_needsUpdateAction = YES;
|
}
|
|
- (void)setSheetButtonDisabledAttributes:(NSDictionary<NSString *,id> *)sheetButtonDisabledAttributes {
|
_sheetButtonDisabledAttributes = sheetButtonDisabledAttributes;
|
_needsUpdateAction = YES;
|
}
|
|
- (void)setAlertCancelButtonAttributes:(NSDictionary<NSString *,id> *)alertCancelButtonAttributes {
|
_alertCancelButtonAttributes = alertCancelButtonAttributes;
|
_needsUpdateAction = YES;
|
}
|
|
- (void)setSheetCancelButtonAttributes:(NSDictionary<NSString *,id> *)sheetCancelButtonAttributes {
|
_sheetCancelButtonAttributes = sheetCancelButtonAttributes;
|
_needsUpdateAction = YES;
|
}
|
|
- (void)setAlertDestructiveButtonAttributes:(NSDictionary<NSString *,id> *)alertDestructiveButtonAttributes {
|
_alertDestructiveButtonAttributes = alertDestructiveButtonAttributes;
|
_needsUpdateAction = YES;
|
}
|
|
- (void)setSheetDestructiveButtonAttributes:(NSDictionary<NSString *,id> *)sheetDestructiveButtonAttributes {
|
_sheetDestructiveButtonAttributes = sheetDestructiveButtonAttributes;
|
_needsUpdateAction = YES;
|
}
|
|
- (void)setAlertButtonBackgroundColor:(UIColor *)alertButtonBackgroundColor {
|
_alertButtonBackgroundColor = alertButtonBackgroundColor;
|
_needsUpdateAction = YES;
|
}
|
|
- (void)setSheetButtonBackgroundColor:(UIColor *)sheetButtonBackgroundColor {
|
_sheetButtonBackgroundColor = sheetButtonBackgroundColor;
|
[self updateExtendLayerAppearance];
|
_needsUpdateAction = YES;
|
}
|
|
- (void)setAlertButtonHighlightBackgroundColor:(UIColor *)alertButtonHighlightBackgroundColor {
|
_alertButtonHighlightBackgroundColor = alertButtonHighlightBackgroundColor;
|
_needsUpdateAction = YES;
|
}
|
|
- (void)setSheetButtonHighlightBackgroundColor:(UIColor *)sheetButtonHighlightBackgroundColor {
|
_sheetButtonHighlightBackgroundColor = sheetButtonHighlightBackgroundColor;
|
_needsUpdateAction = YES;
|
}
|
|
- (void)setAlertTitleAttributes:(NSDictionary<NSString *,id> *)alertTitleAttributes {
|
_alertTitleAttributes = alertTitleAttributes;
|
_needsUpdateTitle = YES;
|
}
|
|
- (void)setAlertMessageAttributes:(NSDictionary<NSString *,id> *)alertMessageAttributes {
|
_alertMessageAttributes = alertMessageAttributes;
|
_needsUpdateMessage = YES;
|
}
|
|
- (void)setSheetTitleAttributes:(NSDictionary<NSString *,id> *)sheetTitleAttributes {
|
_sheetTitleAttributes = sheetTitleAttributes;
|
_needsUpdateTitle = YES;
|
}
|
|
- (void)setSheetMessageAttributes:(NSDictionary<NSString *,id> *)sheetMessageAttributes {
|
_sheetMessageAttributes = sheetMessageAttributes;
|
_needsUpdateMessage = YES;
|
}
|
|
- (void)setAlertHeaderBackgroundColor:(UIColor *)alertHeaderBackgroundColor {
|
_alertHeaderBackgroundColor = alertHeaderBackgroundColor;
|
[self updateHeaderBackgrondColor];
|
}
|
|
- (void)setSheetHeaderBackgroundColor:(UIColor *)sheetHeaderBackgroundColor {
|
_sheetHeaderBackgroundColor = sheetHeaderBackgroundColor;
|
[self updateHeaderBackgrondColor];
|
}
|
|
- (void)updateHeaderBackgrondColor {
|
if (self.preferredStyle == QMUIAlertControllerStyleActionSheet) {
|
if (_headerScrollView) { _headerScrollView.backgroundColor = self.sheetHeaderBackgroundColor; }
|
} else if (self.preferredStyle == QMUIAlertControllerStyleAlert) {
|
if (_headerScrollView) { _headerScrollView.backgroundColor = self.alertHeaderBackgroundColor; }
|
}
|
}
|
|
- (void)setAlertSeparatorColor:(UIColor *)alertSeparatorColor {
|
_alertSeparatorColor = alertSeparatorColor;
|
[self updateSeparatorColor];
|
}
|
|
- (void)setSheetSeparatorColor:(UIColor *)sheetSeparatorColor {
|
_sheetSeparatorColor = sheetSeparatorColor;
|
[self updateSeparatorColor];
|
}
|
|
- (void)updateSeparatorColor {
|
UIColor *separatorColor = self.preferredStyle == QMUIAlertControllerStyleAlert ? self.alertSeparatorColor : self.sheetSeparatorColor;
|
[self.alertActions enumerateObjectsUsingBlock:^(QMUIAlertAction * _Nonnull alertAction, NSUInteger idx, BOOL * _Nonnull stop) {
|
alertAction.button.qmui_borderColor = separatorColor;
|
}];
|
}
|
|
- (void)setAlertContentCornerRadius:(CGFloat)alertContentCornerRadius {
|
_alertContentCornerRadius = alertContentCornerRadius;
|
[self updateCornerRadius];
|
}
|
|
- (void)setSheetContentCornerRadius:(CGFloat)sheetContentCornerRadius {
|
_sheetContentCornerRadius = sheetContentCornerRadius;
|
[self updateCornerRadius];
|
}
|
|
- (void)setIsExtendBottomLayout:(BOOL)isExtendBottomLayout {
|
_isExtendBottomLayout = isExtendBottomLayout;
|
if (isExtendBottomLayout) {
|
self.extendLayer.hidden = NO;
|
[self updateExtendLayerAppearance];
|
} else {
|
self.extendLayer.hidden = YES;
|
}
|
}
|
|
- (void)updateExtendLayerAppearance {
|
if (_extendLayer) {
|
_extendLayer.backgroundColor = self.sheetButtonBackgroundColor.CGColor;
|
}
|
}
|
|
- (void)updateCornerRadius {
|
if (self.preferredStyle == QMUIAlertControllerStyleAlert) {
|
if (self.containerView) { self.containerView.layer.cornerRadius = self.alertContentCornerRadius; self.containerView.clipsToBounds = YES; }
|
if (self.cancelButtonVisualEffectView) { self.cancelButtonVisualEffectView.layer.cornerRadius = self.alertContentCornerRadius; self.cancelButtonVisualEffectView.clipsToBounds = NO;}
|
if (self.scrollWrapView) { self.scrollWrapView.layer.cornerRadius = 0; self.scrollWrapView.clipsToBounds = NO; }
|
} else {
|
if (self.containerView) { self.containerView.layer.cornerRadius = 0; self.containerView.clipsToBounds = NO; }
|
if (self.cancelButtonVisualEffectView) { self.cancelButtonVisualEffectView.layer.cornerRadius = self.sheetContentCornerRadius; self.cancelButtonVisualEffectView.clipsToBounds = YES; }
|
if (self.scrollWrapView) { self.scrollWrapView.layer.cornerRadius = self.sheetContentCornerRadius; self.scrollWrapView.clipsToBounds = YES; }
|
}
|
}
|
|
- (void)setAlertTextFieldFont:(UIFont *)alertTextFieldFont {
|
_alertTextFieldFont = alertTextFieldFont;
|
[self.textFields enumerateObjectsUsingBlock:^(QMUITextField * _Nonnull textField, NSUInteger idx, BOOL * _Nonnull stop) {
|
textField.font = alertTextFieldFont;
|
}];
|
}
|
|
- (void)setAlertTextFieldBorderColor:(UIColor *)alertTextFieldBorderColor {
|
_alertTextFieldBorderColor = alertTextFieldBorderColor;
|
[self.textFields enumerateObjectsUsingBlock:^(QMUITextField * _Nonnull textField, NSUInteger idx, BOOL * _Nonnull stop) {
|
textField.layer.borderColor = alertTextFieldBorderColor.CGColor;
|
}];
|
}
|
|
- (void)setAlertTextFieldTextColor:(UIColor *)alertTextFieldTextColor {
|
_alertTextFieldTextColor = alertTextFieldTextColor;
|
[self.textFields enumerateObjectsUsingBlock:^(QMUITextField * _Nonnull textField, NSUInteger idx, BOOL * _Nonnull stop) {
|
textField.textColor = alertTextFieldTextColor;
|
}];
|
}
|
|
- (void)setAlertTextFieldTextInsets:(UIEdgeInsets)alertTextFieldTextInsets {
|
_alertTextFieldTextInsets = alertTextFieldTextInsets;
|
[self.textFields enumerateObjectsUsingBlock:^(QMUITextField * _Nonnull textField, NSUInteger idx, BOOL * _Nonnull stop) {
|
textField.textInsets = alertTextFieldTextInsets;
|
}];
|
}
|
|
- (void)setAlertTextFieldMarginBlock:(UIEdgeInsets (^)(__kindof QMUIAlertController * _Nonnull, NSInteger))alertTextFieldMarginBlock {
|
_alertTextFieldMarginBlock = alertTextFieldMarginBlock;
|
if (self.isViewLoaded) {
|
[self.view setNeedsLayout];
|
}
|
}
|
|
- (void)setMainVisualEffectView:(UIView *)mainVisualEffectView {
|
if (!mainVisualEffectView) {
|
// 不允许为空
|
mainVisualEffectView = [[UIView alloc] init];
|
}
|
BOOL isValueChanged = _mainVisualEffectView != mainVisualEffectView;
|
if (isValueChanged) {
|
if ([_mainVisualEffectView isKindOfClass:[UIVisualEffectView class]]) {
|
[((UIVisualEffectView *)_mainVisualEffectView).contentView qmui_removeAllSubviews];
|
} else {
|
[_mainVisualEffectView qmui_removeAllSubviews];
|
}
|
[_mainVisualEffectView removeFromSuperview];
|
_mainVisualEffectView = nil;
|
}
|
_mainVisualEffectView = mainVisualEffectView;
|
if (isValueChanged) {
|
[self.scrollWrapView insertSubview:_mainVisualEffectView atIndex:0];
|
[self updateCornerRadius];
|
}
|
}
|
|
- (void)setCancelButtonVisualEffectView:(UIView *)cancelButtonVisualEffectView {
|
if (!cancelButtonVisualEffectView) {
|
// 不允许为空
|
cancelButtonVisualEffectView = [[UIView alloc] init];
|
}
|
BOOL isValueChanged = _cancelButtonVisualEffectView != cancelButtonVisualEffectView;
|
if (isValueChanged) {
|
if ([_cancelButtonVisualEffectView isKindOfClass:[UIVisualEffectView class]]) {
|
[((UIVisualEffectView *)_cancelButtonVisualEffectView).contentView qmui_removeAllSubviews];
|
} else {
|
[_cancelButtonVisualEffectView qmui_removeAllSubviews];
|
}
|
[_cancelButtonVisualEffectView removeFromSuperview];
|
_cancelButtonVisualEffectView = nil;
|
}
|
_cancelButtonVisualEffectView = cancelButtonVisualEffectView;
|
if (isValueChanged) {
|
[self.containerView addSubview:_cancelButtonVisualEffectView];
|
if (self.preferredStyle == QMUIAlertControllerStyleActionSheet && self.cancelAction && !self.cancelAction.button.superview) {
|
if ([_cancelButtonVisualEffectView isKindOfClass:[UIVisualEffectView class]]) {
|
UIVisualEffectView *effectView = (UIVisualEffectView *)_cancelButtonVisualEffectView;
|
[effectView.contentView addSubview:self.cancelAction.button];
|
} else {
|
[_cancelButtonVisualEffectView addSubview:self.cancelAction.button];
|
}
|
}
|
|
[self updateCornerRadius];
|
}
|
}
|
|
+ (nonnull instancetype)alertControllerWithTitle:(nullable NSString *)title message:(nullable NSString *)message preferredStyle:(QMUIAlertControllerStyle)preferredStyle {
|
QMUIAlertController *alertController = [[self alloc] initWithTitle:title message:message preferredStyle:preferredStyle];
|
if (alertController) {
|
return alertController;
|
}
|
return nil;
|
}
|
|
- (nonnull instancetype)initWithTitle:(nullable NSString *)title message:(nullable NSString *)message preferredStyle:(QMUIAlertControllerStyle)preferredStyle {
|
self = [self init];
|
if (self) {
|
|
self.preferredStyle = preferredStyle;
|
|
self.shouldRespondMaskViewTouch = preferredStyle == QMUIAlertControllerStyleActionSheet;
|
|
self.alertActions = [[NSMutableArray alloc] init];
|
self.alertTextFields = [[NSMutableArray alloc] init];
|
self.destructiveActions = [[NSMutableArray alloc] init];
|
|
self.title = title;
|
self.message = message;
|
|
self.mainVisualEffectView = [[UIView alloc] init];
|
self.cancelButtonVisualEffectView = [[UIView alloc] init];
|
}
|
return self;
|
}
|
|
- (QMUIAlertControllerStyle)preferredStyle {
|
return PreferredValueForDeviceIncludingiPad(1, 0, 0, 0, 0) > 0 ? QMUIAlertControllerStyleAlert : _preferredStyle;
|
}
|
|
- (void)viewDidLoad {
|
[super viewDidLoad];
|
|
[self.view addSubview:self.maskView];
|
[self.view addSubview:self.containerView];
|
[self.containerView addSubview:self.scrollWrapView];
|
[self.scrollWrapView addSubview:self.headerScrollView];
|
[self.scrollWrapView addSubview:self.buttonScrollView];
|
[self.containerView.layer addSublayer:self.extendLayer];
|
}
|
|
- (void)viewDidLayoutSubviews {
|
|
[super viewDidLayoutSubviews];
|
|
BOOL hasTitle = (self.titleLabel.text.length > 0 && !self.titleLabel.hidden);
|
BOOL hasMessage = (self.messageLabel.text.length > 0 && !self.messageLabel.hidden);
|
BOOL hasTextField = self.alertTextFields.count > 0;
|
BOOL hasCustomView = !!_customView;
|
BOOL shouldShowSeparatorAtTopOfButtonAtFirstLine = hasTitle || hasMessage || hasCustomView;
|
CGFloat contentOriginY = 0;
|
|
self.maskView.frame = self.view.bounds;
|
|
if (self.preferredStyle == QMUIAlertControllerStyleAlert) {
|
|
CGFloat contentPaddingLeft = self.alertHeaderInsets.left;
|
CGFloat contentPaddingRight = self.alertHeaderInsets.right;
|
|
CGFloat contentPaddingTop = (hasTitle || hasMessage || hasTextField || hasCustomView) ? self.alertHeaderInsets.top : 0;
|
CGFloat contentPaddingBottom = (hasTitle || hasMessage || hasTextField || hasCustomView) ? self.alertHeaderInsets.bottom : 0;
|
self.containerView.qmui_width = fmin(self.alertContentMaximumWidth, CGRectGetWidth(self.view.bounds) - UIEdgeInsetsGetHorizontalValue(self.alertContentMargin));
|
self.scrollWrapView.qmui_width = CGRectGetWidth(self.containerView.bounds);
|
self.headerScrollView.frame = CGRectMake(0, 0, CGRectGetWidth(self.scrollWrapView.bounds), 0);
|
contentOriginY = contentPaddingTop;
|
// 标题和副标题布局
|
if (hasTitle) {
|
self.titleLabel.frame = CGRectFlatted(CGRectMake(contentPaddingLeft, contentOriginY, CGRectGetWidth(self.headerScrollView.bounds) - contentPaddingLeft - contentPaddingRight, QMUIViewSelfSizingHeight));
|
contentOriginY = CGRectGetMaxY(self.titleLabel.frame) + (hasMessage ? self.alertTitleMessageSpacing : contentPaddingBottom);
|
}
|
if (hasMessage) {
|
self.messageLabel.frame = CGRectFlatted(CGRectMake(contentPaddingLeft, contentOriginY, CGRectGetWidth(self.headerScrollView.bounds) - contentPaddingLeft - contentPaddingRight, QMUIViewSelfSizingHeight));
|
contentOriginY = CGRectGetMaxY(self.messageLabel.frame) + contentPaddingBottom;
|
}
|
// 输入框布局
|
if (hasTextField) {
|
for (int i = 0; i < self.alertTextFields.count; i++) {
|
UITextField *textField = self.alertTextFields[i];
|
CGRect textFieldFrame = CGRectMake(contentPaddingLeft, contentOriginY, CGRectGetWidth(self.headerScrollView.bounds) - contentPaddingLeft - contentPaddingRight, CGFLOAT_MAX);
|
CGSize textFieldSize = [textField sizeThatFits:textFieldFrame.size];
|
textFieldFrame = CGRectSetHeight(textFieldFrame, textFieldSize.height);
|
UIEdgeInsets margin = UIEdgeInsetsZero;
|
if (self.alertTextFieldMarginBlock) {
|
margin = self.alertTextFieldMarginBlock(self, i);
|
}
|
textFieldFrame = CGRectMake(CGRectGetMinX(textFieldFrame) + margin.left, CGRectGetMinY(textFieldFrame) + margin.top, CGRectGetWidth(textFieldFrame) - UIEdgeInsetsGetHorizontalValue(margin), CGRectGetHeight(textFieldFrame));
|
contentOriginY = CGRectGetMaxY(textFieldFrame) + margin.bottom - textField.layer.borderWidth;
|
textField.frame = textFieldFrame;
|
}
|
}
|
// 自定义view的布局 - 自动居中
|
if (hasCustomView) {
|
CGSize customViewSize = [_customView sizeThatFits:CGSizeMake(CGRectGetWidth(self.headerScrollView.bounds), CGFLOAT_MAX)];
|
_customView.frame = CGRectFlatted(CGRectMake((CGRectGetWidth(self.headerScrollView.bounds) - customViewSize.width) / 2, contentOriginY, customViewSize.width, customViewSize.height));
|
contentOriginY = CGRectGetMaxY(_customView.frame) + contentPaddingBottom;
|
}
|
// 内容scrollView的布局
|
self.headerScrollView.frame = CGRectSetHeight(self.headerScrollView.frame, contentOriginY);
|
self.headerScrollView.contentSize = CGSizeMake(CGRectGetWidth(self.headerScrollView.bounds), contentOriginY);
|
contentOriginY = CGRectGetMaxY(self.headerScrollView.frame);
|
// 按钮布局
|
self.buttonScrollView.frame = CGRectMake(0, contentOriginY, CGRectGetWidth(self.containerView.bounds), 0);
|
contentOriginY = 0;
|
NSArray<QMUIAlertAction *> *newOrderActions = [self orderedAlertActions:self.alertActions];
|
if (newOrderActions.count > 0) {
|
BOOL verticalLayout = YES;
|
if (self.alertActions.count == 2) {
|
CGFloat halfWidth = CGRectGetWidth(self.buttonScrollView.bounds) / 2;
|
QMUIAlertAction *action1 = newOrderActions[0];
|
QMUIAlertAction *action2 = newOrderActions[1];
|
CGSize actionSize1 = [action1.button sizeThatFits:CGSizeMax];
|
CGSize actionSize2 = [action2.button sizeThatFits:CGSizeMax];
|
if (actionSize1.width < halfWidth && actionSize2.width < halfWidth) {
|
verticalLayout = NO;
|
}
|
}
|
if (!verticalLayout) {
|
// 对齐系统,先 add 的在右边,后 add 的在左边
|
QMUIAlertAction *leftAction = newOrderActions[1];
|
leftAction.button.frame = CGRectMake(0, contentOriginY, CGRectGetWidth(self.buttonScrollView.bounds) / 2, self.alertButtonHeight);
|
leftAction.button.qmui_borderPosition = QMUIViewBorderPositionRight;
|
QMUIAlertAction *rightAction = newOrderActions[0];
|
rightAction.button.frame = CGRectMake(CGRectGetMaxX(leftAction.button.frame), contentOriginY, CGRectGetWidth(self.buttonScrollView.bounds) / 2, self.alertButtonHeight);
|
if (shouldShowSeparatorAtTopOfButtonAtFirstLine) {
|
leftAction.button.qmui_borderPosition |= QMUIViewBorderPositionTop;
|
rightAction.button.qmui_borderPosition = QMUIViewBorderPositionTop;
|
}
|
contentOriginY = CGRectGetMaxY(leftAction.button.frame);
|
} else {
|
for (int i = 0; i < newOrderActions.count; i++) {
|
QMUIAlertAction *action = newOrderActions[i];
|
action.button.frame = CGRectMake(0, contentOriginY, CGRectGetWidth(self.containerView.bounds), self.alertButtonHeight);
|
if (i > 0 || shouldShowSeparatorAtTopOfButtonAtFirstLine) {
|
action.button.qmui_borderPosition = QMUIViewBorderPositionTop;
|
}
|
contentOriginY = CGRectGetMaxY(action.button.frame);
|
}
|
}
|
}
|
// 按钮scrollView的布局
|
self.buttonScrollView.frame = CGRectSetHeight(self.buttonScrollView.frame, contentOriginY);
|
self.buttonScrollView.contentSize = CGSizeMake(CGRectGetWidth(self.buttonScrollView.bounds), contentOriginY);
|
// 容器最后布局
|
CGFloat contentHeight = CGRectGetHeight(self.headerScrollView.bounds) + CGRectGetHeight(self.buttonScrollView.bounds);
|
CGFloat screenSpaceHeight = CGRectGetHeight(self.view.bounds) - UIEdgeInsetsGetVerticalValue(SafeAreaInsetsConstantForDeviceWithNotch);
|
if (contentHeight > screenSpaceHeight - 20) {
|
screenSpaceHeight -= 20;
|
CGFloat contentH = fmin(CGRectGetHeight(self.headerScrollView.bounds), screenSpaceHeight / 2);
|
CGFloat buttonH = fmin(CGRectGetHeight(self.buttonScrollView.bounds), screenSpaceHeight / 2);
|
if (contentH >= screenSpaceHeight / 2 && buttonH >= screenSpaceHeight / 2) {
|
self.headerScrollView.frame = CGRectSetHeight(self.headerScrollView.frame, screenSpaceHeight / 2);
|
self.buttonScrollView.frame = CGRectSetY(self.buttonScrollView.frame, CGRectGetMaxY(self.headerScrollView.frame));
|
self.buttonScrollView.frame = CGRectSetHeight(self.buttonScrollView.frame, screenSpaceHeight / 2);
|
} else if (contentH < screenSpaceHeight / 2) {
|
self.headerScrollView.frame = CGRectSetHeight(self.headerScrollView.frame, contentH);
|
self.buttonScrollView.frame = CGRectSetY(self.buttonScrollView.frame, CGRectGetMaxY(self.headerScrollView.frame));
|
self.buttonScrollView.frame = CGRectSetHeight(self.buttonScrollView.frame, screenSpaceHeight - contentH);
|
} else if (buttonH < screenSpaceHeight / 2) {
|
self.headerScrollView.frame = CGRectSetHeight(self.headerScrollView.frame, screenSpaceHeight - buttonH);
|
self.buttonScrollView.frame = CGRectSetY(self.buttonScrollView.frame, CGRectGetMaxY(self.headerScrollView.frame));
|
self.buttonScrollView.frame = CGRectSetHeight(self.buttonScrollView.frame, buttonH);
|
}
|
contentHeight = CGRectGetHeight(self.headerScrollView.bounds) + CGRectGetHeight(self.buttonScrollView.bounds);
|
screenSpaceHeight += 20;
|
}
|
self.scrollWrapView.frame = CGRectMake(0, 0, CGRectGetWidth(self.scrollWrapView.bounds), contentHeight);
|
self.mainVisualEffectView.frame = self.scrollWrapView.bounds;
|
|
self.containerView.qmui_frameApplyTransform = CGRectMake((CGRectGetWidth(self.view.bounds) - CGRectGetWidth(self.containerView.frame)) / 2, SafeAreaInsetsConstantForDeviceWithNotch.top + (screenSpaceHeight - contentHeight - self.keyboardHeight) / 2, CGRectGetWidth(self.containerView.frame), CGRectGetHeight(self.scrollWrapView.bounds));
|
}
|
|
else if (self.preferredStyle == QMUIAlertControllerStyleActionSheet) {
|
|
CGFloat contentPaddingLeft = self.alertHeaderInsets.left;
|
CGFloat contentPaddingRight = self.alertHeaderInsets.right;
|
|
CGFloat contentPaddingTop = (hasTitle || hasMessage || hasTextField) ? self.sheetHeaderInsets.top : 0;
|
CGFloat contentPaddingBottom = (hasTitle || hasMessage || hasTextField) ? self.sheetHeaderInsets.bottom : 0;
|
self.containerView.qmui_width = fmin(self.sheetContentMaximumWidth, CGRectGetWidth(self.view.bounds) - UIEdgeInsetsGetHorizontalValue(self.sheetContentMargin));
|
self.scrollWrapView.qmui_width = CGRectGetWidth(self.containerView.bounds);
|
self.headerScrollView.frame = CGRectMake(0, 0, CGRectGetWidth(self.containerView.bounds), 0);
|
contentOriginY = contentPaddingTop;
|
// 标题和副标题布局
|
if (hasTitle) {
|
self.titleLabel.frame = CGRectFlatted(CGRectMake(contentPaddingLeft, contentOriginY, CGRectGetWidth(self.headerScrollView.bounds) - contentPaddingLeft - contentPaddingRight, QMUIViewSelfSizingHeight));
|
contentOriginY = CGRectGetMaxY(self.titleLabel.frame) + (hasMessage ? self.sheetTitleMessageSpacing : contentPaddingBottom);
|
}
|
if (hasMessage) {
|
self.messageLabel.frame = CGRectFlatted(CGRectMake(contentPaddingLeft, contentOriginY, CGRectGetWidth(self.headerScrollView.bounds) - contentPaddingLeft - contentPaddingRight, QMUIViewSelfSizingHeight));
|
contentOriginY = CGRectGetMaxY(self.messageLabel.frame) + contentPaddingBottom;
|
}
|
// 自定义view的布局 - 自动居中
|
if (hasCustomView) {
|
CGSize customViewSize = [_customView sizeThatFits:CGSizeMake(CGRectGetWidth(self.headerScrollView.bounds), CGFLOAT_MAX)];
|
_customView.frame = CGRectFlatted(CGRectMake((CGRectGetWidth(self.headerScrollView.bounds) - customViewSize.width) / 2, contentOriginY, customViewSize.width, customViewSize.height));
|
contentOriginY = CGRectGetMaxY(_customView.frame) + contentPaddingBottom;
|
}
|
// 内容scrollView布局
|
self.headerScrollView.frame = CGRectSetHeight(self.headerScrollView.frame, contentOriginY);
|
self.headerScrollView.contentSize = CGSizeMake(CGRectGetWidth(self.headerScrollView.bounds), contentOriginY);
|
contentOriginY = CGRectGetMaxY(self.headerScrollView.frame);
|
// 按钮的布局
|
self.buttonScrollView.frame = CGRectMake(0, contentOriginY, CGRectGetWidth(self.containerView.bounds), 0);
|
NSArray<QMUIAlertAction *> *newOrderActions = [self orderedAlertActions:self.alertActions];
|
if (self.sheetButtonColumnCount > 1) {
|
// 如果是多列,则为了布局,补齐 item 个数
|
NSMutableArray<QMUIAlertAction *> *fixedActions = [newOrderActions mutableCopy];
|
[fixedActions removeObject:self.cancelAction];
|
|
if (fmodf(fixedActions.count, self.sheetButtonColumnCount) != 0) {
|
NSInteger increment = self.sheetButtonColumnCount - fmodf(fixedActions.count, self.sheetButtonColumnCount);
|
for (NSInteger i = 0; i < increment; i++) {
|
QMUIAlertAction *action = [[QMUIAlertAction alloc] init];
|
action.title = @"";
|
action.style = QMUIAlertActionStyleDefault;
|
action.handler = nil;
|
[self.buttonScrollView addSubview:action.button];
|
[fixedActions addObject:action];
|
}
|
|
[fixedActions addObject:self.cancelAction];
|
newOrderActions = [fixedActions copy];
|
}
|
}
|
|
CGFloat columnCount = self.sheetButtonColumnCount;
|
CGFloat alertActionsWidth = CGRectGetWidth(self.buttonScrollView.bounds) / columnCount;
|
CGFloat alertActionsLayoutX = 0;
|
CGFloat alertActionsLayoutY = 0;
|
contentOriginY = 0;
|
if (self.alertActions.count > 0) {
|
for (int i = 0; i < newOrderActions.count; i++) {
|
QMUIAlertAction *action = newOrderActions[i];
|
if (action.style == QMUIAlertActionStyleCancel && i == newOrderActions.count - 1) {
|
continue;
|
} else {
|
BOOL isFirstLine = floor(i / columnCount) == 0;
|
BOOL isLastColumn = fmod(i + 1, columnCount) == 0;
|
BOOL shouldShowSeparatorAtTop = !isFirstLine || shouldShowSeparatorAtTopOfButtonAtFirstLine;
|
BOOL shouldShowSeparatorAtRight = !isLastColumn;// 单列时全都不用显示右分隔线,多列时最后一列不用显示右分隔线
|
action.button.frame = CGRectMake(alertActionsLayoutX, alertActionsLayoutY, alertActionsWidth, self.sheetButtonHeight);
|
if (isLastColumn) {
|
alertActionsLayoutX = 0;
|
alertActionsLayoutY = CGRectGetMaxY(action.button.frame);
|
} else {
|
alertActionsLayoutX += alertActionsWidth;
|
}
|
contentOriginY = MAX(contentOriginY, CGRectGetMaxY(action.button.frame));
|
|
if (shouldShowSeparatorAtTop) {
|
action.button.qmui_borderPosition |= QMUIViewBorderPositionTop;
|
}
|
if (shouldShowSeparatorAtRight) {
|
action.button.qmui_borderPosition |= QMUIViewBorderPositionRight;
|
}
|
}
|
}
|
}
|
// 按钮scrollView布局
|
self.buttonScrollView.frame = CGRectSetHeight(self.buttonScrollView.frame, contentOriginY);
|
self.buttonScrollView.contentSize = CGSizeMake(CGRectGetWidth(self.buttonScrollView.bounds), contentOriginY);
|
// 容器最终布局
|
self.scrollWrapView.frame = CGRectMake(0, 0, CGRectGetWidth(self.scrollWrapView.bounds), CGRectGetMaxY(self.buttonScrollView.frame));
|
self.mainVisualEffectView.frame = self.scrollWrapView.bounds;
|
contentOriginY = CGRectGetMaxY(self.scrollWrapView.frame) + self.sheetCancelButtonMarginTop;
|
if (self.cancelAction) {
|
self.cancelButtonVisualEffectView.frame = CGRectMake(0, contentOriginY, CGRectGetWidth(self.containerView.bounds), self.sheetButtonHeight);
|
self.cancelAction.button.frame = self.cancelButtonVisualEffectView.bounds;
|
contentOriginY = CGRectGetMaxY(self.cancelButtonVisualEffectView.frame);
|
}
|
// 把上下的margin都加上用于跟整个屏幕的高度做比较
|
CGFloat contentHeight = contentOriginY + UIEdgeInsetsGetVerticalValue(self.sheetContentMargin);
|
CGFloat screenSpaceHeight = CGRectGetHeight(self.view.bounds) - SafeAreaInsetsConstantForDeviceWithNotch.top - (self.isExtendBottomLayout ? 0 : SafeAreaInsetsConstantForDeviceWithNotch.bottom);
|
if (contentHeight > screenSpaceHeight) {
|
CGFloat cancelButtonAreaHeight = (self.cancelAction ? (CGRectGetHeight(self.cancelAction.button.bounds) + self.sheetCancelButtonMarginTop) : 0);
|
screenSpaceHeight = screenSpaceHeight - cancelButtonAreaHeight - UIEdgeInsetsGetVerticalValue(self.sheetContentMargin);
|
CGFloat contentH = MIN(CGRectGetHeight(self.headerScrollView.bounds), screenSpaceHeight / 2);
|
CGFloat buttonH = MIN(CGRectGetHeight(self.buttonScrollView.bounds), screenSpaceHeight / 2);
|
if (contentH >= screenSpaceHeight / 2 && buttonH >= screenSpaceHeight / 2) {
|
self.headerScrollView.frame = CGRectSetHeight(self.headerScrollView.frame, screenSpaceHeight / 2);
|
self.buttonScrollView.frame = CGRectSetY(self.buttonScrollView.frame, CGRectGetMaxY(self.headerScrollView.frame));
|
self.buttonScrollView.frame = CGRectSetHeight(self.buttonScrollView.frame, screenSpaceHeight / 2);
|
} else if (contentH < screenSpaceHeight / 2) {
|
self.headerScrollView.frame = CGRectSetHeight(self.headerScrollView.frame, contentH);
|
self.buttonScrollView.frame = CGRectSetY(self.buttonScrollView.frame, CGRectGetMaxY(self.headerScrollView.frame));
|
self.buttonScrollView.frame = CGRectSetHeight(self.buttonScrollView.frame, screenSpaceHeight - contentH);
|
} else if (buttonH < screenSpaceHeight / 2) {
|
self.headerScrollView.frame = CGRectSetHeight(self.headerScrollView.frame, screenSpaceHeight - buttonH);
|
self.buttonScrollView.frame = CGRectSetY(self.buttonScrollView.frame, CGRectGetMaxY(self.headerScrollView.frame));
|
self.buttonScrollView.frame = CGRectSetHeight(self.buttonScrollView.frame, buttonH);
|
}
|
self.scrollWrapView.frame = CGRectSetHeight(self.scrollWrapView.frame, CGRectGetHeight(self.headerScrollView.bounds) + CGRectGetHeight(self.buttonScrollView.bounds));
|
if (self.cancelAction) {
|
self.cancelButtonVisualEffectView.frame = CGRectSetY(self.cancelButtonVisualEffectView.frame, CGRectGetMaxY(self.scrollWrapView.frame) + self.sheetCancelButtonMarginTop);
|
}
|
contentHeight = CGRectGetHeight(self.headerScrollView.bounds) + CGRectGetHeight(self.buttonScrollView.bounds) + cancelButtonAreaHeight + self.sheetContentMargin.bottom;
|
screenSpaceHeight += (cancelButtonAreaHeight + UIEdgeInsetsGetVerticalValue(self.sheetContentMargin));
|
} else {
|
// 如果小于屏幕高度,则把顶部的top减掉
|
contentHeight -= self.sheetContentMargin.top;
|
}
|
|
self.containerView.qmui_frameApplyTransform = CGRectMake((CGRectGetWidth(self.view.bounds) - CGRectGetWidth(self.containerView.frame)) / 2, SafeAreaInsetsConstantForDeviceWithNotch.top + screenSpaceHeight - contentHeight, CGRectGetWidth(self.containerView.frame), contentHeight + (self.isExtendBottomLayout ? SafeAreaInsetsConstantForDeviceWithNotch.bottom : 0));
|
|
self.extendLayer.frame = CGRectFlatMake(0, CGRectGetHeight(self.containerView.bounds) - SafeAreaInsetsConstantForDeviceWithNotch.bottom - 1, CGRectGetWidth(self.containerView.bounds), SafeAreaInsetsConstantForDeviceWithNotch.bottom + 1);
|
}
|
}
|
|
- (NSArray<QMUIAlertAction *> *)orderedAlertActions:(NSArray<QMUIAlertAction *> *)actions {
|
NSMutableArray<QMUIAlertAction *> *newActions = [[NSMutableArray alloc] init];
|
// 按照用户addAction的先后顺序来排序
|
if (self.orderActionsByAddedOrdered) {
|
[newActions addObjectsFromArray:self.alertActions];
|
// 取消按钮不参与排序,所以先移除,在最后再重新添加
|
if (self.cancelAction) {
|
[newActions removeObject:self.cancelAction];
|
}
|
} else {
|
for (QMUIAlertAction *action in self.alertActions) {
|
if (action.style != QMUIAlertActionStyleCancel && action.style != QMUIAlertActionStyleDestructive) {
|
[newActions addObject:action];
|
}
|
}
|
for (QMUIAlertAction *action in self.destructiveActions) {
|
[newActions addObject:action];
|
}
|
}
|
if (self.cancelAction) {
|
[newActions addObject:self.cancelAction];
|
}
|
return newActions;
|
}
|
|
- (void)initModalPresentationController {
|
_modalPresentationViewController = [[QMUIModalPresentationViewController alloc] init];
|
self.modalPresentationViewController.delegate = self;
|
self.modalPresentationViewController.maximumContentViewWidth = CGFLOAT_MAX;
|
self.modalPresentationViewController.contentViewMargins = UIEdgeInsetsZero;
|
self.modalPresentationViewController.dimmingView = nil;
|
self.modalPresentationViewController.contentViewController = self;
|
[self customModalPresentationControllerAnimation];
|
}
|
|
- (void)customModalPresentationControllerAnimation {
|
|
__weak __typeof(self)weakSelf = self;
|
|
self.modalPresentationViewController.layoutBlock = ^(CGRect containerBounds, CGFloat keyboardHeight, CGRect contentViewDefaultFrame) {
|
weakSelf.view.frame = CGRectMake(0, 0, CGRectGetWidth(containerBounds), CGRectGetHeight(containerBounds));
|
weakSelf.keyboardHeight = keyboardHeight;
|
[weakSelf.view setNeedsLayout];
|
};
|
|
self.modalPresentationViewController.showingAnimation = ^(UIView *dimmingView, CGRect containerBounds, CGFloat keyboardHeight, CGRect contentViewFrame, void(^completion)(BOOL finished)) {
|
if (self.preferredStyle == QMUIAlertControllerStyleAlert) {
|
weakSelf.containerView.alpha = 0;
|
weakSelf.containerView.layer.transform = CATransform3DMakeScale(1.2, 1.2, 1.0);
|
[UIView animateWithDuration:0.25f delay:0 options:QMUIViewAnimationOptionsCurveOut animations:^{
|
weakSelf.maskView.alpha = 1;
|
weakSelf.containerView.alpha = 1;
|
weakSelf.containerView.layer.transform = CATransform3DMakeScale(1.0, 1.0, 1.0);
|
} completion:^(BOOL finished) {
|
if (completion) {
|
completion(finished);
|
}
|
}];
|
} else if (self.preferredStyle == QMUIAlertControllerStyleActionSheet) {
|
weakSelf.containerView.layer.transform = CATransform3DMakeTranslation(0, CGRectGetHeight(weakSelf.view.bounds) - CGRectGetMinY(weakSelf.containerView.frame), 0);
|
[UIView animateWithDuration:0.25f delay:0 options:QMUIViewAnimationOptionsCurveOut animations:^{
|
weakSelf.maskView.alpha = 1;
|
weakSelf.containerView.layer.transform = CATransform3DIdentity;
|
} completion:^(BOOL finished) {
|
if (completion) {
|
completion(finished);
|
}
|
}];
|
}
|
};
|
|
self.modalPresentationViewController.hidingAnimation = ^(UIView *dimmingView, CGRect containerBounds, CGFloat keyboardHeight, void(^completion)(BOOL finished)) {
|
if (self.preferredStyle == QMUIAlertControllerStyleAlert) {
|
[UIView animateWithDuration:0.25f delay:0 options:QMUIViewAnimationOptionsCurveOut animations:^{
|
weakSelf.maskView.alpha = 0;
|
weakSelf.containerView.alpha = 0;
|
} completion:^(BOOL finished) {
|
weakSelf.containerView.alpha = 1;
|
if (completion) {
|
completion(finished);
|
}
|
}];
|
} else if (self.preferredStyle == QMUIAlertControllerStyleActionSheet) {
|
[UIView animateWithDuration:0.25f delay:0 options:QMUIViewAnimationOptionsCurveOut animations:^{
|
weakSelf.maskView.alpha = 0;
|
weakSelf.containerView.layer.transform = CATransform3DMakeTranslation(0, CGRectGetHeight(weakSelf.view.bounds) - CGRectGetMinY(weakSelf.containerView.frame), 0);
|
} completion:^(BOOL finished) {
|
if (completion) {
|
completion(finished);
|
}
|
}];
|
}
|
};
|
}
|
|
- (void)showWithAnimated:(BOOL)animated {
|
if (self.willShow || self.showing) {
|
return;
|
}
|
self.willShow = YES;
|
|
if (self.alertTextFields.count > 0) {
|
[self.alertTextFields.firstObject becomeFirstResponder];
|
}
|
|
if (_needsUpdateAction) {
|
[self updateAction];
|
}
|
if (_needsUpdateTitle) {
|
[self updateTitleLabel];
|
}
|
if (_needsUpdateMessage) {
|
[self updateMessageLabel];
|
}
|
|
[self initModalPresentationController];
|
|
if ([self.delegate respondsToSelector:@selector(willShowAlertController:)]) {
|
[self.delegate willShowAlertController:self];
|
}
|
|
__weak __typeof(self)weakSelf = self;
|
|
[self.modalPresentationViewController showWithAnimated:animated completion:^(BOOL finished) {
|
weakSelf.maskView.alpha = 1;
|
weakSelf.willShow = NO;
|
weakSelf.showing = YES;
|
if (weakSelf.isNeedsHideAfterAlertShowed) {
|
[weakSelf hideWithAnimated:weakSelf.isAnimatedForHideAfterAlertShowed];
|
weakSelf.isNeedsHideAfterAlertShowed = NO;
|
weakSelf.isAnimatedForHideAfterAlertShowed = NO;
|
}
|
if ([weakSelf.delegate respondsToSelector:@selector(didShowAlertController:)]) {
|
[weakSelf.delegate didShowAlertController:weakSelf];
|
}
|
}];
|
|
// 增加alertController计数
|
alertControllerCount++;
|
}
|
|
- (void)hideWithAnimated:(BOOL)animated {
|
[self hideWithAnimated:animated completion:NULL];
|
}
|
|
- (void)hideWithAnimated:(BOOL)animated completion:(void (^)(void))completion {
|
if ([self.delegate respondsToSelector:@selector(shouldHideAlertController:)] && ![self.delegate shouldHideAlertController:self]) {
|
return;
|
}
|
|
if (!self.showing) {
|
if (self.willShow) {
|
self.isNeedsHideAfterAlertShowed = YES;
|
self.isAnimatedForHideAfterAlertShowed = animated;
|
}
|
return;
|
}
|
|
if ([self.delegate respondsToSelector:@selector(willHideAlertController:)]) {
|
[self.delegate willHideAlertController:self];
|
}
|
|
__weak __typeof(self)weakSelf = self;
|
|
[self.modalPresentationViewController hideWithAnimated:animated completion:^(BOOL finished) {
|
weakSelf.modalPresentationViewController = nil;
|
weakSelf.willShow = NO;
|
weakSelf.showing = NO;
|
weakSelf.maskView.alpha = 0;
|
if (self.preferredStyle == QMUIAlertControllerStyleAlert) {
|
weakSelf.containerView.alpha = 0;
|
} else {
|
weakSelf.containerView.layer.transform = CATransform3DMakeTranslation(0, CGRectGetHeight(weakSelf.view.bounds) - CGRectGetMinY(weakSelf.containerView.frame), 0);
|
}
|
if ([weakSelf.delegate respondsToSelector:@selector(didHideAlertController:)]) {
|
[weakSelf.delegate didHideAlertController:weakSelf];
|
}
|
if (completion) completion();
|
}];
|
|
// 减少alertController计数
|
alertControllerCount--;
|
}
|
|
- (void)addAction:(nonnull QMUIAlertAction *)action {
|
if (action.style == QMUIAlertActionStyleCancel && self.cancelAction) {
|
[NSException raise:@"QMUIAlertController使用错误" format:@"同一个alertController不可以同时添加两个cancel按钮"];
|
}
|
if (action.style == QMUIAlertActionStyleCancel) {
|
self.cancelAction = action;
|
}
|
if (action.style == QMUIAlertActionStyleDestructive) {
|
[self.destructiveActions addObject:action];
|
}
|
// 只有ActionSheet的取消按钮不参与滚动
|
if (self.preferredStyle == QMUIAlertControllerStyleActionSheet && action.style == QMUIAlertActionStyleCancel) {
|
if (!self.cancelButtonVisualEffectView.superview) {
|
[self.containerView addSubview:self.cancelButtonVisualEffectView];
|
}
|
if ([self.cancelButtonVisualEffectView isKindOfClass:[UIVisualEffectView class]]) {
|
[((UIVisualEffectView *)self.cancelButtonVisualEffectView).contentView addSubview:action.button];
|
} else {
|
[self.cancelButtonVisualEffectView addSubview:action.button];
|
}
|
} else {
|
[self.buttonScrollView addSubview:action.button];
|
}
|
action.delegate = self;
|
[self.alertActions addObject:action];
|
}
|
|
- (void)addCancelAction {
|
QMUIAlertAction *action = [QMUIAlertAction actionWithTitle:@"取消" style:QMUIAlertActionStyleCancel handler:nil];
|
[self addAction:action];
|
}
|
|
- (void)addTextFieldWithConfigurationHandler:(void (^)(QMUITextField *textField))configurationHandler {
|
if (_customView) {
|
[NSException raise:@"QMUIAlertController使用错误" format:@"UITextField和CustomView不能共存"];
|
}
|
if (self.preferredStyle == QMUIAlertControllerStyleActionSheet) {
|
[NSException raise:@"QMUIAlertController使用错误" format:@"Sheet类型不运行添加UITextField"];
|
}
|
QMUITextField *textField = [[QMUITextField alloc] init];
|
textField.delegate = self;
|
textField.borderStyle = UITextBorderStyleNone;
|
textField.backgroundColor = UIColorWhite;
|
textField.contentVerticalAlignment = UIControlContentVerticalAlignmentCenter;
|
textField.font = self.alertTextFieldFont;
|
textField.textColor = self.alertTextFieldTextColor;
|
textField.autocapitalizationType = UITextAutocapitalizationTypeNone;
|
textField.clearButtonMode = UITextFieldViewModeWhileEditing;
|
textField.textInsets = self.alertTextFieldTextInsets;
|
textField.layer.borderColor = self.alertTextFieldBorderColor.CGColor;
|
textField.layer.borderWidth = PixelOne;
|
[self.headerScrollView addSubview:textField];
|
[self.alertTextFields addObject:textField];
|
if (configurationHandler) {
|
configurationHandler(textField);
|
}
|
}
|
|
- (void)addCustomView:(UIView *)view {
|
if (view && self.alertTextFields.count > 0) {
|
[NSException raise:@"QMUIAlertController使用错误" format:@"UITextField 和 customView 不能共存"];
|
}
|
if (_customView && _customView != view) {
|
[_customView removeFromSuperview];
|
}
|
_customView = view;
|
if (_customView) {
|
[self.headerScrollView addSubview:_customView];
|
}
|
}
|
|
- (void)setTitle:(NSString *)title {
|
_title = title;
|
if (!self.titleLabel) {
|
self.titleLabel = [[QMUILabel alloc] init];
|
self.titleLabel.numberOfLines = 0;
|
[self.headerScrollView addSubview:self.titleLabel];
|
}
|
if (!_title || [_title isEqualToString:@""]) {
|
self.titleLabel.hidden = YES;
|
} else {
|
self.titleLabel.hidden = NO;
|
[self updateTitleLabel];
|
}
|
}
|
|
- (NSString *)title {
|
return _title;
|
}
|
|
- (void)updateTitleLabel {
|
if (self.titleLabel && !self.titleLabel.hidden) {
|
NSAttributedString *attributeString = [[NSAttributedString alloc] initWithString:self.title attributes:self.preferredStyle == QMUIAlertControllerStyleAlert ? self.alertTitleAttributes : self.sheetTitleAttributes];
|
self.titleLabel.attributedText = attributeString;
|
}
|
}
|
|
- (void)setMessage:(NSString *)message {
|
_message = message;
|
if (!self.messageLabel) {
|
self.messageLabel = [[QMUILabel alloc] init];
|
self.messageLabel.numberOfLines = 0;
|
[self.headerScrollView addSubview:self.messageLabel];
|
}
|
if (!_message || [_message isEqualToString:@""]) {
|
self.messageLabel.hidden = YES;
|
} else {
|
self.messageLabel.hidden = NO;
|
[self updateMessageLabel];
|
}
|
}
|
|
- (void)updateMessageLabel {
|
if (self.messageLabel && !self.messageLabel.hidden) {
|
NSAttributedString *attributeString = [[NSAttributedString alloc] initWithString:self.message attributes:self.preferredStyle == QMUIAlertControllerStyleAlert ? self.alertMessageAttributes : self.sheetMessageAttributes];
|
self.messageLabel.attributedText = attributeString;
|
}
|
}
|
|
- (NSArray<QMUIAlertAction *> *)actions {
|
return [self.alertActions copy];
|
}
|
|
- (void)updateAction {
|
|
for (QMUIAlertAction *alertAction in self.alertActions) {
|
|
UIColor *backgroundColor = self.preferredStyle == QMUIAlertControllerStyleAlert ? self.alertButtonBackgroundColor : self.sheetButtonBackgroundColor;
|
UIColor *highlightBackgroundColor = self.preferredStyle == QMUIAlertControllerStyleAlert ? self.alertButtonHighlightBackgroundColor : self.sheetButtonHighlightBackgroundColor;
|
UIColor *borderColor = self.preferredStyle == QMUIAlertControllerStyleAlert ? self.alertSeparatorColor : self.sheetSeparatorColor;
|
|
alertAction.button.clipsToBounds = alertAction.style == QMUIAlertActionStyleCancel;
|
alertAction.button.backgroundColor = backgroundColor;
|
alertAction.button.highlightedBackgroundColor = highlightBackgroundColor;
|
alertAction.button.qmui_borderColor = borderColor;
|
|
NSAttributedString *attributeString = nil;
|
if (alertAction.style == QMUIAlertActionStyleCancel) {
|
|
NSDictionary *attributes = (self.preferredStyle == QMUIAlertControllerStyleAlert) ? self.alertCancelButtonAttributes : self.sheetCancelButtonAttributes;
|
if (alertAction.buttonAttributes) {
|
attributes = alertAction.buttonAttributes;
|
}
|
|
attributeString = [[NSAttributedString alloc] initWithString:alertAction.title attributes:attributes];
|
|
} else if (alertAction.style == QMUIAlertActionStyleDestructive) {
|
|
NSDictionary *attributes = (self.preferredStyle == QMUIAlertControllerStyleAlert) ? self.alertDestructiveButtonAttributes : self.sheetDestructiveButtonAttributes;
|
if (alertAction.buttonAttributes) {
|
attributes = alertAction.buttonAttributes;
|
}
|
|
attributeString = [[NSAttributedString alloc] initWithString:alertAction.title attributes:attributes];
|
|
} else {
|
|
NSDictionary *attributes = (self.preferredStyle == QMUIAlertControllerStyleAlert) ? self.alertButtonAttributes : self.sheetButtonAttributes;
|
if (alertAction.buttonAttributes) {
|
attributes = alertAction.buttonAttributes;
|
}
|
|
attributeString = [[NSAttributedString alloc] initWithString:alertAction.title attributes:attributes];
|
}
|
|
[alertAction.button setAttributedTitle:attributeString forState:UIControlStateNormal];
|
|
NSDictionary *attributes = (self.preferredStyle == QMUIAlertControllerStyleAlert) ? self.alertButtonDisabledAttributes : self.sheetButtonDisabledAttributes;
|
if (alertAction.buttonDisabledAttributes) {
|
attributes = alertAction.buttonDisabledAttributes;
|
}
|
|
attributeString = [[NSAttributedString alloc] initWithString:alertAction.title attributes:attributes];
|
[alertAction.button setAttributedTitle:attributeString forState:UIControlStateDisabled];
|
|
if ([alertAction.button imageForState:UIControlStateNormal]) {
|
NSRange range = NSMakeRange(0, attributeString.length);
|
UIColor *disabledColor = [attributeString attribute:NSForegroundColorAttributeName atIndex:0 effectiveRange:&range];
|
[alertAction.button setImage:[[alertAction.button imageForState:UIControlStateNormal] qmui_imageWithTintColor:disabledColor] forState:UIControlStateDisabled];
|
}
|
}
|
}
|
|
- (NSArray<QMUITextField *> *)textFields {
|
return [self.alertTextFields copy];
|
}
|
|
- (void)handleMaskViewEvent:(id)sender {
|
if (_shouldRespondMaskViewTouch) {
|
[self hideWithAnimated:YES completion:NULL];
|
}
|
}
|
|
#pragma mark - Getters & Setters
|
|
- (UIControl *)maskView {
|
if (!_maskView) {
|
_maskView = [[UIControl alloc] init];
|
_maskView.alpha = 0;
|
_maskView.backgroundColor = UIColorMask;
|
[_maskView addTarget:self action:@selector(handleMaskViewEvent:) forControlEvents:UIControlEventTouchUpInside];
|
}
|
return _maskView;
|
}
|
|
- (UIView *)containerView {
|
if (!_containerView) {
|
_containerView = [[UIView alloc] init];
|
}
|
return _containerView;
|
}
|
|
- (UIView *)scrollWrapView {
|
if (!_scrollWrapView) {
|
_scrollWrapView = [[UIView alloc] init];
|
}
|
return _scrollWrapView;
|
}
|
|
- (UIScrollView *)headerScrollView {
|
if (!_headerScrollView) {
|
_headerScrollView = [[UIScrollView alloc] init];
|
_headerScrollView.scrollsToTop = NO;
|
_headerScrollView.contentInsetAdjustmentBehavior = UIScrollViewContentInsetAdjustmentNever;
|
[self updateHeaderBackgrondColor];
|
}
|
return _headerScrollView;
|
}
|
|
- (UIScrollView *)buttonScrollView {
|
if (!_buttonScrollView) {
|
_buttonScrollView = [[UIScrollView alloc] init];
|
_buttonScrollView.scrollsToTop = NO;
|
_buttonScrollView.contentInsetAdjustmentBehavior = UIScrollViewContentInsetAdjustmentNever;
|
}
|
return _buttonScrollView;
|
}
|
|
- (CALayer *)extendLayer {
|
if (!_extendLayer) {
|
_extendLayer = [CALayer layer];
|
_extendLayer.hidden = !self.isExtendBottomLayout;
|
[_extendLayer qmui_removeDefaultAnimations];
|
[self updateExtendLayerAppearance];
|
}
|
return _extendLayer;
|
}
|
|
#pragma mark - <QMUIAlertActionDelegate>
|
|
- (void)didClickAlertAction:(QMUIAlertAction *)alertAction {
|
[self hideWithAnimated:YES completion:^{
|
if (alertAction.handler) {
|
alertAction.handler(self, alertAction);
|
}
|
}];
|
}
|
|
#pragma mark - <QMUIModalPresentationComponentProtocol>
|
|
- (void)hideModalPresentationComponent {
|
[self hideWithAnimated:NO completion:NULL];
|
}
|
|
#pragma mark - <QMUIModalPresentationViewControllerDelegate>
|
|
- (BOOL)shouldHideModalPresentationViewController:(QMUIModalPresentationViewController *)controller {
|
if ([self.delegate respondsToSelector:@selector(shouldHideAlertController:)]) {
|
return [self.delegate shouldHideAlertController:self];
|
}
|
return YES;
|
}
|
|
#pragma mark - <QMUITextFieldDelegate>
|
|
- (BOOL)textFieldShouldReturn:(QMUITextField *)textField {
|
if (!self.shouldManageTextFieldsReturnEventAutomatically) {
|
return NO;
|
}
|
|
if (![self.textFields containsObject:textField]) {
|
return NO;
|
}
|
|
// 最后一个输入框,默认的 return 行为与 iOS 9-11 保持一致,也即:
|
// 如果 action = 1,则自动响应这个 action 的事件
|
// 如果 action = 2,并且其中有一个是 Cancel,则响应另一个 action 的事件,如果其中不存在 Cancel,则降下键盘,不响应任何 action
|
// 如果 action > 2,则降下键盘,不响应任何 action
|
if (textField == self.textFields.lastObject) {
|
if (self.actions.count == 1) {
|
[self.actions.firstObject.button sendActionsForControlEvents:UIControlEventTouchUpInside];
|
} else if (self.actions.count == 2) {
|
if (self.cancelAction) {
|
QMUIAlertAction *targetAction = self.actions.firstObject == self.cancelAction ? self.actions.lastObject : self.actions.firstObject;
|
[targetAction.button sendActionsForControlEvents:UIControlEventTouchUpInside];
|
}
|
}
|
[self.view endEditing:YES];
|
return NO;
|
}
|
// 非最后一个输入框,则默认的 return 行为是聚焦到下一个输入框
|
NSUInteger index = [self.textFields indexOfObject:textField];
|
[self.textFields[index + 1] becomeFirstResponder];
|
return NO;
|
}
|
|
@end
|
|
@implementation QMUIAlertController (Manager)
|
|
+ (BOOL)isAnyAlertControllerVisible {
|
return alertControllerCount > 0;
|
}
|
|
@end
|