Skip to content

Instantly share code, notes, and snippets.

@KentarouKanno
Last active May 30, 2016 04:23
Show Gist options
  • Save KentarouKanno/283bb4afa616aa0b397802ee3b9eab51 to your computer and use it in GitHub Desktop.
Save KentarouKanno/283bb4afa616aa0b397802ee3b9eab51 to your computer and use it in GitHub Desktop.
UISegmentedControl

UISegmentedControl

★ 生成する

let segment = UISegmentedControl()

// サイズを指定して生成
let segment = UISegmentedControl(frame: CGRectMake(0, 0, 100, 50))

// Itemを指定して生成
let segment = UISegmentedControl(items: ["First", "Second", "Third"])
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment