I tried to change the title of the page when I get group
data from parent view in 3 ways but it didn't change the title
var group : Group? {
didSet{
self.navigationItem.title = "from code"
self.navigationController?.navigationItem.title = "from code"
self.title = "from code"
}
}