IOS图像拉伸

UIButton实现背景拉伸,即图片两端不拉伸中间拉伸的办法有如下两种:

第一种方法很简单而且使用性更广。做法就是直接拉伸想要setBackgroundImage的image,代码如下:

1
2
UIImage *image = [UIImage imageNamed:@"image.png"]; 
image = [image stretchableImageWithLeftCapWidth:floorf(image.size.width/2) topCapHeight:floorf(image.size.height/2)];

设置了左端帽之后,rightCapWidth = image.size.width - (image.leftCapWidth + 1); 也就是说图片中间的一像素用来拉伸。垂直方向同上。设置之后无论把image放到什么控件中都可以自动拉伸了。

1
2
3
4
5
6
7
8
9
10
11
12
13
14
UIImage *buttonImage = [UIImage imageNamed:@"top_navigation_roundedrect.png"];
    buttonImage = [buttonImage stretchableImageWithLeftCapWidth:floorf(buttonImage.size.width/2) topCapHeight:floorf(buttonImage.size.height/2)];
             
    UIImage *buttonImageselected = [UIImage imageNamed:@"top_navigation_roundedrectselected.png"];
    buttonImage = [buttonImage stretchableImageWithLeftCapWidth:floorf(buttonImage.size.width/2) topCapHeight:floorf(buttonImage.size.height/2)];
             
    UIButton *button = [UIButton buttonWithType:UIButtonTypeCustom];
    button.frame = CGRectMake(0, 0, 240, 44);
    [button setBackgroundImage:buttonImage forState:UIControlStateNormal];
    [button setBackgroundImage:buttonImageselected forState:UIControlStateHighlighted];
    button.center = CGPointMake(160, 240);
    [button setTitle:@"myBUtton" forState:UIControlStateNormal];
    [button setTitle:@"buttonClick" forState:UIControlStateHighlighted];
    [self.view addSubview:button];

第二种方法是在UIButton中加入一个UIImageView,拉伸imageView,然后将button的背景设为clearColor等等。把imageView放入button中,并且sendToBack,得到效果。代码如下:

//刚才imageView拉伸的代码

   

1
2
3
4
5
UIImageView *strechTest = [[UIImageyiView alloc] initWithImage:[UIImage imageNamed:@"test.png"]];
   [strechTest setContentStretch:CGRectMake(0.5f, 0.5f, 0.f, 0.f)];
   CGRect frame = strechTest.frame;
   frame.size.width += 100;
   strechTest.frame = frame;


//把imageView放入button中,并设置为back

1
2
3
4
5
6
7
8
9
    UIButton *button = [UIButton buttonWithType:UIButtonTypeCustom];
    button1.frame = frame;
    button1.center = CGPointMake(160, 140);
    [button1 addSubview:strechTest];
    [button1 sendSubviewToBack:strechTest];
    [button1 setBackgroundColor:[UIColor clearColor]];
    [button1 setTitle:@"myBUtton" forState:UIControlStateNormal];
    [button1 setTitle:@"buttonClick" forState:UIControlStateHighlighted];
    [self.view addSubview:button];

效果:

 

转载于:https://my.oschina.net/zhangzhihao/blog/108094

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值