作者热门文章
- c - 在位数组中找到第一个零
- linux - Unix 显示有关匹配两种模式之一的文件的信息
- 正则表达式替换多个文件
- linux - 隐藏来自 xtrace 的命令
我正在尝试使用 NSNotificationCenter 在 View 中将通知从我的应用程序发布到另一个应用程序。所以在我的目标类中,我按如下方式创建我的观察者:
NSNotificationCenter.DefaultCenter.AddObserver ("ChangeLeftSide", delegate {ChangeLeftSide(null);});
我有我的方法:
public void ChangeLeftSide (UIViewController vc)
{
Console.WriteLine ("Change left side is being called");
}
现在我从另一个 UIViewController 发布通知如下:
NSNotificationCenter.DefaultCenter.PostNotificationName("ChangeLeftSide", this);
如何访问目标类中的发布通知中传递的 View Controller ?在 iOS 中,它非常简单,但我似乎无法在 monotouch (Xamarin) 中找到自己的方式......
最佳答案
当你AddObserver
,您想以稍微不同的方式进行操作。尝试以下操作:
NSNotificationCenter.DefaultCenter.AddObserver ("ChangeLeftSide", ChangeLeftSide);
和你的声明 ChangeLeftSide
符合 Action<NSNotification>
的方法预计 AddObserver
- 给你实际的 NSNotification
目的。 :
public void ChangeLeftSide(NSNotification notification)
{
Console.WriteLine("Change left side is being called by " + notification.Object.ToString());
}
所以当你PostNotificationName
,您将 UIViewController 对象附加到通知,可以在 NSNotification
中检索该对象通过 Object
属性(property)。
关于c# - Xamarin NSNotificatioCenter : How can I get the NSObject being passed?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/15486010/
我是一名优秀的程序员,十分优秀!