UIColor+Hex.h 253 B

12345678910111213141516
  1. //
  2. // UIColor+Hex.h
  3. // luftemed
  4. //
  5. // Created by 林柏显 on 16/11/8.
  6. // Copyright © 2016年 林柏显. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. @interface UIColor (Hex)
  10. + (UIColor *)colorWithHexString:(NSString *)hexColorString;
  11. @end