本文介绍了如何在NavigationBar下使用iOS UITableView?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我已设置
NavigationController.NavigationBar.Translucent = true;
然后将表格和设置框架添加到RootView框架中,并且:
Then add table and set frame to RootView Frame, and:
public override void ViewDidLayoutSubviews()
{
base.ViewDidLayoutSubviews();
float y = this.TopLayoutGuide.Length;
table.ContentInset = new UIEdgeInsets (y, 0, 0, 0);
}
但是,我在NavigationBar 下有桌面滚动条(我使用monotouch ):
But, I Have table Scroll Bar under NavigationBar (I use monotouch):
推荐答案
我用这个简单的代码解决了任务:
I solved task with this simple code:
table.ScrollIndicatorInsets = new UIEdgeInsets(64, 0, 0, 0);
这篇关于如何在NavigationBar下使用iOS UITableView?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!