using System; using UIKit; namespace Other.Siri { public partial class SiriBaseView : UIViewController { public SiriBaseView() : base("SiriBaseView", null) { } public override void ViewDidLoad() { base.ViewDidLoad(); // Perform any additional setup after loading the view, typically from a nib. } public override void DidReceiveMemoryWarning() { base.DidReceiveMemoryWarning(); // Release any cached data, images, etc that aren't in use. } } }