码迷,mamicode.com
首页 > 移动开发 > 详细

iOS 图片的按照比例拉伸

时间:2015-11-21 14:25:51      阅读:195      评论:0      收藏:0      [点我收藏+]

标签:

// 这是一个UIImage 的分类 (  UIImage+Extension.h   )

 

UIImage+Extension.h

 

#import <UIKit/UIKit.h>

@interface UIImage (Extension)

+ (UIImage *)resizableImage:(NSString *)name;

@end

 

UIImage+Extension.m

 

#import "UIImage+Extension.h"

@implementation UIImage (Extension)

 + (UIImage *)resizableImage:(NSString *)name

{

    UIImage *normal = [UIImage imageNamed:name];

    CGFloat w = normal.size.width * 0.5;   

    CGFloat h = normal.size.height * 0.5;

    return [normal resizableImageWithCapInsets:UIEdgeInsetsMake(h, w, h, w)];

}

 @end

 

//  在其他地方使用时调用

[self.button setBackgroundImage:[UIImage resizableImage:@"chat_recive_nor"] forState:UIControlStateNormal];

技术分享

 

iOS 图片的按照比例拉伸

标签:

原文地址:http://www.cnblogs.com/Dandan-King/p/4983639.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!