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

ios - 无法在选择器 View 中滚动选择默认值


                                            <p><p>我的应用程序中有选择器 View ,它工作正常,但如果我想先选择选择器 View 中的那些值,则出现问题。如果不滚动选择器 View ,我无法选择。首先我向上或向下滚动并之后我可以选择这些值。不选择不滚动。
无法在不滚动选取器 View 的情况下获取值(当用户不与选取器 View 交互时,我想获取在选取器 View 中默认选择的值)。</p>

<pre><code>-(NSInteger)numberOfComponentsInPickerView:(UIPickerView *)pickerView
{
    return 1;
}
-(NSInteger)pickerView:(UIPickerView *)pickerView numberOfRowsInComponent:(NSInteger)component
{

    return [ ArrayForIdealCalc count];

}
#pragma data source
-(NSString*)pickerView:(UIPickerView *)pickerView titleForRow:(NSInteger)row forComponent:(NSInteger)component
{
    return ;
    // return ;
    //return ;
}

-(void)pickerView:(UIPickerView *)pickerView didSelectRow:(NSInteger)row inComponent:(NSInteger)component
{

    if ()
    {
      IdealWeightstr =;
      _KiloLbl.text=IdealWeightstr;
      ;
      ;

    }
</code></pre>

<p>这是我的可编辑代码</p></p>
                                    <br><hr><h1><strong>Best Answer-推荐答案</ strong></h1><br>
                                            <p><p>你可以使用</p>

<pre><code>selectRow:0 inComponent:0 animated:NO
</code></pre>

<p>或者你可以调用picker委托(delegate)方法</p>

<pre><code>pickerView:myPickerView didSelectRow:0 inComponent:0
</code></pre></p>
                                   
                                                <p style="font-size: 20px;">关于ios - 无法在选择器 View 中滚动选择默认值,我们在Stack Overflow上找到一个类似的问题:
                                                        <a href="https://stackoverflow.com/questions/34155674/" rel="noreferrer noopener nofollow" style="color: red;">
                                                                https://stackoverflow.com/questions/34155674/
                                                        </a>
                                                </p>
                                       
页: [1]
查看完整版本: ios - 无法在选择器 View 中滚动选择默认值