// 拉伸按钮的背景图片
// 获取按钮的背景图片
UIImage *image = _loginBtn.currentBackgroundImage;
// 拉伸图片
image = [image stretchableImageWithLeftCapWidth:image.size.width * 0.5 topCapHeight:image.size.height * 0.5];
// 重新将图片添加到按钮上
[_loginBtn setBackgroundImage:image forState:UIControlStateNormal];
网友评论