当前位置 : 主页 > 手机开发 > ios >

xamarin.ios – MonoTouch NSNotificationCenter.DefaultCenter.AddObserver现在已经过时了?

来源:互联网 收集:自由互联 发布时间:2021-06-11
我只是想知道现代的相当于: NSNotificationCenter.DefaultCenter.AddObserver("UIDeviceOrientationDidChangeNotification", receivedRotate); 将会.它说它已经过时了,我应该使用AddObserver,但我不确定如何使用IntPtr上
我只是想知道现代的相当于:

NSNotificationCenter.DefaultCenter.AddObserver("UIDeviceOrientationDidChangeNotification", receivedRotate);

将会.它说它已经过时了,我应该使用AddObserver,但我不确定如何使用IntPtr上下文var.

您不需要IntPtr变体,如果您阅读它所说的Obsolete方法:

“使用AddObserver(NSString,Action)代替”

所以你想要的是

NotificationCenter.DefaultCenter.AddObserver (UIDevice.OrientationDidChangeNotification, receivedRotate);
网友评论