Skip to content

Instantly share code, notes, and snippets.

Created August 24, 2012 10:58
Show Gist options
  • Select an option

  • Save anonymous/3449131 to your computer and use it in GitHub Desktop.

Select an option

Save anonymous/3449131 to your computer and use it in GitHub Desktop.
-(void)setTitle:(NSString *)title{
if(![self.navigationController.navigationBar viewWithTag:1000]){
UITitleLabel *lblTitleLabel = [UITitleLabel titleLabelWithTitle:title];
lblTitleLabel.tag = 1000;
[self.navigationController.navigationBar insertSubview:lblTitleLabel atIndex:2];
}
else{
UITitleLabel *tt = (UITitleLabel*) [self.navigationController.navigationBar viewWithTag:1000];
tt.text = title;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment