Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
如何UITableView使用没有边距的 MonoTouch.Dialog 创建?
UITableView
目前,一旦您创建新部分,它将在表格周围添加边距并使元素四舍五入。我想要UITableView没有边距(顶部、左侧、底部等)的简单外观,这是否可以实现?
我认为你想要的是创造你DialogViewController的UITableViewStyle.Plain风格。例如
DialogViewController
UITableViewStyle.Plain
var root = new RootElement (); var d = new DialogViewController (UITableViewStyle.Plain, root);
默认样式值是UITableViewStyle.Grouped并为每个元素提供圆角矩形外观。
UITableViewStyle.Grouped