/**
|
* 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.
|
*/
|
|
//
|
// QMUIPopupMenuView.m
|
// qmui
|
//
|
// Created by QMUI Team on 2017/2/24.
|
//
|
|
#import "QMUIPopupMenuView.h"
|
#import "QMUICore.h"
|
#import "UIView+QMUI.h"
|
#import "CALayer+QMUI.h"
|
#import "NSArray+QMUI.h"
|
|
@interface QMUIPopupMenuView ()
|
|
@property(nonatomic, strong) UIScrollView *scrollView;
|
@property(nonatomic, strong) NSMutableArray<CALayer *> *itemSeparatorLayers;
|
@property(nonatomic, strong) NSMutableArray<CALayer *> *sectionSeparatorLayers;
|
@end
|
|
@interface QMUIPopupMenuView (UIAppearance)
|
|
- (void)updateAppearanceForPopupMenuView;
|
@end
|
|
@implementation QMUIPopupMenuView
|
|
- (void)setItems:(NSArray<__kindof QMUIPopupMenuBaseItem *> *)items {
|
[_items enumerateObjectsUsingBlock:^(__kindof QMUIPopupMenuBaseItem * _Nonnull item, NSUInteger idx, BOOL * _Nonnull stop) {
|
item.menuView = nil;
|
}];
|
_items = items;
|
if (!items) {
|
self.itemSections = nil;
|
} else {
|
self.itemSections = @[_items];
|
}
|
}
|
|
- (void)setItemSections:(NSArray<NSArray<__kindof QMUIPopupMenuBaseItem *> *> *)itemSections {
|
[_itemSections qmui_enumerateNestedArrayWithBlock:^(__kindof QMUIPopupMenuBaseItem * item, BOOL *stop) {
|
item.menuView = nil;
|
}];
|
_itemSections = itemSections;
|
[self configureItems];
|
}
|
|
- (void)setItemConfigurationHandler:(void (^)(QMUIPopupMenuView *, __kindof QMUIPopupMenuBaseItem *, NSInteger, NSInteger))itemConfigurationHandler {
|
_itemConfigurationHandler = [itemConfigurationHandler copy];
|
if (_itemConfigurationHandler && self.itemSections.count) {
|
for (NSInteger section = 0, sectionCount = self.itemSections.count; section < sectionCount; section ++) {
|
NSArray<QMUIPopupMenuBaseItem *> *items = self.itemSections[section];
|
for (NSInteger row = 0, rowCount = items.count; row < rowCount; row ++) {
|
QMUIPopupMenuBaseItem *item = items[row];
|
_itemConfigurationHandler(self, item, section, row);
|
}
|
}
|
}
|
}
|
|
- (void)configureItems {
|
__block NSInteger globalItemIndex = 0;
|
__block NSInteger separatorIndex = 0;
|
|
// 移除所有 item
|
[self.scrollView qmui_removeAllSubviews];
|
[self.itemSeparatorLayers enumerateObjectsUsingBlock:^(CALayer * _Nonnull layer, NSUInteger idx, BOOL * _Nonnull stop) {
|
layer.hidden = YES;
|
}];
|
[self.sectionSeparatorLayers enumerateObjectsUsingBlock:^(CALayer * _Nonnull layer, NSUInteger idx, BOOL * _Nonnull stop) {
|
layer.hidden = YES;
|
}];
|
|
[self enumerateItemsWithBlock:^(QMUIPopupMenuBaseItem *item, NSInteger section, NSInteger sectionCount, NSInteger row, NSInteger rowCount) {
|
item.menuView = self;
|
[item updateAppearance];
|
if (self.itemConfigurationHandler) {
|
self.itemConfigurationHandler(self, item, section, row);
|
}
|
[self.scrollView addSubview:item];
|
|
// 配置分隔线,注意每一个 section 里的最后一行是不显示分隔线的
|
BOOL shouldShowItemSeparator = self.shouldShowItemSeparator && row < rowCount - 1;
|
if (shouldShowItemSeparator) {
|
CALayer *separatorLayer = nil;
|
if (separatorIndex < self.itemSeparatorLayers.count) {
|
separatorLayer = self.itemSeparatorLayers[separatorIndex];
|
} else {
|
separatorLayer = [CALayer qmui_separatorLayer];
|
[self.scrollView.layer addSublayer:separatorLayer];
|
[self.itemSeparatorLayers addObject:separatorLayer];
|
}
|
separatorLayer.hidden = NO;
|
separatorLayer.backgroundColor = self.itemSeparatorColor.CGColor;
|
separatorIndex++;
|
}
|
|
globalItemIndex++;
|
}];
|
|
for (NSInteger section = 0, sectionCount = self.itemSections.count; section < sectionCount; section ++) {
|
BOOL shouldShowSectionSeparator = self.shouldShowSectionSeparator && section < sectionCount - 1;
|
if (shouldShowSectionSeparator) {
|
CALayer *separatorLayer = nil;
|
if (section < self.sectionSeparatorLayers.count) {
|
separatorLayer = self.sectionSeparatorLayers[section];
|
} else {
|
separatorLayer = [CALayer qmui_separatorLayer];
|
[self.scrollView.layer addSublayer:separatorLayer];
|
[self.sectionSeparatorLayers addObject:separatorLayer];
|
}
|
separatorLayer.hidden = NO;
|
separatorLayer.backgroundColor = self.sectionSeparatorColor.CGColor;
|
}
|
}
|
}
|
|
- (void)setItemSeparatorInset:(UIEdgeInsets)itemSeparatorInset {
|
_itemSeparatorInset = itemSeparatorInset;
|
[self setNeedsLayout];
|
}
|
|
- (void)setItemSeparatorColor:(UIColor *)itemSeparatorColor {
|
_itemSeparatorColor = itemSeparatorColor;
|
[self.itemSeparatorLayers enumerateObjectsUsingBlock:^(CALayer * _Nonnull layer, NSUInteger idx, BOOL * _Nonnull stop) {
|
layer.backgroundColor = itemSeparatorColor.CGColor;
|
}];
|
}
|
|
- (void)setSectionSeparatorInset:(UIEdgeInsets)sectionSeparatorInset {
|
_sectionSeparatorInset = sectionSeparatorInset;
|
[self setNeedsLayout];
|
}
|
|
- (void)setSectionSpacing:(CGFloat)sectionSpacing {
|
_sectionSpacing = sectionSpacing;
|
[self setNeedsLayout];
|
}
|
|
- (void)setSectionSeparatorColor:(UIColor *)sectionSeparatorColor {
|
_sectionSeparatorColor = sectionSeparatorColor;
|
[self.sectionSeparatorLayers enumerateObjectsUsingBlock:^(CALayer * _Nonnull layer, NSUInteger idx, BOOL * _Nonnull stop) {
|
layer.backgroundColor = sectionSeparatorColor.CGColor;
|
}];
|
}
|
|
- (void)setItemTitleFont:(UIFont *)itemTitleFont {
|
_itemTitleFont = itemTitleFont;
|
[self enumerateItemsWithBlock:^(QMUIPopupMenuBaseItem *item, NSInteger section, NSInteger sectionCount, NSInteger row, NSInteger rowCount) {
|
[item updateAppearance];
|
}];
|
}
|
|
- (void)setItemTitleColor:(UIColor *)itemTitleColor {
|
_itemTitleColor = itemTitleColor;
|
[self enumerateItemsWithBlock:^(QMUIPopupMenuBaseItem *item, NSInteger section, NSInteger sectionCount, NSInteger row, NSInteger rowCount) {
|
[item updateAppearance];
|
}];
|
}
|
|
- (void)setPadding:(UIEdgeInsets)padding {
|
_padding = padding;
|
[self enumerateItemsWithBlock:^(QMUIPopupMenuBaseItem *item, NSInteger section, NSInteger sectionCount, NSInteger row, NSInteger rowCount) {
|
[item updateAppearance];
|
}];
|
}
|
|
- (void)enumerateItemsWithBlock:(void (^)(QMUIPopupMenuBaseItem *item, NSInteger section, NSInteger sectionCount, NSInteger row, NSInteger rowCount))block {
|
if (!block) return;
|
for (NSInteger section = 0, sectionCount = self.itemSections.count; section < sectionCount; section ++) {
|
NSArray<QMUIPopupMenuBaseItem *> *items = self.itemSections[section];
|
for (NSInteger row = 0, rowCount = items.count; row < rowCount; row ++) {
|
QMUIPopupMenuBaseItem *item = items[row];
|
block(item, section, sectionCount, row, rowCount);
|
}
|
}
|
}
|
|
#pragma mark - (UISubclassingHooks)
|
|
- (void)didInitialize {
|
[super didInitialize];
|
self.contentEdgeInsets = UIEdgeInsetsZero;
|
|
self.scrollView = [[UIScrollView alloc] init];
|
self.scrollView.scrollsToTop = NO;
|
self.scrollView.showsHorizontalScrollIndicator = NO;
|
self.scrollView.showsVerticalScrollIndicator = NO;
|
self.scrollView.contentInsetAdjustmentBehavior = UIScrollViewContentInsetAdjustmentNever;
|
[self.contentView addSubview:self.scrollView];
|
|
self.itemSeparatorLayers = [[NSMutableArray alloc] init];
|
self.sectionSeparatorLayers = [[NSMutableArray alloc] init];
|
|
[self updateAppearanceForPopupMenuView];
|
}
|
|
- (CGSize)sizeThatFitsInContentView:(CGSize)size {
|
__block CGFloat width = 0;
|
__block CGFloat height = UIEdgeInsetsGetVerticalValue(self.padding);
|
[self.itemSections qmui_enumerateNestedArrayWithBlock:^(__kindof QMUIPopupMenuBaseItem *item, BOOL *stop) {
|
CGSize itemSize = [item sizeThatFits:CGSizeMake(size.width, CGFLOAT_MAX)];
|
CGFloat itemHeight = item.height;
|
if (itemHeight < 0) {
|
itemHeight = self.itemHeight;
|
}
|
// QMUIViewSelfSizingHeight
|
if (isinf(itemHeight)) {
|
itemHeight = itemSize.height;
|
}
|
height += itemHeight;
|
width = MAX(width, MIN(itemSize.width, size.width));
|
}];
|
height += (self.itemSections.count - 1) * self.sectionSpacing;
|
size.width = width;
|
size.height = height;
|
return size;
|
}
|
|
- (void)layoutSubviews {
|
[super layoutSubviews];
|
self.scrollView.frame = self.contentView.bounds;
|
|
CGFloat minY = self.padding.top;
|
CGFloat contentWidth = CGRectGetWidth(self.scrollView.bounds);
|
NSInteger separatorIndex = 0;
|
for (NSInteger section = 0, sectionCount = self.itemSections.count; section < sectionCount; section ++) {
|
NSArray<QMUIPopupMenuBaseItem *> *items = self.itemSections[section];
|
for (NSInteger row = 0, rowCount = items.count; row < rowCount; row ++) {
|
QMUIPopupMenuBaseItem *item = items[row];
|
CGFloat itemHeight = item.height;
|
if (itemHeight < 0) {
|
itemHeight = self.itemHeight;
|
}
|
if (isinf(itemHeight)) {
|
itemHeight = [item sizeThatFits:CGSizeMake(contentWidth, CGFLOAT_MAX)].height;
|
}
|
item.frame = CGRectMake(0, minY, contentWidth, itemHeight);
|
minY = CGRectGetMaxY(item.frame);
|
|
if (self.shouldShowItemSeparator && row < rowCount - 1) {
|
CALayer *layer = self.itemSeparatorLayers[separatorIndex];
|
if (!layer.hidden) {
|
layer.frame = CGRectMake(self.padding.left + self.itemSeparatorInset.left, minY - PixelOne + self.itemSeparatorInset.top - self.itemSeparatorInset.bottom, contentWidth - UIEdgeInsetsGetHorizontalValue(self.padding) - UIEdgeInsetsGetHorizontalValue(self.itemSeparatorInset), PixelOne);
|
separatorIndex++;
|
}
|
}
|
}
|
|
if (section < sectionCount - 1) {
|
if (self.shouldShowSectionSeparator) {
|
self.sectionSeparatorLayers[section].frame = CGRectMake(0, minY - PixelOne + self.sectionSeparatorInset.top - self.sectionSeparatorInset.bottom, contentWidth - UIEdgeInsetsGetHorizontalValue(self.sectionSeparatorInset), PixelOne);
|
}
|
|
minY += self.sectionSpacing;
|
}
|
}
|
minY += self.padding.bottom;
|
self.scrollView.contentSize = CGSizeMake(contentWidth, minY);
|
}
|
|
@end
|
|
@implementation QMUIPopupMenuView (UIAppearance)
|
|
+ (void)initialize {
|
static dispatch_once_t onceToken;
|
dispatch_once(&onceToken, ^{
|
[self setDefaultAppearanceForPopupMenuView];
|
});
|
}
|
|
+ (void)setDefaultAppearanceForPopupMenuView {
|
QMUIPopupMenuView *appearance = [QMUIPopupMenuView appearance];
|
appearance.shouldShowItemSeparator = NO;
|
appearance.itemSeparatorColor = UIColorSeparator;
|
appearance.itemSeparatorInset = UIEdgeInsetsZero;
|
appearance.shouldShowSectionSeparator = NO;
|
appearance.sectionSeparatorColor = UIColorSeparator;
|
appearance.sectionSeparatorInset = UIEdgeInsetsZero;
|
appearance.itemTitleFont = UIFontMake(16);
|
appearance.itemTitleColor = UIColorBlue;
|
appearance.padding = UIEdgeInsetsMake([QMUIPopupContainerView appearance].cornerRadius / 2.0, 16, [QMUIPopupContainerView appearance].cornerRadius / 2.0, 16);
|
appearance.itemHeight = 44;
|
}
|
|
- (void)updateAppearanceForPopupMenuView {
|
QMUIPopupMenuView *appearance = [QMUIPopupMenuView appearance];
|
self.shouldShowItemSeparator = appearance.shouldShowItemSeparator;
|
self.itemSeparatorColor = appearance.itemSeparatorColor;
|
self.itemSeparatorInset = appearance.itemSeparatorInset;
|
self.shouldShowSectionSeparator = appearance.shouldShowSectionSeparator;
|
self.sectionSeparatorColor = appearance.sectionSeparatorColor;
|
self.sectionSeparatorInset = appearance.sectionSeparatorInset;
|
self.sectionSpacing = appearance.sectionSpacing;
|
self.itemTitleFont = appearance.itemTitleFont;
|
self.itemTitleColor = appearance.itemTitleColor;
|
self.padding = appearance.padding;
|
self.itemHeight = appearance.itemHeight;
|
}
|
|
@end
|