移动导航栏标题

时间:2013-07-10 15:27:41

标签: iphone

我想知道是否可以将我的navigationController标题移到靠近栏顶部的位置?现在它看起来像这样。 enter image description here

我在想它会是

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

但我想titleView必须是另一种观点?

感谢您的帮助!

1 个答案:

答案 0 :(得分:0)

初始化时给出框架!

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


self.navigationItem.titleView = iv;