2
2

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 5 years have passed since last update.

【Swift】storyboardを利用しないテンプレート(UITabBarController)

Last updated at Posted at 2016-10-18

概要

PureLayoutのサンプル(UITabBarController) です。

5つのタブを生成し、各ViewControllerにtag番号を表示しています。
UILabelのextension(setLayout)にてAutoLayout設定(中央表示)をしています。
❇TabBarControllerはPureLayoutは未使用

目的

storyboardを利用しない必要最低限のテンプレート(Swift) を参照ください。

メリット (PureLayout vs Storyboard)

[Swift] storyboardを利用しないテンプレート(基本的なView) を参照ください。

対象View

  • UITabBarController

結果

サンプル

github

AutoLayout設定

UILabelのextension(中央表示)

extension UILabel {
    var setLayout: UILabel {
        self.autoAlignAxisToSuperviewAxis(.Horizontal)
        self.autoAlignAxisToSuperviewAxis(.Vertical)
        self.font = UIFont.systemFontOfSize(CGFloat(256))
        
        return self
    }
}
2
2
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
2
2

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?