IOS How to add subview inside UIAlertView for iOS 7
AddSubview is not possible from iOS 7.
The only way is to create a custom UIView subclass which can act as UIAlertView. I could find out few components on Github.
The linked one Custom Alert seems to work well. By putting proper version check one can identify to go for native UIAlertView or CustomAlertView.
The only way is to create a custom UIView subclass which can act as UIAlertView. I could find out few components on Github.
The linked one Custom Alert seems to work well. By putting proper version check one can identify to go for native UIAlertView or CustomAlertView.
Comments
Post a Comment