在iOS7 SDK下
1创建一个新项目并使用Master-Detail Application模板
2设置DetailViewController's background Color clear Color
。
3使用自定义UINavigationBar
,覆盖layoutSubviews
:
- (void)layoutSubviews
{
[super layoutSubviews];
CGRect bounds = self.bounds;
bounds.size.height = 88.0;
self.bounds = bounds;
}
4运行它。
哇!什么是UINavigationBar
下的深灰色视图。而且,如果viewController
是UITableViewController
或UICollectionViewController
等等,则与scrollView
相关,也就是那里的混乱偏移。
其他人都知道发生了什么事吗?
我没有足够的声誉发布图片,真的令人沮丧!但是,希望你能专注于我的照片,这是图像。