- (void)viewDidLoad
{
[super viewDidLoad];
if ([self respondsToSelector:@selector(edgesForExtendedLayout)])
{
self.edgesForExtendedLayout = UIRectEdgeNone;
self.navigationController.navigationBar.translucent=YES;
}
// Do any additional setup after loading the view.
}
我不希望我的scrollView默认位于navigationBar的后面。所以我设置了self.edgesForExtendedLayout = UIRectEdgeNone;。
viewDidLoad是我所有viewController的母viewDidLoad。
没关系。但我喜欢半透明的效果。
当我将self.edgesForExtendedLayout设置为none时,似乎半透明效果消失了。
如何将其设置为无,仍然具有半透明效果。
我认为一个好的解决方案是安排滚动视图的插图。
我做到了
- (void)viewDidLoad
{
[super viewDidLoad];
if ([self respondsToSelector:@selector(edgesForExtendedLayout)])
{
//self.edgesForExtendedLayout = UIRectEdgeNone;
self.navigationController.navigationBar.translucent=YES;
self.automaticallyAdjustsScrollViewInsets = YES;
}
// Do any additional setup after loading the view.
}
这就是我得到的:
答案 0 :(得分:6)
我现在有同样的问题。因此,如果你需要保持半透明导航栏,你应该改变边缘而不是插入。 这是代码,帮助我。
if(floor(NSFoundationVersionNumber) > NSFoundationVersionNumber_iOS_6_1) {
CGRect statusBarViewRect = [[UIApplication sharedApplication] statusBarFrame];
float heightPadding = statusBarViewRect.size.height+self.navigationController.navigationBar.frame.size.height;
myContentView.contentInset = UIEdgeInsetsMake(heightPadding, 0.0, 0.0, 0.0);
}
希望这有帮助。
答案 1 :(得分:2)
半透明意味着可以透过半透明看到条形下的内容。通过关闭延伸边缘,半透明仍然存在,只是你看不到它,因为下面没有内容。
答案 2 :(得分:0)
将此内容放入viewDidLoad()
:
self.extendedLayoutIncludesOpaqueBars = YES