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

IOS图片拉伸模式

时间:2014-11-24 11:38:10      阅读:188      评论:0      收藏:0      [点我收藏+]

标签:des   io   os   sp   bs   ef   tt   nbsp   res   

IOS5.0之前

 - (UIImage *)stretchableImageWithLeftCapWidth:(NSInteger)leftCapWidth topCapHeight:(NSInteger)topCapHeight;

 

IOS5.0

CGFloat top = 25; // 顶端盖高度
CGFloat bottom = 25 ; // 底端盖高度
CGFloat left = 10; // 左端盖宽度
CGFloat right = 10; // 右端盖宽度
UIEdgeInsets insets = UIEdgeInsetsMake(top, left, bottom, right);

 

- (UIImage *)resizableImageWithCapInsets:(UIEdgeInsets)capInsets

 

IOS6.0

- (UIImage *)resizableImageWithCapInsets:(UIEdgeInsets)capInsets resizingMode:(UIImageResizingMode)resizingMode

 

 

image = [image resizableImageWithCapInsets:insets resizingMode:UIImageResizingModeStretch];

IOS图片拉伸模式

标签:des   io   os   sp   bs   ef   tt   nbsp   res   

原文地址:http://www.cnblogs.com/zhibin/p/4118195.html

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