Skip to content

V 2.7.6

Compare
Choose a tag to compare
@iTofu iTofu released this 15 Apr 16:47
· 162 commits to master since this release
  • 修复 UIImage 类别中的方法名可能与其他库冲突的潜在问题。#33 by cwwise

    @interface UIImage (LCActionSheet)
    
    + (nullable instancetype)imageWithColor:(UIColor *)color;
    
    // ->
    
    + (nullable instancetype)lc_imageWithColor:(UIColor *)color;
    
    @end
  • 修正 LCActionSheet 中部分方法的注释。