UIImage+Resize.h 333 B

1234567891011121314
  1. //
  2. // UIImage+Resize.h
  3. // 01-QQ聊天布局
  4. //
  5. // Created by apple on 13-12-3.
  6. // Copyright (c) 2013年 itcast. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. @interface UIImage (Resize)
  10. + (UIImage *)resizedImage:(NSString *)name left:(CGFloat)leftScale top:(CGFloat)topScale;
  11. + (UIImage *)resizedImage:(NSString *)name;
  12. @end