Customizing UIAlertView

I think your best bet is to forget customizing UIAlert view and build a custom view yourself.

For one, what you’re showing really isn’t an “alert” so it’s counter to what UIAlertView is designed to be for. This means that you’re changing the UI paradigm on the user which is never a good idea.

Second, it would be much easier to animate a custom view into place than to try and hack UIAlertView to get it to do what you want.

Leave a Comment