I am trying to put a custom view inside a UIAlertController
. I\'m running into some odd issues with the sizing of the custom view.
I want the custom vie
You're not supposed to do that. To quote the docs:
The UIAlertController class is intended to be used as-is and does not support subclassing.
The view hierarchy for this class is private and must not be modified.
If you go against an explicit statement like that from Apple all bets are off, and even if you can get it to work on the current OS version, it could break with any future version.