菜鸟教程小白 发表于 2022-12-13 08:56:43

ios - 如何以编程方式设置 WKInterfaceSlider 的最大值和最小值?


                                            <p><p>我知道可以通过属性检查器设置值。但是, slider 的范围需要根据来自服务器的数据而改变。在这种情况下,硬编码值不是一种选择。有没有办法以编程方式设置它?</p></p>
                                    <br><hr><h1><strong>Best Answer-推荐答案</ strong></h1><br>
                                            <p><p><a href="https://developer.apple.com/library/ios/documentation/WatchKit/Reference/WKInterfaceSlider_class/index.html" rel="noreferrer noopener nofollow">WKInterfaceSlider documentation from Apple</a>表示无法以编程方式更改 <code>WKInterfaceSlider</code> 的最小值和最大值——这些只能在 Interface Builder 中设置。</p>

<p>但是,从功能上讲,这并不重要,因为 <code>WKInterfaceSlider</code> 是一个可视的颜色条,当用户滚动数字表冠时会填充颜色。以编程方式,您根据已填充的 slider 的比例读回 slider 的值,该值报告为介于最小值和最大值之间的数字。但是, slider 本身不会向最终用户显示值。</p>

<p>因此,您可以实现与更改 slider 的最小值和最大值完全相同的操作,只需将这些值存储在属性中并计算应用于从 slider 返回的值的偏移和乘数属性。</p>

<ol>
<li><p>在 Interface Builder 中创建一个 slider ,最小值为 0,最大值为 100。(这些值实际上可以是任何值,但这是最简单的解决方案,因为这些值可以直接读取百分比。)</p></li>
<li><p>在您的 WatchKit 应用扩展中创建 minimumValue 和 maximumValue 属性。</p></li>
<li><p>计算一个乘数值,计算方式为 <code>(maximumValue - minimumValue)/100</code>。</p></li>
<li><p>当您从 <code>WKInterfaceSlider</code> 读取一个值时,只需将其计算为 <code>(WKInterfaceSliderValue * multiplier) + minimumValue</code>。</p></li>
</ol>

<p>您可以随时更改 minimumValue 和 maximumValue 属性,您将从 4 获得新的所需范围内的值。</p>

<p>请注意,还有一种方法可以更改在最小值和最大值之间以编程方式设置的步数,使用方法 <a href="https://developer.apple.com/library/ios/documentation/WatchKit/Reference/WKInterfaceSlider_class/index.html#//apple_ref/occ/instm/WKInterfaceSlider/setNumberOfSteps:" rel="noreferrer noopener nofollow"><code>setNumberOfSteps(_:)</code></a> .这不会影响上面的计算,但当然会影响 slider 在该范围内返回给您的可能值。 </p></p>
                                   
                                                <p style="font-size: 20px;">关于ios - 如何以编程方式设置 WKInterfaceSlider 的最大值和最小值?,我们在Stack Overflow上找到一个类似的问题:
                                                        <a href="https://stackoverflow.com/questions/31261518/" rel="noreferrer noopener nofollow" style="color: red;">
                                                                https://stackoverflow.com/questions/31261518/
                                                        </a>
                                                </p>
                                       
页: [1]
查看完整版本: ios - 如何以编程方式设置 WKInterfaceSlider 的最大值和最小值?