Skip to content

Commit

Permalink
[Releases 1.6.8] 更新CocoaPods源码
Browse files Browse the repository at this point in the history
  • Loading branch information
kingsic committed Jul 17, 2020
1 parent 6e11a05 commit b676c53
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 7 deletions.
6 changes: 4 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -92,8 +92,8 @@ SGPageContentCollectionView(内部由 UICollectionView 实现)
* 若在使用 CocoaPods 安装 SGPagingView 时,出现 [!] Unable to find a specification for SGPagingView 提示时,打开终端先输入 pod repo remove master;执行完毕后再输入 pod setup 即可 (可能会等待一段时间)
***

### 二、标题文字缩放属性与指示器关系
* 标题文字缩放属性与指示器下划线、遮盖样式不兼容,但固定及动态样式兼容
### 二、父子视图 autolayout 及 frame
* 父视图使用 autolayout 约束,子视图也需使用 autolayout 去约束;父视图使用 frame 布局,子视图也需使用 frame 去布局
***

### 三、关于父子控制器的说明(SGPageContentScrollView 与 SGPageContentCollectionView)
Expand Down Expand Up @@ -184,6 +184,8 @@ b. 实现 SGPageContentScrollView 的 pageContentScrollView:index:代理方法

* 2019-07-27 :v1.6.7 支持标题文字上下行样式以及 titleGradientEffect 属性与 resetTitleColor:titleSelectedColor: 方法的兼容

* 2019-07-27 :v1.6.8 SGPageTitleViewConfigure 添加 bounce 属性


## License
SGPagingView is released under the MIT license. See [LICENSE](https://github.com/kingsic/SGPagingView/blob/master/LICENSE) for details.
4 changes: 2 additions & 2 deletions SGPagingView.podspec
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@

Pod::Spec.new do |s|
s.name = 'SGPagingView'
s.version = '1.6.7'
s.version = '1.6.8'
s.summary = 'A powerful and easy to use segment control'
s.homepage = 'https://github.com/kingsic/SGPagingView'
s.license = 'MIT'
s.authors = {'kingsic' => '[email protected]'}
s.platform = :ios, '7.0'
s.platform = :ios, '9.0'
s.source = {:git => 'https://github.com/kingsic/SGPagingView.git', :tag => s.version}
s.source_files = 'SGPagingView/**/*.{h,m}'
s.requires_arc = true
Expand Down
2 changes: 1 addition & 1 deletion SGPagingView/SGPagingView.h
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
//
// SGPagingView.h
// Version 1.6.7
// Version 1.6.8
// GitHub:https://github.com/kingsic/SGPagingView
//
// Created by kingsic on 2016/10/6.
Expand Down
6 changes: 4 additions & 2 deletions SGPagingViewExample.xcodeproj/project.pbxproj
Original file line number Diff line number Diff line change
Expand Up @@ -500,7 +500,7 @@
182513381F21CAC30039F4A2 /* Project object */ = {
isa = PBXProject;
attributes = {
LastUpgradeCheck = 1010;
LastUpgradeCheck = 1150;
ORGANIZATIONNAME = Sorgle;
TargetAttributes = {
1825133F1F21CAC30039F4A2 = {
Expand All @@ -521,7 +521,7 @@
};
buildConfigurationList = 1825133B1F21CAC30039F4A2 /* Build configuration list for PBXProject "SGPagingViewExample" */;
compatibilityVersion = "Xcode 3.2";
developmentRegion = English;
developmentRegion = en;
hasScannedForEncodings = 0;
knownRegions = (
en,
Expand Down Expand Up @@ -678,6 +678,7 @@
isa = XCBuildConfiguration;
buildSettings = {
ALWAYS_SEARCH_USER_PATHS = NO;
CLANG_ANALYZER_LOCALIZABILITY_NONLOCALIZED = YES;
CLANG_ANALYZER_NONNULL = YES;
CLANG_ANALYZER_NUMBER_OBJECT_CONVERSION = YES_AGGRESSIVE;
CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x";
Expand Down Expand Up @@ -734,6 +735,7 @@
isa = XCBuildConfiguration;
buildSettings = {
ALWAYS_SEARCH_USER_PATHS = NO;
CLANG_ANALYZER_LOCALIZABILITY_NONLOCALIZED = YES;
CLANG_ANALYZER_NONNULL = YES;
CLANG_ANALYZER_NUMBER_OBJECT_CONVERSION = YES_AGGRESSIVE;
CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x";
Expand Down

0 comments on commit b676c53

Please sign in to comment.