“Swift Change Navigation Bar Titel” Code-Antworten

Swift Change Navigation Bar Titel

// Place this in your didFinishLaunchingWithOptions method in the AppDelegate
let attrs = [
  NSAttributedString.Key.foregroundColor: UIColor.white, // changes color
  NSAttributedString.Key.font: UIFont(name: "Futura-Bold", size: 17)! // changes font
]

UINavigationBar.appearance().titleTextAttributes = attrs
sej

Swift Show -Titel in der Navigationsleiste programmatisch

override func viewDidLoad() {
     super.viewDidLoad()
     self.title = "Your title over here"
}
Fine Flatworm

Ähnliche Antworten wie “Swift Change Navigation Bar Titel”

Fragen ähnlich wie “Swift Change Navigation Bar Titel”

Weitere verwandte Antworten zu “Swift Change Navigation Bar Titel” auf Swift

Durchsuchen Sie beliebte Code-Antworten nach Sprache

Durchsuchen Sie andere Codesprachen