我想從我的應用程序發佈通知到另一個使用NSNotificationCenter的視圖。所以在我的目的地類創建我的觀察如下:Xamarin NSNotificatioCenter:我怎樣才能讓NSObject通過?
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);
如何訪問正在我的發佈通知中傳遞到目標類中的視圖控制器?在iOS中它是非常直接的,但我似乎無法找到我的方式monotouch(Xamarin)...
只是有趣的你花了一年的時間找到下面發佈的答案:) – Injectios 2016-04-18 13:01:54