コード例 #1
0
 public void ResetLoadingViewWithTitle(string title)
 {
     if (_loading != null)
     {
         _loading.RemoveFromSuperview();
         _loading.Dispose();
         _loading = null;
     }
     _loading = new LoadingView(title);
     _loading.SetTransformForCurrentOrientation(false);
 }