欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  移动技术

IOS开发之图片拉伸不变形实现

程序员文章站 2022-04-12 19:55:04
ios开发之图片拉伸不变形实现 (uiimage )imagecreatwithcap:(nsstring )imagename { uiimage *image = [uiimage im...

ios开发之图片拉伸不变形实现

(uiimage )imagecreatwithcap:(nsstring )imagename { 
uiimage *image = [uiimage imagenamed:imagename]; 
// 设置左边端盖宽度 
nsinteger leftcapwidth = image.size.width * 0.5; 
// 设置上边端盖高度 
nsinteger topcapheight = image.size.height * 0.5;

return [image stretchableimagewithleftcapwidth:leftcapwidth topcapheight:topcapheight]; 
}