我正在将图像添加到导航栏它工作正常但是当我想添加标题时
self.title=@"Activity";
它没有显示任何内容
使用另一种方式我也添加了标题标签,但这对于一个视图控制器来说很好,但是在第二个控制器上我改变了标题,但它也显示了以前的标题
这是我的代码
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];
//titleLabel boldSystemFontOfSize:14.0;
[self.navigationController.navigationBar addSubview:titleLabel];