zl程序教程

您现在的位置是:首页 >  移动开发

当前栏目

iOS中图片拉伸,类似Android中的点9图片

Androidios 图片 类似 拉伸
2023-09-27 14:25:01 时间

UIImage* img=[UIImage imageNamed:@"name.png"];//原图 UIEdgeInsets edge=UIEdgeInsetsMake(0, 10, 0,10); //UIImageResizingModeStretch:拉伸模式,通过拉伸UIEdgeInsets指定的矩形区域来填充图片 //UIImageResizingModeTile:平铺模式,通过重复显示UIEdgeInsets指定的矩形区域来填充图 img= [img resizableImageWithCapInsets:edge resizingMode:UIImageResizingModeStretch]; imageView.image=img;