LMAlertView
LMAlertView copied to clipboard
Orientation Problem
I have just used this library and realized that the alertview is not showing up correct when launched in landscape orientation. The issue is fixed be commenting out the [self transformAlertContainerViewForOrientation]; in the show function in LMAlertView.m. Is it possible to have a flag on the initialisation, or any other solution to avoid commenting out this line?
I noticed that this pull request fixes the issue, however I also had to add the following line below line 451 in LMAlertView.m:
viewController.view.frame = [UIScreen mainScreen].bounds;