UIColor+AS.h 323 B

123456789101112131415161718192021
  1. //
  2. // UIColor+AS.h
  3. // Asteria
  4. //
  5. // Created by iOS on 2023/4/25.
  6. //
  7. #import <UIKit/UIKit.h>
  8. NS_ASSUME_NONNULL_BEGIN
  9. @interface UIColor (AS)
  10. //16进制颜色转换
  11. + (UIColor *)colorWithHexString:(NSString *)color;
  12. + (UIColor *)colorWithHexString:(NSString *)color Alpha:(CGFloat)alpha;
  13. @end
  14. NS_ASSUME_NONNULL_END