Luc
Luc

Reputation: 17072

good looking alert in iphone app

I am working on making my first iPhone app nicer :) When an error occurs, I display it in a "basic" UIAlertView (blue background, a Cancel button). I saw in several apps very good looking alerts when network errors occur (nice grey modal alert that only shows for a couple of seconds). How can this be done ? Is that a particular configuration of UIAlertView ?

Thanks a lot for your help, Luc

Upvotes: 0

Views: 270

Answers (1)

TomSwift
TomSwift

Reputation: 39512

This isn't an alertview per se, but it is often used in conjunction with networking operations, as you mention.

https://github.com/matej/MBProgressHUD

Upvotes: 3

Related Questions