public override void ViewWillAppear(bool animated) { base.ViewWillAppear(animated); this.InternetCheck(); var appDelegate = (AppDelegate)UIApplication.SharedApplication.Delegate; if (appDelegate.Logined) { this.NavigationController.PopViewController(true); } else { if (String.IsNullOrEmpty(appDelegate.GuestToken) == true) { this.GetGuestToken(); } else { NSLogHelper.NSLog("Guest Token Stored"); } this.SetSwitchs(); } }
public override void FailedToRegisterForRemoteNotifications(UIApplication application, NSError error) { NSLogHelper.NSLog($"Failed to get token, error: {error}"); }
public void DidEndVideoPlayback(VideoController videoController) { NSLogHelper.NSLog($"videoControllerDidEndVideoPlayback"); }