Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

use UIAppearance methods for customizing UIAlertView

I know that UIAlertView conforms to UIAppearance and UIAppearanceContainer.

But how do I use UIAppearance to customize/style UIAlertView? I am not able to find it over the net.

like image 934
Nikita P Avatar asked Jun 04 '26 18:06

Nikita P


1 Answers

You can't use UIAppearance to customise UIAlertView.

UIAlertView only shows as having UIAppearance because UIView conforms to UIAppearance and UIAlertView is a subclass of UIView.

It doesn't actually implement it though.

like image 119
Fogmeister Avatar answered Jun 06 '26 07:06

Fogmeister