I am loading a UITableViewController, and I have the following:
override func viewWillAppear(animated: Bool) {
nameCell.detailTextLabel?.text = ApplicationUser.sharedInstance.profile.getFullName()!
}
If I println(nameCell.detailTextLabel?.text)
after making the above call, the value is set correctly. On first display of the screen the value does not show, however if I navigate to a detail view and then come back to this screen, the value is displayed as expected. Why?
I am simulating iPhone 5s.