Skip to content

Commit

Permalink
☀️ V 2.1.1 pre.
Browse files Browse the repository at this point in the history
  • Loading branch information
Leo committed Jul 19, 2016
1 parent c25a67c commit 666dca7
Show file tree
Hide file tree
Showing 4 changed files with 17 additions and 9 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.1.0"
s.version = "2.1.1"
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
17 changes: 10 additions & 7 deletions LCActionSheet/LCActionSheet.h
Original file line number Diff line number Diff line change
Expand Up @@ -8,13 +8,16 @@
// GitHub: http://github.com/iTofu
// Mail: mailto:devtip@163.com
//
// V 2.1.0
// V 2.1.1

#import <UIKit/UIKit.h>


@class LCActionSheet;


#pragma mark - LCActionSheet Block

typedef void(^LCActionSheetClickedBlock)(LCActionSheet *actionSheet, NSInteger buttonIndex);

typedef void(^LCActionSheetWillPresentBlock)(LCActionSheet *actionSheet);
Expand Down Expand Up @@ -74,28 +77,28 @@ typedef void(^LCActionSheetDidDismissBlock)(LCActionSheet *actionSheet, NSIntege
@property (nonatomic, strong) NSSet *destructiveButtonIndexSet;

/**
* Destructive button's color.
* Destructive button's color. Default is RGB(255, 10, 10).
*/
@property (nonatomic, strong) UIColor *destructiveButtonColor;

/**
* Title's color.
* Title's color. Default is `[UIColor blackColor]`.
*/
@property (nonatomic, strong) UIColor *titleColor;
/**
* Buttons' color, without destructive buttons.
* Buttons' color, without destructive buttons. Default is `[UIColor blackColor]`.
*/
@property (nonatomic, strong) UIColor *buttonColor;
/**
* Title's font.
* Title's font. Default is `[UIFont systemFontOfSize:14.0f]`.
*/
@property (nonatomic, strong) UIFont *titleFont;
/**
* All buttons' font.
* All buttons' font. Default is `[UIFont systemFontOfSize:18.0f]`.
*/
@property (nonatomic, strong) UIFont *buttonFont;
/**
* All buttons' height.
* All buttons' height. Default is 49.0f;
*/
@property (nonatomic, assign) CGFloat buttonHeight;

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.1.0</string>
<string>2.1.1</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 @@ -159,6 +159,11 @@ In me the tiger sniffs the rose.

## 版本 Release

### V 2.1.1 (2016.07.19)

* 完善部分注释,注明需要注明的属性的默认值。


### V 2.1.0 (2016.07.19)

* 新增自定义项,[Issue 18](https://github.com/iTofu/LCActionSheet/issues/18) by [IAMJ](https://github.com/IAMJ)
Expand Down

0 comments on commit 666dca7

Please sign in to comment.