ios - UISlider 设置带角的图像
<p><p>这里我需要圆滑的 slider ,但是当我尝试设置图像时,它会显示矩形图像,</p>
<p>我需要这样的图片 <img src="/image/Yoibd.jpg" alt="enter image description here"/> </p>
<p>这是我的编码</p>
<pre><code>UIImage *volumeBackgroundImage = [ resizableImageWithCapInsets:UIEdgeInsetsMake(9, 5, 7, 5)];
resizableImageWithCapInsets:UIEdgeInsetsMake(9, 5, 7, 5)]
forState:UIControlStateNormal];
[self.audioSlider setMaximumTrackImage:volumeBackgroundImage
forState:UIControlStateNormal];
forState:UIControlStateNormal];
</code></pre>
<p>任何人都可以帮助实现这一目标</p></p>
<br><hr><h1><strong>Best Answer-推荐答案</ strong></h1><br>
<p><p>您需要有圆角的图像。例如:
<img src="/image/Z4bg4.png" alt="enter image description here"/> </p>
<p>然后像这样简单地使用这个图像:</p>
<pre><code> resizableImageWithCapInsets:UIEdgeInsetsMake(12, 12, 12, 12)]
forState:UIControlStateNormal];
resizableImageWithCapInsets:UIEdgeInsetsMake(12, 12, 12, 12)
forState:UIControlStateNormal];
</code></pre>
<p>(其中 black_dot.png 是示例图像,而 blue_dot.png 将相同但为蓝色)</p>
<p>(如果图像是像素化的 - 那么你需要将这个图像放大两倍 - 视网膜图像 - <code>[email protected]</code>)</p>
<p>(或者如果您实际上需要比给定示例更小的图像,则只需将此图像重命名为 <code>[email protected]</code>,而不是:<code>UIEdgeInsetsMake(12, 12, 12, 12)</code> 使用:<code>UIEdgeInsetsMake(6, 6, 6, 6)</code>)</p>
<p>在此处查看更多信息:<a href="https://stackoverflow.com/a/8656216/894671" rel="noreferrer noopener nofollow">https://stackoverflow.com/a/8656216/894671</a> </p></p>
<p style="font-size: 20px;">关于ios - UISlider 设置带角的图像,我们在Stack Overflow上找到一个类似的问题:
<a href="https://stackoverflow.com/questions/19196407/" rel="noreferrer noopener nofollow" style="color: red;">
https://stackoverflow.com/questions/19196407/
</a>
</p>
页:
[1]