Commit bf8b1852 authored by yuzheng.tz's avatar yuzheng.tz

修复onlyReturnAsset为YES时代理方法不调的bug;发布2.0.0.8版本

parent e3e7be8f
......@@ -93,7 +93,7 @@ A:1.8.4版本已支持
A:考虑下,优先级低
最近更新
2.0.0.7 修复一些bug
2.0.0.8 修复一些bug
2.0.0.6 优化自定义languageBundle的支持,加入使用示例
2.0.0.5 优化性能,提高选择器打开速度,新增越南语支持
2.0.0.2 新增繁体语言,可设置首选语言,国际化支持更强大;优化一些细节
......
Pod::Spec.new do |s|
s.name = "TZImagePickerController"
s.version = "2.0.0.7"
s.version = "2.0.0.8"
s.summary = "A clone of UIImagePickerController, support picking multiple photos、original photo and video"
s.homepage = "https://github.com/banchichen/TZImagePickerController"
s.license = "MIT"
s.author = { "banchichen" => "tanzhenios@foxmail.com" }
s.platform = :ios
s.ios.deployment_target = "6.0"
s.source = { :git => "https://github.com/banchichen/TZImagePickerController.git", :tag => "2.0.0.7" }
s.source = { :git => "https://github.com/banchichen/TZImagePickerController.git", :tag => "2.0.0.8" }
s.requires_arc = true
s.resources = "TZImagePickerController/TZImagePickerController/*.{png,bundle}"
s.source_files = "TZImagePickerController/TZImagePickerController/*.{h,m}"
......
......@@ -15,7 +15,7 @@
<key>CFBundlePackageType</key>
<string>APPL</string>
<key>CFBundleShortVersionString</key>
<string>2.0.0.7</string>
<string>2.0.0.8</string>
<key>CFBundleSignature</key>
<string>????</string>
<key>CFBundleVersion</key>
......
......@@ -4,7 +4,7 @@
//
// Created by 谭真 on 15/12/24.
// Copyright © 2015年 谭真. All rights reserved.
// version 2.0.0.7 - 2018.03.06
// version 2.0.0.8 - 2018.03.08
// 更多信息,请前往项目的github地址:https://github.com/banchichen/TZImagePickerController
/*
......
......@@ -4,7 +4,7 @@
//
// Created by 谭真 on 15/12/24.
// Copyright © 2015年 谭真. All rights reserved.
// version 2.0.0.7 - 2018.03.06
// version 2.0.0.8 - 2018.03.08
// 更多信息,请前往项目的github地址:https://github.com/banchichen/TZImagePickerController
#import "TZImagePickerController.h"
......
......@@ -399,7 +399,7 @@ static CGFloat itemMargin = 5;
} networkAccessAllowed:YES];
}
}
if (tzImagePickerVc.selectedModels.count <= 0) {
if (tzImagePickerVc.selectedModels.count <= 0 || tzImagePickerVc.onlyReturnAsset) {
[self didGetAllPhotos:photos assets:assets infoArr:infoArr];
}
}
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment