resizableImageWithCapInsets
他的作用是用之前的的image创建出一个可拉伸的image,这个image的作用就是当要填充的imageView大于当前image时就会进行拉伸,但是这个可拉伸image是可以设置屏蔽区域的 也就是告诉你哪部分不要用来拉伸
swift
let capInsets = UIEdgeInsets(top: 10, left: 20, bottom: 10, right: 20)//创建屏蔽区域,也就是上面下面10和左右20是不可拉伸的。
let resizableImage = image?.resizableImage(withCapInsets: capInsets, resizingMode: .stretch)
具体看这个
简书的文章