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

ios图片拉伸两种方法

时间:2016-05-19 00:00:39      阅读:335      评论:0      收藏:0      [点我收藏+]

标签:

 UIImage *image = [UIImage imageNamed:@"qq"];

第一种:

技术分享
 // 左端盖宽度
    NSInteger leftCapWidth = image.size.width * 0.5f;
    // 顶端盖高度
    NSInteger topCapHeight = image.size.height * 0.5f;
    // 重新赋值
    image = [image stretchableImageWithLeftCapWidth:leftCapWidth topCapHeight:topCapHeight];
技术分享

技术分享

第二种:

技术分享
    CGFloat top = 25; // 顶端盖高度
    CGFloat bottom = 25 ; // 底端盖高度
    CGFloat left = 10; // 左端盖宽度
    CGFloat right = 10; // 右端盖宽度
    UIEdgeInsets insets = UIEdgeInsetsMake(top, left, bottom, right);
    // 指定为拉伸模式,伸缩后重新赋值
    image = [image resizableImageWithCapInsets:insets resizingMode:UIImageResizingModeStretch];
技术分享

技术分享

补:UIButton加载图片:

 [button setBackgroundImage:image forState:UIControlStateNormal];

 原图:技术分享

ios图片拉伸两种方法

标签:

原文地址:http://www.cnblogs.com/shouce/p/5506768.html

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