I'm trying to design view controller with Multi-lined centred Large title text exactly like Ask Siri by apple (Settings->General->Keyboards->About Ask Siri, Dictation and Privacy...).
I can able to achieve centred text using:
I did set Navigation title from Storyboard and tried these to achieve multi-lined large title:
But none of them are worked on iOS 13.
Is there any way to enable multi-line on Large navigation title label.?
I can able to achieve centred text using:
Code Block let paragraph = NSMutableParagraphStyle() paragraph.alignment = .center navigationController?.navigationBar.largeTitleTextAttributes = [.paragraphStyle: paragraph]
I did set Navigation title from Storyboard and tried these to achieve multi-lined large title:
But none of them are worked on iOS 13.
Is there any way to enable multi-line on Large navigation title label.?