9
8

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 3 years have passed since last update.

【Swift 】Segmented Controlを使おう

Last updated at Posted at 2020-10-30

UISegmentedControlの使い方を調べたので記事にしました。

実装環境 バージョン
Swift 5
Xcode 12.0

Segmented Controlとは

Segmented Controlを直訳すると、
部分に分かれた制御装置(コントロール)

Apple公式ドキュメントを見てみましょう!
スクリーンショット 2020-10-30 13.13.23.png

とても簡潔に意訳すると、
水平に操作できる複数置かれた個別のボタンです。

簡単に使ってみる

image.pngスクリーンショット 2020-10-30 13.43.03.png

Segmented ControlのAttributes Inspectorを選択、

Selected Tintでボタン選択時の色を設定
Segmentsでボタンの数を設定
Titleでボタンのタイトルを設定

選択されたボタンのタイトルを取得する

 @IBAction func segmentedControl(_ sender: UISegmentedControl) {
        print(sender.titleForSegment(at: sender.selectedSegmentIndex)!)
    }

viewload時に選択されているボタンを変えたい時

class ViewController: UIViewController {
    
    @IBOutlet weak var segmentedControl: UISegmentedControl!
    
    override func viewDidLoad() {
        super.viewDidLoad()
        segmentedControl.selectedSegmentIndex = 1
    }

SegmentIndexは左から0、1、2、、、で増えていきます。
今回は、
segmentedControl.selectedSegmentIndex = 1
で、1を代入しているので起動後はこんな感じに表示されました。
image.png


Segmented controlは文字ではなくてもimageでも設定できるみたいなので興味があれば試してみてください。

参考:Apple公式ドキュメント(UISegmentedControl)

9
8
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
9
8

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?