我該如何在monotouch/Xamarin.Ios中的鍵盤上添加UIView?如何在monotouch/Xamarin.Ios中的鍵盤上添加子視圖?
我試過以下,但它似乎並沒有工作。
UIApplication.SharedApplication.Delegate.Window.AddSubview (myView);
UIApplication.SharedApplication.Delegate.Window.BringSubviewToFront (myView);
UIView添加到鍵盤後面。
在目標c我能夠使用下面的代碼,它的工作。
[[[[UIApplication sharedApplication] windows] objectAtIndex:1] addSubview:myView];
謝謝。