Skip to content

Commit

Permalink
发布1.6.0, 重构内部布局, 增加设置Action是否跟随Item滑动的属性
Browse files Browse the repository at this point in the history
  • Loading branch information
lixiang1994 committed Jun 24, 2022
1 parent 5a561bf commit 9d326b7
Show file tree
Hide file tree
Showing 9 changed files with 509 additions and 166 deletions.
4 changes: 2 additions & 2 deletions Framework/LEEAlert/LEEAlert.xcodeproj/project.pbxproj
Original file line number Diff line number Diff line change
Expand Up @@ -297,7 +297,7 @@
"@executable_path/Frameworks",
"@loader_path/Frameworks",
);
MARKETING_VERSION = 1.5.2;
MARKETING_VERSION = 1.6.0;
PRODUCT_BUNDLE_IDENTIFIER = com.lee.alert;
PRODUCT_NAME = "$(TARGET_NAME)";
SKIP_INSTALL = YES;
Expand Down Expand Up @@ -325,7 +325,7 @@
"@executable_path/Frameworks",
"@loader_path/Frameworks",
);
MARKETING_VERSION = 1.5.2;
MARKETING_VERSION = 1.6.0;
PRODUCT_BUNDLE_IDENTIFIER = com.lee.alert;
PRODUCT_NAME = "$(TARGET_NAME)";
SKIP_INSTALL = YES;
Expand Down
2 changes: 1 addition & 1 deletion LEEAlert.podspec
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
Pod::Spec.new do |s|

s.name = "LEEAlert"
s.version = "1.5.2"
s.version = "1.6.0"
s.summary = "优雅的Alert ActionSheet"

s.homepage = "https://github.com/lixiang1994/LEEAlert"
Expand Down
5 changes: 4 additions & 1 deletion LEEAlert/LEEAlert.h
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
*
* @author LEE
* @copyright Copyright © 2016 - 2020年 lee. All rights reserved.
* @version V1.5.2
* @version V1.6.0
*/

#import <Foundation/Foundation.h>
Expand Down Expand Up @@ -188,6 +188,9 @@ NS_ASSUME_NONNULL_BEGIN
/** 设置 是否可滑动 -> 格式: .LeeIsScrollEnabled(YES) */
@property (nonatomic, copy, readonly) LEEConfigToBool LeeIsScrollEnabled;

/** 设置 Action是否跟随Item滑动 -> 格式: .LeeIsActionFollowScrollEnabled(YES) */
@property (nonatomic, copy, readonly) LEEConfigToBool LeeIsActionFollowScrollEnabled;

/** 设置 阴影偏移 -> 格式: .LeeShadowOffset(CGSizeMake(0.0f, 2.0f)) */
@property (nonatomic, copy, readonly) LEEConfigToSize LeeShadowOffset;

Expand Down
Loading

0 comments on commit 9d326b7

Please sign in to comment.