Question

I am want to add UILabel inside UIAlertView in IOS7. My Code is working fine in iOS7 less versions.

Was it helpful?

Solution

AddSubview is not possible from iOS 7.

How to add subview inside UIAlertView for iOS 7?

OTHER TIPS

In iOS 7 you can use

[alertView setValue:customContentView forKey:@"accessoryView"];

Full explanation is here

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top