using System; using CoreGraphics; using Intents; using IntentsUI; using Other.Siri; using UIKit; namespace Other { public class SkipControl { public SkipControl() { } public void SkipSiriView() { var user = new SiriBaseView(); user.View.BackgroundColor = UIColor.Magenta; HDL_ON_iOS.AppDelegate.rootViewController.NavigationBarHidden = true; HDL_ON_iOS.AppDelegate.rootViewController.NavigationBarHidden = false; HDL_ON_iOS.AppDelegate.rootViewController.PushViewController(user, true); } } }