Guest User

Untitled

a guest
Dec 9th, 2018
76
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.45 KB | None | 0 0
  1. -(void)setTitle:(NSString *)title{
  2. if(![self.navigationController.navigationBar viewWithTag:1000]){
  3. UITitleLabel *lblTitleLabel = [UITitleLabel titleLabelWithTitle:title];
  4. lblTitleLabel.tag = 1000;
  5.  
  6. [self.navigationController.navigationBar insertSubview:lblTitleLabel atIndex:2];
  7. }
  8. else{
  9. UITitleLabel *tt = (UITitleLabel*) [self.navigationController.navigationBar viewWithTag:1000];
  10. tt.text = title;
  11. }
  12. }
Add Comment
Please, Sign In to add comment