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.
我希望 MonoTouch.Dialog 创建的 UITableView 出现在距屏幕顶部 5 厘米左右的位置。默认情况下它位于顶部。
有没有一种简单的方法可以设置上边距?
添加此填充的最简单方法是利用 Section 页眉和页脚。这需要使用 Elements API 而不是 Reflection API。
您需要将视图作为标题传递,例如:
// Create a view that is 200 points tall var myMargin = new UIView (new RectangleF (0, 0, 1, 200)); var mySection = new Section (myMargin);
然后将您的元素添加到该部分。