I've got an iOS application. I am trying to work with the BigTed HUD component. I have the following code. I am not quite sure why the HUD is being displayed. I am currently just working on this with Visual Studio 2013 in a Windows 8.1 parallels session connecting to my Macbook Pro. I've used the BT Hud product before, so I am surprised by this.
async void HandleTouchUpInside (object sender, EventArgs e)
{
var userName = userId.Text;
var password = pwd.Text;
userId.ResignFirstResponder ();
pwd.ResignFirstResponder ();
if (!(String.IsNullOrEmpty(userName) || (String.IsNullOrEmpty(password))))
{
BigTed.BTProgressHUD.Show("Logging in.");
var res = await ConstructionLibrary.WebServices.LoginUser(userName, password);
if ((res.ValidLogin) && (res != null) && (!String.IsNullOrEmpty(res.Session)))
{
_ad.DisplayContent();
}
BigTed.BTProgressHUD.Dismiss();
}
}