Skip to content

Instantly share code, notes, and snippets.

View tagmetag's full-sized avatar
💭
Please contact me if you want to contribute: [email protected]

TagMeTag tagmetag

💭
Please contact me if you want to contribute: [email protected]
  • In Prison
View GitHub Profile
@calt
calt / Tabbar.Swift
Last active April 22, 2025 05:34
UITabBar with custom height in Swift, does not work for iOS 14 or later.
// Does not work on iOS 14.0 or later, keeping the gist just for reference.
extension UITabBar {
override open func sizeThatFits(size: CGSize) -> CGSize {
super.sizeThatFits(size)
var sizeThatFits = super.sizeThatFits(size)
sizeThatFits.height = 71
return sizeThatFits
}
}