コード例 #1
0
 public void stophud()
 {
     if (_hud == null)
     {
         return;
     }
     _hud.StopAnimating();
     _hud.RemoveFromSuperview();
     _hud.Dispose();
     _hud = null;
 }
コード例 #2
0
 public void starthud()
 {
     _hud = new LoadingHUDView("", "");
     this.TableView.AddSubview(_hud);
     _hud.StartAnimating();
 }