美文网首页
按钮UIButton背景图片拉伸

按钮UIButton背景图片拉伸

作者: 陈水寒 | 来源:发表于2017-01-08 20:18 被阅读219次

// 拉伸按钮的背景图片

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

相关文章

网友评论

      本文标题:按钮UIButton背景图片拉伸

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