LoginSignup
11
9

More than 5 years have passed since last update.

UITabBarの高さ変更(備忘録)

Last updated at Posted at 2016-11-03

UITabBarの高さ変更方法

UITabBarをextensionしてsizeThatFitsをoverrideすればできる

sample.swift
extension UITabBar {
    override public func sizeThatFits(size: CGSize) -> CGSize {
        var size = super.sizeThatFits(size)
        size.height = 100
        return size
    }
}

参考

11
9
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
11
9