Skip to content

Commit

Permalink
【Releases 1.6.3 修复标题多文字时图片显示以及内部代码优化处理】
Browse files Browse the repository at this point in the history
  • Loading branch information
kingsic committed Jul 18, 2019
1 parent dc2c22e commit ca68841
Show file tree
Hide file tree
Showing 9 changed files with 169 additions and 292 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ SGPageContentCollectionView(内部由 UICollectionView 实现)


## Installation
* 1、CocoaPods 导入 pod 'SGPagingView', '~> 1.6.2'
* 1、CocoaPods 导入 pod 'SGPagingView', '~> 1.6.3'
* 2、下载、拖拽 “SGPagingView” 文件夹到工程中


Expand Down Expand Up @@ -174,7 +174,7 @@ b. 实现 SGPageContentScrollView 的 pageContentScrollView:index:代理方法

* 2019-03-27 :v1.6.1 修复 1.6.0 版本 addBadgeForIndex 方法内 badge 布局问题

* 2019-07-17 :v1.6.2 滚动样式下 titleTextZoom 属性支持指示器下划线以及遮盖样式下的滚动
* 2019-07-17 :v1.6.3 修复设置图片样式下图片布局问题以及对内部代码的优化处理


## License
Expand Down
2 changes: 1 addition & 1 deletion SGPagingView.podspec
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@

Pod::Spec.new do |s|
s.name = 'SGPagingView'
s.version = '1.6.2'
s.version = '1.6.3'
s.summary = 'A powerful and easy to use segment control'
s.homepage = 'https://github.com/kingsic/SGPagingView'
s.license = 'MIT'
Expand Down
Empty file modified SGPagingView/Category/UIButton+SGPagingView.h
100644 → 100755
Empty file.
Empty file modified SGPagingView/Category/UIButton+SGPagingView.m
100644 → 100755
Empty file.
Empty file modified SGPagingView/Controller/SGPagingViewPopGestureVC.h
100644 → 100755
Empty file.
Empty file modified SGPagingView/Controller/SGPagingViewPopGestureVC.m
100644 → 100755
Empty file.
449 changes: 163 additions & 286 deletions SGPagingView/SGPageTitle/SGPageTitleView.m

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions SGPagingView/SGPageTitle/SGPageTitleViewConfigure.h
Original file line number Diff line number Diff line change
Expand Up @@ -53,10 +53,10 @@ typedef enum : NSUInteger {
/** 是否让标题文字具有渐变效果,默认为 NO */
@property (nonatomic, assign) BOOL titleGradientEffect;
/** 是否让标题文字具有缩放效果,默认为 NO。
* 为 YES 时,请与 titleTextZoomRatio 结合使用,否则不起任何作用 */
* 为 YES 时,请与 titleTextZoomRatio 结合使用,否则不起作用 */
@property (nonatomic, assign) BOOL titleTextZoom;
/** 标题文字缩放比,默认为 0.0f,取值范围 0.0 ~ 1.0f。
* 请与 titleTextZoom = YES 时结合使用,否则不起任何作用 */
* 请与 titleTextZoom = YES 时结合使用,否则不起作用 */
@property (nonatomic, assign) CGFloat titleTextZoomRatio;
/** 标题额外增加的宽度,默认为 20.0f */
@property (nonatomic, assign) CGFloat titleAdditionalWidth;
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.2
// Version 1.6.3
// GitHub:https://github.com/kingsic/SGPagingView
//
// Created by kingsic on 2016/10/6.
Expand Down

0 comments on commit ca68841

Please sign in to comment.