SyntaxFix
Write A Post
Hire A Developer
Questions
There's one issue with using self.title = @"title";
self.title = @"title";
If you're using Navigation Bar along with Tab bar, the above line also changes the label for the Tab Bar Item. To avoid this, use what @testing suggested
self.navigationItem.title = @"MyTitle";