菜鸟教程小白 发表于 2022-12-13 12:05:04

ios - 有没有办法根据计算以编程方式更改 UIStepper 的值?


                                            <p><p>假设我有 3 个 <code>UIStepper</code>。<br/>
当我改变一个的值时,其他步进器的值会根据一个公式而改变。</p>

<p>Stepper 1 的值为 10。<br/>
Stepper 2 的值为 5。<br/>
步进三的值为 3。</p>

<p>如果我更改步进器 10 +/- 1,它可能会更改步进器 2 +/- 1 中的值。</p>

<p>这可能吗?</p></p>
                                    <br><hr><h1><strong>Best Answer-推荐答案</ strong></h1><br>
                                            <p><p>绝对有可能。</p>

<p>你可以想象这样的场景:</p>

<pre><code>UIStepper *stepperOne = [ initWithFrame:frame];
;

- (void)stepperOneChanged:(UIStepper*)stepperOne{
    //This method would be called on the target of your first stepper on UIControlEventsValueChanged

    //Decrease the value by 1
    stepperTwo.value --;

    //OR
    //Increase the value by 1
    stepperTwo.value ++;
}
</code></pre></p>
                                   
                                                <p style="font-size: 20px;">关于ios - 有没有办法根据计算以编程方式更改 UIStepper 的值?,我们在Stack Overflow上找到一个类似的问题:
                                                        <a href="https://stackoverflow.com/questions/9627856/" rel="noreferrer noopener nofollow" style="color: red;">
                                                                https://stackoverflow.com/questions/9627856/
                                                        </a>
                                                </p>
                                       
页: [1]
查看完整版本: ios - 有没有办法根据计算以编程方式更改 UIStepper 的值?