Does anyone know how to display an Activity Indicator View in a Alert View on a TouchDown event?

thanks in advance for the help.

link|improve this question

64% accept rate
feedback

2 Answers

up vote 0 down vote accepted

Here you can find a class that i created for this problem : https://gist.github.com/994791

You can use it like a normale UIAlertView.

link|improve this answer
feedback

Cool Thanks, I actually came up with this. It's a different approach:

public class ActivityIndicator : IDisposable
{
    UIAlertView _alert;
    UIActivityIndicatorView _ai;

    public ActivityIndicator (String title)
    {
        _alert = new UIAlertView(title, String.Empty, null, null, null);
        _ai = new UIActivityIndicatorView();
        _ai.Frame = new System.Drawing.RectangleF(125,50,40,40);
        _ai.ActivityIndicatorViewStyle = UIActivityIndicatorViewStyle.WhiteLarge;
        _alert.AddSubview(_ai);
        _ai.StartAnimating();

        _alert.Show();
    }

    #region IDisposable implementation
    void IDisposable.Dispose ()
    {
        _alert.DismissWithClickedButtonIndex(0, true);
    }
    #endregion
}
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.