在iphone中为不同的View控制器设置不同的导航栏标题

时间:2013-06-27 08:27:46

标签: uinavigationcontroller uinavigationbar title

我有导航栏我在图像上设置标题,在导航栏中使用它工作正常但是当我对其他控制器使用相同的代码时,它在导航栏上显示相同的先前标题而不是新的。

这是代码

   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];

0 个答案:

没有答案