我只是想知道现代的相当于: 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);