iOS中image拉伸操作的三种方式

2016-03-26  本文已影响407人  forvert

iOS中image拉伸操作的三种方式

方式一


UIImage *image = [UIImage imageNamed:@"chat_send_nor"];
// 拉伸处理(说明需要保护的区域)
image = [image resizableImageWithCapInsets:UIEdgeInsetsMake(30, 30, 30, 30) resizingMode:UIImageResizingModeStretch];

方式二

 UIImage *image = [UIImage imageNamed:@"chat_send_nor"];
 // 这种方式的图片拉伸只需要传入左侧和顶部,苹果内部就会自动计算出底部和右侧的间距,计算方式见下面的注释;
 image = [image stretchableImageWithLeftCapWidth:image.size.width * 0.5 topCapHeight:image.size.height * 0.5];

    // left
    // top
    // width
    // height
    // right = width - left - 1;
    // 1 = width - left - right;
    // bottom = height - top - 1;
    // 1 = height - top - bottom;

方式三

上一篇 下一篇

猜你喜欢

热点阅读