0
當我在Xamarin.iOS項目中使用常規UIViewController時,每一個拉伸都適合屏幕。但是當我將繼承改爲mvvmcross基本viewcontroller我得到了奇怪的餘量,我無法修復。刪除MvxViewController中的UIView的頂部邊距
我的代碼是非常簡單的。 我沒有
public override void ViewDidLoad()
{
View = new UIView() { BackgroundColor = UIColor.Red };
base.ViewDidLoad();
View.Frame = UIScreen.MainScreen.Bounds;
View.BackgroundColor = UIColor.Red;
View.AutoresizingMask = UIViewAutoresizing.FlexibleWidth | UIViewAutoresizing.FlexibleHeight;
}