STModalUtil.h 625 B

1234567891011121314151617181920
  1. //
  2. // Header.h
  3. // STModalDemo
  4. //
  5. // Created by zhenlintie on 15/6/7.
  6. // Copyright (c) 2015年 sTeven. All rights reserved.
  7. //
  8. #define STModalRGBA(r,g,b,a) [UIColor colorWithRed:r/255.0 green:g/255.0 blue:b/255.0 alpha:a]
  9. static inline UIImage *st_imageWithColor(UIColor *color){
  10. UIGraphicsBeginImageContext(CGSizeMake(1, 1));
  11. CGContextRef context = UIGraphicsGetCurrentContext();
  12. CGContextSetFillColorWithColor(context, color.CGColor);
  13. CGContextFillRect(context, CGRectMake(0, 0, 1, 1));
  14. UIImage *img = UIGraphicsGetImageFromCurrentImageContext();
  15. UIGraphicsEndImageContext();
  16. return img;
  17. }