Skip to content

Commit

Permalink
fix bug
Browse files Browse the repository at this point in the history
  • Loading branch information
Leo committed Nov 23, 2016
1 parent 8b03463 commit b56fb29
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 4 deletions.
2 changes: 1 addition & 1 deletion LCActionSheet.podspec
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
Pod::Spec.new do |s|

s.name = "LCActionSheet"
s.version = "2.6.1"
s.version = "2.6.2"
s.summary = "A simple, ornamental, but powerful action sheet! Support: http://LeoDev.me"
s.homepage = "https://github.com/iTofu/LCActionSheet"
s.license = "MIT"
Expand Down
2 changes: 1 addition & 1 deletion LCActionSheet/LCActionSheet.h
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
// GitHub: http://github.com/iTofu
// Mail: mailto:devtip@163.com
//
// V 2.6.1
// V 2.6.2

#import <UIKit/UIKit.h>

Expand Down
2 changes: 1 addition & 1 deletion LCActionSheet/LCActionSheet.m
Original file line number Diff line number Diff line change
Expand Up @@ -474,7 +474,7 @@ - (void)setTitleColor:(UIColor *)aTitleColor {
- (void)setButtonColor:(UIColor *)aButtonColor {
buttonColor = aButtonColor;

self.cancelButton.titleLabel.textColor = aButtonColor;
[self.cancelButton setTitleColor:aButtonColor forState:UIControlStateNormal];
[self.tableView reloadData];
}

Expand Down
2 changes: 1 addition & 1 deletion LCActionSheetDemo/Info.plist
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
<key>CFBundlePackageType</key>
<string>APPL</string>
<key>CFBundleShortVersionString</key>
<string>2.6.1</string>
<string>2.6.2</string>
<key>CFBundleSignature</key>
<string>????</string>
<key>CFBundleVersion</key>
Expand Down
5 changes: 5 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -180,6 +180,11 @@ In me the tiger sniffs the rose.
## 版本 ChangeLog


### V 2.6.2 (2016.11.23)

* 修复更换按钮颜色对取消按钮失效的 Bug。


### V 2.6.1 (2016.11.22)

* 优化标题为空时的效果。
Expand Down

0 comments on commit b56fb29

Please sign in to comment.