public NavigationController(IntPtr handle) : base(handle)
        {
            model = AppDelegate.getAndSubscribeToModel(this);
            NSNumber n   = new NSNumber((int)UIInterfaceOrientation.LandscapeRight);
            NSString key = new NSString("orientation");

            UIDevice.CurrentDevice.SetValueForKey(n, key);
            UIDevice.CurrentDevice.BeginGeneratingDeviceOrientationNotifications();
        }
예제 #2
0
 public CameraController(IntPtr handle) : base(handle)
 {
     model = AppDelegate.getAndSubscribeToModel(this);
 }