Skip to content

Instantly share code, notes, and snippets.

@bergusman
Created February 28, 2020 17:24
Show Gist options
  • Save bergusman/e061a8d5b22df6aed79389e444b5ebdd to your computer and use it in GitHub Desktop.
Save bergusman/e061a8d5b22df6aed79389e444b5ebdd to your computer and use it in GitHub Desktop.
UITabBar with custom height
class TabBar: UITabBar {
override func sizeThatFits(_ size: CGSize) -> CGSize {
guard let window = UIApplication.shared.keyWindow else {
return super.sizeThatFits(size)
}
var sizeThatFits = super.sizeThatFits(size)
sizeThatFits.height = 58 + window.safeAreaInsets.bottom
return sizeThatFits
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment