12345678910111213141516171819 |
- #import <UIKit/UIKit.h>
- @interface UIImage (ERCategory)
- + (UIImage *)imageWithColor:(UIColor *)color size:(CGSize)size;
- + (UIImage *)setCornerWithImage:(UIImage *)image cornerRadius:(CGFloat)cornerRadius;
- + (UIImage *)imageWithColor:(UIColor *)color size:(CGSize)size cornerRadius:(CGFloat)cornerRadius;
- @end
|