Skip to content

Instantly share code, notes, and snippets.

@mihailsalari
Forked from calt/Tabbar.Swift
Created June 11, 2020 19:14
Show Gist options
  • Select an option

  • Save mihailsalari/195c83762a8800f63612bf090aea00db to your computer and use it in GitHub Desktop.

Select an option

Save mihailsalari/195c83762a8800f63612bf090aea00db to your computer and use it in GitHub Desktop.
UITabBar with custom height in Swift
extension UITabBar {
override open 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