You don't need the IntPtr option, if you are reading an obsolete method, it says:
"Use AddObserver (NSString, Action) instead"
So you want
NotificationCenter.DefaultCenter.AddObserver (UIDevice.OrientationDidChangeNotification, receivedRotate);
source
share