没有边距的MonoTouch.Dialog UITableView

时间:2012-10-01 08:14:19

标签: ios uitableview xamarin.ios monotouch.dialog

如何使用没有边距的MonoTouch.Dialog创建UITableView

当你创建新的Section时,它会在表格周围添加边距并使元素四舍五入。我希望简单的UITableView看起来没有边距(顶部,左边,底部等),无论如何这是否可以实现?

1 个答案:

答案 0 :(得分:7)

我认为您想要的是使用DialogViewController样式创建UITableViewStyle.Plain。 E.g。

var root = new RootElement ();
var d = new DialogViewController (UITableViewStyle.Plain, root);

默认样式值为UITableViewStyle.Grouped,并为每个元素提供圆角直观外观。