2

我有一个基于导航控制器的应用程序选项卡,

导航栏中的标题在选项卡的根页面中显示良好,

但是当我在顶部推送另一个视图控制器时,我无法设置此视图的标题

这是我用于根页面和推送页面的代码,

- (void)viewDidLoad
{
    [super viewDidLoad];    
UILabel *lava = [[[UILabel alloc] initWithFrame:CGRectMake(0, 0, 320, 44)]autorelease];
    lava.backgroundColor = [UIColor clearColor];
lava.text = @"About us"; 

lava.textAlignment = UITextAlignmentCenter ;
lava.textColor = [UIColor whiteColor];
lava.font = [UIFont fontWithName:@"DroidSans-Bold" size:(46)];
lava.shadowColor = [UIColor blackColor];
lava.shadowOffset = CGSizeMake(2, 3);
self.navigationItem.titleView = lava;

 }

那么,在导航栏上设置我的标题缺少什么?

谢谢!

4

4 回答 4

1

您应该更改新控制器 viewDidLoad 中的标题

于 2012-07-02T12:15:10.257 回答
1

你可以试试self.navigationController.navigationItem.titleView

或者,如果您使用 iOS5 或更高版本..

UIImage *img=[UIImage imageNamed:@"NavBarBackground.png"];    
[self.navigationController.navigationBar setBackgroundImage:img forBarMetrics:UIBarMetricsDefault];

NSDictionary *dict=[NSDictionary dictionaryWithObjectsAndKeys:
                    [UIFont boldSystemFontOfSize:18.0f],UITextAttributeFont
                    ,[UIColor whiteColor],UITextAttributeTextColor
                    ,[UIColor blackColor],UITextAttributeTextShadowColor
                    ,[NSValue valueWithUIOffset:UIOffsetMake(0, 0)],UITextAttributeTextShadowOffset
                    , nil];
[self.navigationController.navigationBar setTitleTextAttributes:dict];

在你的 rootViewController中调用一次,viewDidLoad然后你就可以在self.title=@"foo"任何地方使用了。

于 2012-07-02T12:20:28.873 回答
1
CGRect applicationFrame = CGRectMake(0, 0, 300, 40);
UIView * newView = [[[UIView alloc] initWithFrame:applicationFrame] autorelease];
[newView addSubview: lava];
self.navigationItem.titleView = newView;

像这样试试。我想这会对你有所帮助。

于 2012-07-02T12:23:07.887 回答
1

你用什么将视图控制器推到顶部?

两者之间有区别:

[self.navigationController pushViewController:viewController animated:YES];

[self.navigationController presentModalViewController:viewController animated:YES];

所以如果你使用 presentModalViewController 方法,它不会显示你的标题。

如果这不是问题并且您正在使用 pushViewController 方法,您可以尝试设置您正在推送的视图控制器的标题。

- (void)viewDidLoad
{
    [super viewDidLoad];
    self.title = @"Controller title";
}
于 2012-07-02T12:29:59.767 回答