0

PickerView には 4 つのコンポーネントがあります。コンポーネント0の行0が選択されているときに、すべてのコンポーネントで完全な行を選択したい。同様に、各コンポーネントの 1 行おきに。すべての単一選択を拡張する方法はありますか?

どんな助けでも大歓迎です。

4

1 に答える 1

1

UIPickerViewデリゲート メソッドを実装しpickerView:didSelectRow:inComponent:ます。

// called when a user selects a row
- (void)pickerView:(UIPickerView *)pickerView didSelectRow:(NSInteger)row inComponent:(NSInteger)component {
    // This code assumes all four components have the same number of rows
    for (NSInteger c = 0; c < pickerView.numberOfComponent; c++) {
        if (c != component) {
            [pickerView selectRow:row inComponent:c animated:NO]; // animate if desired
        }
    }

    // do any other desired actions (if any) when a row is selected
}

もう 1 つのオプションは、各行に 4 つのデータ セットすべてを表示するコンポーネントを 1 つだけ持つことです。ユーザーがコンポーネントごとに異なる値を選択できない場合、4 つのコンポーネントを使用してもあまり意味がありません。

于 2012-11-11T19:25:36.530 に答える