我想知道是否可以将我的navigationController标题移到靠近栏顶部的位置?现在它看起来像这样。
我在想它会是
self.navigationItem.titleView = [[titleView alloc] initWithFrame:CGRectMake(100,2, 2,100)]];
但我想titleView必须是另一种观点?
感谢您的帮助!
答案 0 :(得分:0)
初始化时给出框架!
UIView *iv = [[UIView alloc] initWithFrame:CGRectMake(0,0,32,32)];
[iv setBackgroundColor:[UIColor whiteColor]];
self.navigationItem.titleView = iv;