center custom title in UINavigationBar?
I have a custom UINavigationBar title and a custom back button. My problem is that the title is not centered on the iPhone. It is as if my back button is pushing the title over to the right. Any Idea how I can center it? int height = self.navigationController.navigationBar.frame.size.height; int width = self.navigationController.navigationBar.frame.size.width; UILabel *navLabel = [[UILabel alloc] initWithFrame:CGRectMake(0, 0, width + 300, 20)]; navLabel.backgroundColor = [UIColor whiteColor]; navLabel.textColor = [UIColor redColor]; navLabel.font = [UIFont fontWithName:@"Helvetica" size:30];