I try to change UITabBar badge font like this:
cartTab = tabBar.items![2]
let font = UIFont(name: "MyFontName", size: 11)!
cartTab?.setBadgeTextAttributes([NSAttributedStringKey.font.rawValue: font], for: .normal)
cartTab?.setBadgeTextAttributes([NSAttributedStringKey.font.rawValue: font], for: .selected).
I set this code in my custom tabbar controller (viewDidLoad).