我正在尝试使用图像进行自定义uislider(没有可见的旋钮,当用户无法编辑时将其隐藏并在可以时显示它)问题是侧面渲染完美,但右侧部分很可爱并且没有'似乎没有使用边缘......知道我如何编辑它吗?
实际代码:
let capLeft:CGFloat = 9
let capRight:CGFloat = 9
imageMin = imageMinimum?.resizableImage(withCapInsets: UIEdgeInsets(top: 0, left: capLeft, bottom: 0, right: capRight), resizingMode: .stretch)
imageMax = imageMaximum
slider.setMaximumTrackImage(imageMax, for: UIControlState())
slider.setMinimumTrackImage(imageMin, for: UIControlState())
你有什么主意吗 ?