作者热门文章
- objective-c - iOS 5 : Can you override UIAppearance customisations in specific classes?
- iphone - 如何将 CGFontRef 转换为 UIFont?
- ios - 以编程方式关闭标记的信息窗口 google maps iOS
- ios - Xcode 5 - 尝试验证存档时出现 "No application records were found"
我已经设置了
NavigationController.NavigationBar.Translucent = true;
然后添加table,设置frame为RootView Frame,并:
public override void ViewDidLayoutSubviews()
{
base.ViewDidLayoutSubviews();
float y = this.TopLayoutGuide.Length;
table.ContentInset = new UIEdgeInsets (y, 0, 0, 0);
}
但是,我在 NavigationBar 下有表格滚动条 (我使用单点触摸):
最佳答案
随便放
navigationBar.translucent = NO;
你的问题会解决:)
其他选项是,,
输入以下代码。
- (void)viewWillAppear:(BOOL)animated
{
[super viewWillAppear:animated];
if([self respondsToSelector:@selector(edgesForExtendedLayout)])
[self setEdgesForExtendedLayout:UIRectEdgeBottom];
}
另一种选择是..
Why does UIViewController extend under UINavigationBar, while UITableViewController doesn't?
关于ios - iOS UITableView如何在NavigationBar下使用?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/20946361/
我是一名优秀的程序员,十分优秀!