iOS 实现安卓.9效果拉伸图片
Posted Love margin
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了iOS 实现安卓.9效果拉伸图片相关的知识,希望对你有一定的参考价值。
实现效果
代码如下:
UIImageView *iv = [[UIImageView alloc] initWithImage:[UIImage imageNamed:@"Publish_contentView"]];
iv.frame = CGRectMake(10, 100, iv.image.size.width, iv.image.size.height);
UIImage *iamge = [UIImage imageNamed:@"Publish_contentView"]; iamge = [iamge stretchableImageWithLeftCapWidth:0 topCapHeight:10];
UIImageView *iv2 = [[UIImageView alloc] initWithFrame:CGRectMake(200, 100, iamge.size.width, iamge.size.height+100)];
iv2.image = iamge;
[_container addSubview:iv];
[_container addSubview:iv2];
以上是关于iOS 实现安卓.9效果拉伸图片的主要内容,如果未能解决你的问题,请参考以下文章