美文网首页
图片拉伸(有阴影)

图片拉伸(有阴影)

作者: 吃货_X | 来源:发表于2017-08-30 14:37 被阅读7次
    // 创建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

    相关文章

      网友评论

          本文标题:图片拉伸(有阴影)

          本文链接:https://www.haomeiwen.com/subject/bkptjxtx.html