我有导航栏我在图像上设置标题,在导航栏中使用它工作正常但是当我对其他控制器使用相同的代码时,它在导航栏上显示相同的先前标题而不是新的。
这是代码
UIImage *image = [UIImage imageNamed:@"Nav.png"];
UIImageView *imageView = [[UIImageView alloc] initWithImage:image];
[self.navigationController.navigationBar addSubview:imageView];
titleLabel=[[UILabel alloc] initWithFrame:CGRectMake(50,2,250,36)];
titleLabel.text=@"Activity";
titleLabel.textColor=[UIColor whiteColor];
titleLabel.backgroundColor=[UIColor clearColor];
titleLabel.font=[UIFont fontWithName:@"Helvetica-Bold" size :18];
[self.navigationController.navigationBar addSubview:titleLabel];