Skip to content

Commit 2fbebb2

Browse files
committed
1.8.1
1 parent 7b3c87e commit 2fbebb2

File tree

7 files changed

+18
-14
lines changed

7 files changed

+18
-14
lines changed

Framework/LEEAlert/LEEAlert.xcodeproj/project.pbxproj

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -296,7 +296,7 @@
296296
"@executable_path/Frameworks",
297297
"@loader_path/Frameworks",
298298
);
299-
MARKETING_VERSION = 1.8.0;
299+
MARKETING_VERSION = 1.8.1;
300300
PRODUCT_BUNDLE_IDENTIFIER = com.lee.alert;
301301
PRODUCT_NAME = "$(TARGET_NAME)";
302302
PROVISIONING_PROFILE_SPECIFIER = "";
@@ -325,7 +325,7 @@
325325
"@executable_path/Frameworks",
326326
"@loader_path/Frameworks",
327327
);
328-
MARKETING_VERSION = 1.8.0;
328+
MARKETING_VERSION = 1.8.1;
329329
PRODUCT_BUNDLE_IDENTIFIER = com.lee.alert;
330330
PRODUCT_NAME = "$(TARGET_NAME)";
331331
PROVISIONING_PROFILE_SPECIFIER = "";

LEEAlert.podspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
Pod::Spec.new do |s|
22

33
s.name = "LEEAlert"
4-
s.version = "1.8.0"
4+
s.version = "1.8.1"
55
s.summary = "优雅的Alert ActionSheet"
66

77
s.homepage = "https://github.com/lixiang1994/LEEAlert"

LEEAlert/LEEAlert.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
*
1313
* @author LEE
1414
* @copyright Copyright © 2016 - 2024年 lee. All rights reserved.
15-
* @version V1.8.0
15+
* @version V1.8.1
1616
*/
1717

1818
#import <Foundation/Foundation.h>

LEEAlert/LEEAlert.m

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
*
1313
* @author LEE
1414
* @copyright Copyright © 2016 - 2024年 lee. All rights reserved.
15-
* @version V1.8.0
15+
* @version V1.8.1
1616
*/
1717

1818
#import "LEEAlert.h"

LEEAlert/LEEAlertHelper.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
*
1414
* @author LEE
1515
* @copyright Copyright © 2016 - 2024年 lee. All rights reserved.
16-
* @version V1.8.0
16+
* @version V1.8.1
1717
*/
1818

1919
#ifndef LEEAlertHelper_h

LEEAlertSwiftDemo/LEEAlertSwiftDemo/ViewController.swift

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -17,14 +17,14 @@ class ViewController: UIViewController {
1717
override func touchesBegan(_ touches: Set<UITouch>, with event: UIEvent?) {
1818
super.touchesBegan(touches, with: event)
1919

20-
let alert = LEEAlert.alert()
21-
.config
22-
.leeTitle("标题")
23-
.leeContent("内容")
24-
.leeAction("确认", {
25-
print("点击取消")
26-
})
27-
.leeShow()
20+
let alert = LEEAlert.alert().config
21+
_ = alert
22+
.leeTitle("标题")
23+
.leeContent("内容")
24+
.leeAction("确认", {
25+
print("点击取消")
26+
})
27+
.leeShow()
2828
}
2929
}
3030

UPDATELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,10 @@
11

22
# LEEAlert - 更新日志
33

4+
V1.8.1
5+
==============
6+
解决提前释放问题
7+
48
V1.8.0
59
==============
610
`[LEEAlert alert]`增加2个Action时 是否为垂直布局的设置

0 commit comments

Comments
 (0)