EDIT: Not really a problem, I did a typo. It actually works just fine :)
Original question:
Hey.
I'm trying to place a UITextView in or on top of an UIAlertView. I know that the UIAlertView automatically uses a UITextView if message of the alert is too long, but I want it to always be an UITextView, and I want it to be editable and customizable (for style purposes).
I have tried to add a UITextView as a subview in the UIAlertView (which works for UITextFields), but that did not work with UITextView.
It seems like the UIAlertView won't accept an UITextViews as a subview.. Any way around this?
Could I put the UITextView over / on top of the UIAlertView?
I don't have time to subclass UIAlertView or create my own, but it's a good thought.
Thank you.