Skip to content

Instantly share code, notes, and snippets.

@zacwolff
Forked from calt/Tabbar.Swift
Created November 21, 2016 21:30
Show Gist options
  • Save zacwolff/f862eb1c9f17a6dc98c3d83415979fad to your computer and use it in GitHub Desktop.
Save zacwolff/f862eb1c9f17a6dc98c3d83415979fad to your computer and use it in GitHub Desktop.
UITabBar with custom height in Swift
extension UITabBar {
override public func sizeThatFits(size: CGSize) -> CGSize {
super.sizeThatFits(size)
var sizeThatFits = super.sizeThatFits(size)
sizeThatFits.height = 71
return sizeThatFits
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment