MonoTouch NSNotificationCenter.DefaultCenter.AddObserver 现在已经过时了吗?
我只是想知道: 现代的等价物
NSNotificationCenter.DefaultCenter.AddObserver("UIDeviceOrientationDidChangeNotification", receivedRotate);
是什么。它说它已过时,我应该使用 AddObserver,但我不确定 IntPtr 上下文变量使用什么。
I'm just wondering what the modern equivalent of:
NSNotificationCenter.DefaultCenter.AddObserver("UIDeviceOrientationDidChangeNotification", receivedRotate);
would be. It says its obsolete and that I should use AddObserver, but I'm not sure what to use for the IntPtr context var.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
你不需要 IntPtr 变体,如果你读过 Obsolete 方法,它说:
“使用 AddObserver(NSString, Action) 代替”
所以你想要的是
You don't need the IntPtr variant, if you read the Obsolete method it says:
"Use AddObserver(NSString, Action) instead"
So what you want is