ich Kontakte UI zum Hinzufügen neuen Kontakts mit diesem Codeändern Titel für contactsUI ‚forNewContact‘ swift
let a = CNContact()
let contactPickerViewController = CNContactViewController.init(forNewContact: a) // iOS Editor
contactPickerViewController.delegate = self
let nav = UINavigationController.init(rootViewController: contactPickerViewController)
nav.title = "AppContact"
self.present(nav, animated: true, completion: nil)
Ich mag die Navigationsleiste Titel machen „AppContact“ zu sein, aber es kommt immer den Standard "Neuer Kontakt". Wie ändere ich den Titel?