图片拉伸(有阴影)

2017-08-30  本文已影响7人  吃货_X
// 创建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];

转载http://www.jianshu.com/p/879feedaf76f

上一篇 下一篇

猜你喜欢

热点阅读