1
我顯示在我的viewcontroller在表格,但默認大小超過我需要,因此,我試圖調整大小,以符合我的要求,但沒有任何改變。Resize FormSheet不受影響
var vc = new WSViewController();
vc.ModalPresentationStyle = UIModalPresentationStyle.FormSheet;
vc.ModalTransitionStyle = UIModalTransitionStyle.CrossDissolve;
PresentViewController(vc, true,() => {
vc.View.Superview.Frame = new CGRect(0, 0, 200, 200);
vc.View.Superview.Center = View.Center;
});