react-native-navigation的迁移库

UIColor+RNNUtils.m 517B

1234567891011121314151617
  1. #import "UIColor+RNNUtils.h"
  2. @implementation UIColor (RNNUtils)
  3. - (NSString *)toHex {
  4. const CGFloat *components = CGColorGetComponents([self CGColor]);
  5. CGFloat r = components[0];
  6. CGFloat g = components[1];
  7. CGFloat b = components[2];
  8. return [NSString stringWithFormat:@"#%02lX%02lX%02lX",
  9. lroundf((float) (r * 255)),
  10. lroundf((float) (g * 255)),
  11. lroundf((float) (b * 255))];
  12. }
  13. @end