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效果拉伸图片的主要内容,如果未能解决你的问题,请参考以下文章

[IOS] 详解图片局部拉伸 + 实现图片局部收缩

IOS图片拉伸技巧

聊天气泡图片的动态拉伸适配与镜像

聊天气泡图片的动态拉伸适配与镜像

Android Studio 制作 9-Patch 图

移动端图片文字垂直居中实现方法