我正在尝试将以下 iOS 代码转换为 MonoTouch,但无法确定 @selector(removebar) 代码的正确转换。任何人都可以提供有关处理@selector 的最佳方法的指导(因为我在其他地方也遇到过):
- (void)keyboardWillShow:(NSNotification *)note {
[self performSelector:@selector(removeBar) withObject:nil afterDelay:0];
}
我的 C# 代码是:
NSNotificationCenter.DefaultCenter.AddObserver(UIKeyboard.WillShowNotification,
notify => this.PerformSelector(...stuck...);
我基本上是想隐藏键盘上显示的 Prev/Next 按钮。
提前感谢您的帮助。