Skip to content

Releases: iTofu/LCActionSheet

V 3.5.4

12 Mar 06:05
Compare
Choose a tag to compare
  • 支持 pod try LCActionSheet

V 3.5.3

05 Mar 07:17
Compare
Choose a tag to compare
  • 增加 - (void)setButtonTitle:(NSString *)title atIndex:(NSInteger)index; 方法。

V 3.5.2

05 Mar 06:50
Compare
Choose a tag to compare
  • 增加 disableAutoDismissAfterClicking,控制是否在点击有效项后自动消失,默认 NO,自动消失。

V 3.5.1

24 Dec 18:45
Compare
Choose a tag to compare
  • 适配 iPhone XR、iPhone XS 和 iPhone XS Max。

V 3.5.0

07 May 07:54
Compare
Choose a tag to compare
  • 增加了一些自定义设置。Thanks PR62 by shiweifu

V 3.4.0

12 Dec 09:32
Compare
Choose a tag to compare

V 3.3.3

07 Dec 06:37
2f2c18f
Compare
Choose a tag to compare
  • 修复在 iOS 9 上的键盘窗口问题 —— PR52 by lhnoah

V 3.3.2

27 Oct 02:11
Compare
Choose a tag to compare
  • 修复一个小问题 for iPhone Ⅹ —— PR49 by lhnoah

V 3.3.1

10 Oct 07:45
Compare
Choose a tag to compare
  • 适配 iPhone Ⅹ。

V 3.3.0

25 Sep 08:24
Compare
Choose a tag to compare
  • 新增属性 numberOfTitleLines 取代原来的 titleLinesNumber

    @interface LCActionSheetConfig : NSObject
    
    @property (nonatomic, assign) NSInteger titleLinesNumber;
    // ->
    @property (nonatomic, assign) NSInteger numberOfTitleLines;
    
    @end
    
    
    @interface LCActionSheet : NSObject
    
    @property (nonatomic, assign) NSInteger titleLinesNumber;
    // ->
    @property (nonatomic, assign) NSInteger numberOfTitleLines;
    
    @end