Exemplo n.º 1
0
        ////////////////////////////////////
        // METHODS
        ////////////////////

        public override void ViewDidLoad()
        {
            base.ViewDidLoad();

            this.camera = new CrashCamera(delegate {
            });
        }
Exemplo n.º 2
0
 partial void CrashButtonClicked(NSObject sender)
 {
     if (this.camera != null)
     {
         this.camera.Dispose();
         this.camera = null;
     }
     GC.Collect();
 }