wxr
2021-11-18 dd3f6db0cb3c242758ab0000a0513e093f02531c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
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);
 
 
        }
    }
}