0

これを正しく表現する方法がわかりませんが、現在持っているものは次のとおりです。

    - (IBAction)revertTint:(id)sender {
    for (UISegmentedControl *swItem in allSegmentCollection) {
        int selectedSegment = swItem.selectedSegmentIndex;
        swItem.segmentedControlStyle = UISegmentedControlStyleBar;
        if (selectedSegment !=-1)
        {
            [swItem setTintColor:nil];
        }
    }   
}

ストーリーボードからこのアクションに各ボタンを配線し、正常に動作しますが、私の質問は、すべてのコントロールセグメントをこのアクションに配線するのではなく、アウトレットコレクションを使用してこのアクションを実行させることはできますか?

4

1 に答える 1