Appdelegate.swiftのdidFinishLaunchingOptionsに以下のコードを書きます
func application(_ application: UIApplication, didFinishLaunchingWithOptions launchOptions: [UIApplication.LaunchOptionsKey: Any]?) -> Bool {
// Override point for customization after application launch.
UILabel.appearance().font = UIFont(name: "Helvetica Bold Oblique", size: 6.0)
return true
}
ストーリーボードのインスペクタからUIButtonのtypeをcustomに変更します

コレでできます.
参考にさせていただいた記事↓