Skip to content

Commit 852826c

Browse files
committed
4.1.2
1 parent d966c0c commit 852826c

File tree

306 files changed

+1409
-1161
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

306 files changed

+1409
-1161
lines changed

QMUIConfigurationTemplate/QMUIConfigurationTemplate.h

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
1-
/*****
1+
/**
22
* Tencent is pleased to support the open source community by making QMUI_iOS available.
33
* Copyright (C) 2016-2020 THL A29 Limited, a Tencent company. All rights reserved.
44
* 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
55
* http://opensource.org/licenses/MIT
66
* 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.
7-
*****/
7+
*/
88

99
//
1010
// QMUIConfigurationTemplate.h

QMUIConfigurationTemplate/QMUIConfigurationTemplate.m

+4-3
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
1-
/*****
1+
/**
22
* Tencent is pleased to support the open source community by making QMUI_iOS available.
33
* Copyright (C) 2016-2020 THL A29 Limited, a Tencent company. All rights reserved.
44
* 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
55
* http://opensource.org/licenses/MIT
66
* 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.
7-
*****/
7+
*/
88

99
//
1010
// QMUIConfigurationTemplate.m
@@ -233,7 +233,8 @@ - (void)applyConfigurationTemplate {
233233
QMUICMI.navigationBarHiddenInitially = NO; // NavigationBarHiddenInitially : QMUINavigationControllerDelegate preferredNavigationBarHidden 的初始值,默认为NO
234234
QMUICMI.shouldFixTabBarTransitionBugInIPhoneX = NO; // ShouldFixTabBarTransitionBugInIPhoneX : 是否需要自动修复 iOS 11 下,iPhone X 的设备在 push 界面时,tabBar 会瞬间往上跳的 bug
235235
QMUICMI.shouldFixTabBarButtonBugForAll = NO; // ShouldFixTabBarButtonBugForAll : 是否要对 iOS 12.1.1 及以后的版本也修复手势返回时 tabBarButton 布局错误的 bug(issue #410),默认为 NO
236-
QMUICMI.shouldFixTabBarSafeAreaInsetsBugForNotchedScreen = NO; // ShouldFixTabBarSafeAreaInsetsBugForNotchedScreen : 是否要对 iOS 11 及以后的版本修复全面屏设备下 pop 界面时 UIScrollView 的 inset 会跳动导致滚动位置受影响的 bug(issue #934),默认为 NO
236+
QMUICMI.shouldFixTabBarSafeAreaInsetsBug = NO; // ShouldFixTabBarSafeAreaInsetsBug : 是否要对 iOS 11 及以后的版本修复当存在 UITabBar 时,UIScrollView 的 inset.bottom 可能错误的 bug(issue #218 #934),默认为 YES
237+
QMUICMI.shouldFixSearchBarMaskViewLayoutBug = NO; // ShouldFixSearchBarMaskViewLayoutBug : 是否自动修复 UISearchController.searchBar 被当作 tableHeaderView 使用时可能出现的布局 bug(issue #950)
237238
QMUICMI.shouldPrintQMUIWarnLogToConsole = IS_DEBUG; // ShouldPrintQMUIWarnLogToConsole : 是否在出现 QMUILogWarn 时自动把这些 log 以 QMUIConsole 的方式显示到设备屏幕上
238239
QMUICMI.sendAnalyticsToQMUITeam = YES; // SendAnalyticsToQMUITeam : 是否允许在 DEBUG 模式下上报 Bundle Identifier 和 Display Name 给 QMUI 统计用
239240
QMUICMI.dynamicPreferredValueForIPad = NO; // DynamicPreferredValueForIPad : 当 iPad 处于 Slide Over 或 Split View 分屏模式下,宏 `PreferredValueForXXX` 是否把 iPad 视为某种屏幕宽度近似的 iPhone 来取值。

QMUIKit.podspec

+7-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
Pod::Spec.new do |s|
22
s.name = "QMUIKit"
3-
s.version = "4.1.1"
3+
s.version = "4.1.2"
44
s.summary = "致力于提高项目 UI 开发效率的解决方案"
55
s.description = <<-DESC
66
QMUI iOS 是一个致力于提高项目 UI 开发效率的解决方案,其设计目的是用于辅助快速搭建一个具备基本设计还原效果的 iOS 项目,同时利用自身提供的丰富控件及兼容处理, 让开发者能专注于业务需求而无需耗费精力在基础代码的设计上。不管是新项目的创建,或是已有项目的维护,均可使开发效率和项目质量得到大幅度提升。
@@ -56,6 +56,11 @@ Pod::Spec.new do |s|
5656
sss.dependency 'QMUIKit/QMUIComponents/QMUIMultipleDelegates'
5757
end
5858

59+
ss.subspec 'QMUICALayerExtension' do |sss|
60+
sss.source_files = 'QMUIKit/QMUIComponents/CALayer+QMUIViewAnimation.{h,m}'
61+
sss.dependency 'QMUIKit/QMUIComponents/QMUIMultipleDelegates'
62+
end
63+
5964
ss.subspec 'QMUIAnimation' do |sss|
6065
sss.source_files = 'QMUIKit/QMUIComponents/QMUIAnimation'
6166
end
@@ -323,6 +328,7 @@ Pod::Spec.new do |s|
323328

324329
ss.subspec 'QMUIVisualEffectView' do |sss|
325330
sss.source_files = 'QMUIKit/QMUIComponents/QMUIVisualEffectView.{h,m}'
331+
sss.dependency 'QMUIKit/QMUIComponents/QMUICALayerExtension'
326332
end
327333

328334
ss.subspec 'QMUIWindowSizeMonitor' do |sss|

QMUIKit/QMUIComponents/AssetLibrary/QMUIAsset.h

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
1-
/*****
1+
/**
22
* Tencent is pleased to support the open source community by making QMUI_iOS available.
33
* Copyright (C) 2016-2020 THL A29 Limited, a Tencent company. All rights reserved.
44
* 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
55
* http://opensource.org/licenses/MIT
66
* 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.
7-
*****/
7+
*/
88

99
//
1010
// QMUIAsset.h

QMUIKit/QMUIComponents/AssetLibrary/QMUIAsset.m

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
1-
/*****
1+
/**
22
* Tencent is pleased to support the open source community by making QMUI_iOS available.
33
* Copyright (C) 2016-2020 THL A29 Limited, a Tencent company. All rights reserved.
44
* 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
55
* http://opensource.org/licenses/MIT
66
* 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.
7-
*****/
7+
*/
88

99
//
1010
// QMUIAsset.m

QMUIKit/QMUIComponents/AssetLibrary/QMUIAssetsGroup.h

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
1-
/*****
1+
/**
22
* Tencent is pleased to support the open source community by making QMUI_iOS available.
33
* Copyright (C) 2016-2020 THL A29 Limited, a Tencent company. All rights reserved.
44
* 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
55
* http://opensource.org/licenses/MIT
66
* 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.
7-
*****/
7+
*/
88

99
//
1010
// QMUIAssetsGroup.h

QMUIKit/QMUIComponents/AssetLibrary/QMUIAssetsGroup.m

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
1-
/*****
1+
/**
22
* Tencent is pleased to support the open source community by making QMUI_iOS available.
33
* Copyright (C) 2016-2020 THL A29 Limited, a Tencent company. All rights reserved.
44
* 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
55
* http://opensource.org/licenses/MIT
66
* 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.
7-
*****/
7+
*/
88

99
//
1010
// QMUIAssetsGroup.m

QMUIKit/QMUIComponents/AssetLibrary/QMUIAssetsManager.h

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
1-
/*****
1+
/**
22
* Tencent is pleased to support the open source community by making QMUI_iOS available.
33
* Copyright (C) 2016-2020 THL A29 Limited, a Tencent company. All rights reserved.
44
* 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
55
* http://opensource.org/licenses/MIT
66
* 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.
7-
*****/
7+
*/
88

99
//
1010
// QMUIAssetsManager.h
@@ -122,7 +122,7 @@ extern void QMUISaveVideoAtPathToSavedPhotosAlbumWithAlbumAssetsGroup(NSString *
122122
*
123123
* @return 返回包含所有合适相册的数组
124124
*/
125-
+ (NSArray <PHAssetCollection *> *)fetchAllAlbumsWithAlbumContentType:(QMUIAlbumContentType)contentType showEmptyAlbum:(BOOL)showEmptyAlbum showSmartAlbum:(BOOL)showSmartAlbum;
125+
+ (NSArray<PHAssetCollection *> *)fetchAllAlbumsWithAlbumContentType:(QMUIAlbumContentType)contentType showEmptyAlbum:(BOOL)showEmptyAlbum showSmartAlbum:(BOOL)showSmartAlbum;
126126

127127
/// 获取一个 PHAssetCollection 中创建日期最新的资源
128128
+ (PHAsset *)fetchLatestAssetWithAssetCollection:(PHAssetCollection *)assetCollection;

QMUIKit/QMUIComponents/AssetLibrary/QMUIAssetsManager.m

+8-8
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
1-
/*****
1+
/**
22
* Tencent is pleased to support the open source community by making QMUI_iOS available.
33
* Copyright (C) 2016-2020 THL A29 Limited, a Tencent company. All rights reserved.
44
* 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
55
* http://opensource.org/licenses/MIT
66
* 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.
7-
*****/
7+
*/
88

99
//
1010
// QMUIAssetsManager.m
@@ -91,14 +91,14 @@ + (void)requestAuthorization:(void(^)(QMUIAssetAuthorizationStatus status))handl
9191

9292
- (void)enumerateAllAlbumsWithAlbumContentType:(QMUIAlbumContentType)contentType showEmptyAlbum:(BOOL)showEmptyAlbum showSmartAlbumIfSupported:(BOOL)showSmartAlbumIfSupported usingBlock:(void (^)(QMUIAssetsGroup *resultAssetsGroup))enumerationBlock {
9393
// 根据条件获取所有合适的相册,并保存到临时数组中
94-
NSArray *tempAlbumsArray = [PHPhotoLibrary fetchAllAlbumsWithAlbumContentType:contentType showEmptyAlbum:showEmptyAlbum showSmartAlbum:showSmartAlbumIfSupported];
94+
NSArray<PHAssetCollection *> *tempAlbumsArray = [PHPhotoLibrary fetchAllAlbumsWithAlbumContentType:contentType showEmptyAlbum:showEmptyAlbum showSmartAlbum:showSmartAlbumIfSupported];
9595

9696
// 创建一个 PHFetchOptions,用于 QMUIAssetsGroup 对资源的排序以及对内容类型进行控制
9797
PHFetchOptions *phFetchOptions = [PHPhotoLibrary createFetchOptionsWithAlbumContentType:contentType];
9898

9999
// 遍历结果,生成对应的 QMUIAssetsGroup,并调用 enumerationBlock
100-
for (NSUInteger i = 0; i < [tempAlbumsArray count]; i++) {
101-
PHAssetCollection *phAssetCollection = [tempAlbumsArray objectAtIndex:i];
100+
for (NSUInteger i = 0; i < tempAlbumsArray.count; i++) {
101+
PHAssetCollection *phAssetCollection = tempAlbumsArray[i];
102102
QMUIAssetsGroup *assetsGroup = [[QMUIAssetsGroup alloc] initWithPHCollection:phAssetCollection fetchAssetsOptions:phFetchOptions];
103103
if (enumerationBlock) {
104104
enumerationBlock(assetsGroup);
@@ -212,8 +212,8 @@ + (PHFetchOptions *)createFetchOptionsWithAlbumContentType:(QMUIAlbumContentType
212212
return fetchOptions;
213213
}
214214

215-
+ (NSArray <PHAssetCollection *> *)fetchAllAlbumsWithAlbumContentType:(QMUIAlbumContentType)contentType showEmptyAlbum:(BOOL)showEmptyAlbum showSmartAlbum:(BOOL)showSmartAlbum {
216-
NSMutableArray <PHAssetCollection *> *tempAlbumsArray = [[NSMutableArray alloc] init];
215+
+ (NSArray<PHAssetCollection *> *)fetchAllAlbumsWithAlbumContentType:(QMUIAlbumContentType)contentType showEmptyAlbum:(BOOL)showEmptyAlbum showSmartAlbum:(BOOL)showSmartAlbum {
216+
NSMutableArray<PHAssetCollection *> *tempAlbumsArray = [[NSMutableArray alloc] init];
217217

218218
// 创建一个 PHFetchOptions,用于创建 QMUIAssetsGroup 对资源的排序和类型进行控制
219219
PHFetchOptions *fetchOptions = [PHPhotoLibrary createFetchOptionsWithAlbumContentType:contentType];
@@ -284,7 +284,7 @@ + (PHFetchOptions *)createFetchOptionsWithAlbumContentType:(QMUIAlbumContentType
284284
}
285285
}
286286

287-
NSArray *resultAlbumsArray = [tempAlbumsArray copy];
287+
NSArray<PHAssetCollection *> *resultAlbumsArray = [tempAlbumsArray copy];
288288
return resultAlbumsArray;
289289
}
290290

QMUIKit/QMUIComponents/CAAnimation+QMUI.h

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
1-
/*****
1+
/**
22
* Tencent is pleased to support the open source community by making QMUI_iOS available.
33
* Copyright (C) 2016-2020 THL A29 Limited, a Tencent company. All rights reserved.
44
* 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
55
* http://opensource.org/licenses/MIT
66
* 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.
7-
*****/
7+
*/
88

99
//
1010
// CAAnimation+QMUI.h

QMUIKit/QMUIComponents/CAAnimation+QMUI.m

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
1-
/*****
1+
/**
22
* Tencent is pleased to support the open source community by making QMUI_iOS available.
33
* Copyright (C) 2016-2020 THL A29 Limited, a Tencent company. All rights reserved.
44
* 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
55
* http://opensource.org/licenses/MIT
66
* 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.
7-
*****/
7+
*/
88

99
//
1010
// CAAnimation+QMUI.m
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,34 @@
1+
/**
2+
* Tencent is pleased to support the open source community by making QMUI_iOS available.
3+
* Copyright (C) 2016-2020 THL A29 Limited, a Tencent company. All rights reserved.
4+
* 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
5+
* http://opensource.org/licenses/MIT
6+
* 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.
7+
*/
8+
//
9+
// CALayer+QMUIViewAnimation.h
10+
// QMUIKit
11+
//
12+
// Created by ziezheng on 2020/4/4.
13+
//
14+
15+
#import <UIKit/UIKit.h>
16+
17+
NS_ASSUME_NONNULL_BEGIN
18+
19+
@interface CALayer (QMUIViewAnimation)
20+
21+
/**
22+
开启了该属性的 CALayer 可在 +[UIView animateWithDuration:animations:] 执行动画,系统默认是不支持这种做法的。
23+
24+
@code
25+
[UIView animateWithDuration:1 animations:^{
26+
layer.frame = xxx;
27+
} completion:nil];
28+
@endcode
29+
*/
30+
@property(nonatomic, assign) BOOL qmui_viewAnimaitonEnabled;
31+
32+
@end
33+
34+
NS_ASSUME_NONNULL_END

0 commit comments

Comments
 (0)