Should instances of UIAlertView be reused when possible?
Or is wrapping them in a using-block the best practice?
- For one situation, I created a (non-modal) MessageBox class (just like WinForms or WPF). I mainly use it for convenience.
- Another situation is a custom UIAlertView that I've subclassed that has more advanced layout. I wire-up the Dismissed event to do some work on close.
Would either of these situation call for a different approach?