不变形拉伸图片分类

2016-03-24  本文已影响25人  逍遥叹不逍遥

UIImage+Resizable.h


#import@interface UIImage (Resizable)

+ (UIImage *)resizableWithImageName:(NSString *)imageName;

@end



UIImage+Resizable.m


#import "UIImage+Resizable.h"

@implementation UIImage (Resizable)

+ (UIImage *)resizableWithImageName:(NSString *)imageName {

UIImage *image = [UIImage imageNamed:imageName];

CGFloat W = image.size.width * 0.5;

CGFloat H = image.size.height * 0.5;

return [image stretchableImageWithLeftCapWidth:W topCapHeight:H];

}

@end


上一篇 下一篇

猜你喜欢

热点阅读