1
我有一個登錄屏幕,其中輸入了用戶名&的密碼。我點擊提交併致電:使用Monotouch訪問跨視圖的TextField值
this.PresentModalViewController(new Screen2(), true);
在屏幕2上如何獲取用戶名文本框的值?
我有一個登錄屏幕,其中輸入了用戶名&的密碼。我點擊提交併致電:使用Monotouch訪問跨視圖的TextField值
this.PresentModalViewController(new Screen2(), true);
在屏幕2上如何獲取用戶名文本框的值?
你可以這樣做:
var newScreen = new Screen2 (username.Text, password.Text);
this.PresentModalViewController (newScreen, true);