Skip to content

Commit f17afcc

Browse files
committed
2.9.3
1 parent 088d151 commit f17afcc

File tree

259 files changed

+2585
-1566
lines changed

Some content is hidden

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

259 files changed

+2585
-1566
lines changed

QMUIConfigurationTemplate/QMUIConfigurationTemplate.h

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@
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.
77
*****/
8+
89
//
910
// QMUIConfigurationTemplate.h
1011
//

QMUIConfigurationTemplate/QMUIConfigurationTemplate.m

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@
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.
77
*****/
8+
89
//
910
// QMUIConfigurationTemplate.m
1011
// qmui
@@ -183,7 +184,6 @@ - (void)applyConfigurationTemplate {
183184

184185
#pragma mark - UIWindowLevel
185186
QMUICMI.windowLevelQMUIAlertView = UIWindowLevelAlert - 4.0; // UIWindowLevelQMUIAlertView : QMUIModalPresentationViewController、QMUIPopupContainerView 里使用的 UIWindow 的 windowLevel
186-
QMUICMI.windowLevelQMUIImagePreviewView = UIWindowLevelStatusBar + 1.0; // UIWindowLevelQMUIImagePreviewView : QMUIImagePreviewViewController 里使用的 UIWindow 的 windowLevel
187187

188188
#pragma mark - QMUILog
189189
QMUICMI.shouldPrintDefaultLog = YES; // ShouldPrintDefaultLog : 是否允许输出 QMUILogLevelDefault 级别的 log

QMUIKit.podspec

Lines changed: 3 additions & 8 deletions
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 = "2.9.2"
3+
s.version = "2.9.3"
44
s.summary = "致力于提高项目 UI 开发效率的解决方案"
55
s.description = <<-DESC
66
QMUI iOS 是一个致力于提高项目 UI 开发效率的解决方案,其设计目的是用于辅助快速搭建一个具备基本设计还原效果的 iOS 项目,同时利用自身提供的丰富控件及兼容处理, 让开发者能专注于业务需求而无需耗费精力在基础代码的设计上。不管是新项目的创建,或是已有项目的维护,均可使开发效率和项目质量得到大幅度提升。
@@ -174,18 +174,13 @@ Pod::Spec.new do |s|
174174
end
175175

176176
ss.subspec 'QMUIImagePreviewView' do |sss|
177-
sss.source_files = 'QMUIKit/QMUIComponents/QMUIImagePreviewView.{h,m}'
177+
sss.source_files = 'QMUIKit/QMUIComponents/QMUIImagePreviewView/*.{h,m}'
178178
sss.dependency 'QMUIKit/QMUIComponents/QMUIZoomImageView'
179179
sss.dependency 'QMUIKit/QMUIComponents/QMUICollectionViewPagingLayout'
180180
sss.dependency 'QMUIKit/QMUIComponents/QMUIEmptyView'
181181
sss.dependency 'QMUIKit/QMUIComponents/QMUIPieProgressView'
182182
sss.dependency 'QMUIKit/QMUIComponents/QMUIButton'
183-
end
184-
185-
ss.subspec 'QMUIImagePreviewViewController' do |sss|
186-
sss.source_files = 'QMUIKit/QMUIComponents/QMUIImagePreviewViewController.{h,m}'
187183
sss.dependency 'QMUIKit/QMUIMainFrame'
188-
sss.dependency 'QMUIKit/QMUIComponents/QMUIImagePreviewView'
189184
end
190185

191186
ss.subspec 'QMUIMarqueeLabel' do |sss|
@@ -302,7 +297,7 @@ Pod::Spec.new do |s|
302297
sss.source_files = 'QMUIKit/QMUIComponents/ImagePickerLibrary/*.{h,m}'
303298
sss.dependency 'QMUIKit/QMUIMainFrame'
304299
sss.dependency 'QMUIKit/QMUIResources'
305-
sss.dependency 'QMUIKit/QMUIComponents/QMUIImagePreviewViewController'
300+
sss.dependency 'QMUIKit/QMUIComponents/QMUIImagePreviewView'
306301
sss.dependency 'QMUIKit/QMUIComponents/QMUITableViewCell'
307302
sss.dependency 'QMUIKit/QMUIComponents/QMUIButton'
308303
sss.dependency 'QMUIKit/QMUIComponents/QMUINavigationButton'

QMUIKit/Info.plist

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
<key>CFBundlePackageType</key>
1616
<string>FMWK</string>
1717
<key>CFBundleShortVersionString</key>
18-
<string>2.9.2</string>
18+
<string>2.9.3</string>
1919
<key>CFBundleVersion</key>
2020
<string>$(CURRENT_PROJECT_VERSION)</string>
2121
<key>NSPrincipalClass</key>

QMUIKit/QMUIComponents/AssetLibrary/QMUIAsset.h

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,11 +5,12 @@
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.
77
*****/
8+
89
//
910
// QMUIAsset.h
1011
// qmui
1112
//
12-
// Created by Kayo Lee on 15/6/30.
13+
// Created by QMUI Team on 15/6/30.
1314
//
1415

1516
#import <UIKit/UIKit.h>

QMUIKit/QMUIComponents/AssetLibrary/QMUIAsset.m

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,11 +5,12 @@
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.
77
*****/
8+
89
//
910
// QMUIAsset.m
1011
// qmui
1112
//
12-
// Created by Kayo Lee on 15/6/30.
13+
// Created by QMUI Team on 15/6/30.
1314
//
1415

1516
#import "QMUIAsset.h"

QMUIKit/QMUIComponents/AssetLibrary/QMUIAssetsGroup.h

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,11 +5,12 @@
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.
77
*****/
8+
89
//
910
// QMUIAssetsGroup.h
1011
// qmui
1112
//
12-
// Created by Kayo Lee on 15/6/30.
13+
// Created by QMUI Team on 15/6/30.
1314
//
1415

1516
#import <UIKit/UIKit.h>

QMUIKit/QMUIComponents/AssetLibrary/QMUIAssetsGroup.m

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,11 +5,12 @@
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.
77
*****/
8+
89
//
910
// QMUIAssetsGroup.m
1011
// qmui
1112
//
12-
// Created by Kayo Lee on 15/6/30.
13+
// Created by QMUI Team on 15/6/30.
1314
//
1415

1516
#import "QMUIAssetsGroup.h"

QMUIKit/QMUIComponents/AssetLibrary/QMUIAssetsManager.h

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,11 +5,12 @@
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.
77
*****/
8+
89
//
910
// QMUIAssetsManager.h
1011
// qmui
1112
//
12-
// Created by Kayo Lee on 15/6/9.
13+
// Created by QMUI Team on 15/6/9.
1314
//
1415

1516
#import <UIKit/UIKit.h>

QMUIKit/QMUIComponents/AssetLibrary/QMUIAssetsManager.m

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,11 +5,12 @@
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.
77
*****/
8+
89
//
910
// QMUIAssetsManager.m
1011
// qmui
1112
//
12-
// Created by Kayo Lee on 15/6/9.
13+
// Created by QMUI Team on 15/6/9.
1314
//
1415

1516
#import "QMUIAssetsManager.h"

0 commit comments

Comments
 (0)