我想在导航栏和UIView(在UIView
下面)之间插入NavigationBar
以显示网络连接状态。
此外,导航栏下方的视图应向下以为indicatorView
创建空格。
我的代码:
indicatorView = [[UIView alloc] initWithFrame:CGRectMake(0, 0, VIEW_WIDTH, 35)];
[self.view addSubview:indicatorView];
self.view.frame = CGRectMake(0, 35, VIEW_WIDTH, VIEW_HEIGHT - 35);
这会插入一个视图但整个窗口向上移动并在View底部创建一个空格。怎么了?