按钮UIButton背景图片拉伸

// 拉伸按钮的背景图片

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

你可能感兴趣的:(按钮UIButton背景图片拉伸)