// 创建UIImage对象
UIImage *image = [UIImage imageNamed:@"chat_send_nor"];
// 拿到图片的尺寸
CGFloat imageWidth = image.size.width; // 图片的宽度
CGFloat imageHeight = image.size.height; // 图片的高度
// 设置图片受保护的区域
UIImage *protectedImage = [image resizableImageWithCapInsets:UIEdgeInsetsMake(imageHeight * 0.5, imageWidth * 0.5, imageHeight * 0.5 - 1, imageWidth * 0.5 - 1)];
// 将图片设置到按钮上
[self.chatButton setBackgroundImage:protectedImage forState:UIControlStateNormal];
网友评论