0

我想知道是否可以将我的 navigationController 标题移近栏的顶部?现在它看起来像这样。在此处输入图像描述

我在想它会是

self.navigationItem.titleView = [[titleView alloc] initWithFrame:CGRectMake(100,2, 2,100)]];

但我猜 titleView 必须是另一个视图?

谢谢您的帮助!

4

1 回答 1

0

初始化时给框架!

 UIView *iv = [[UIView alloc] initWithFrame:CGRectMake(0,0,32,32)];
[iv setBackgroundColor:[UIColor whiteColor]];


self.navigationItem.titleView = iv;
于 2013-07-10T15:36:31.523 回答