- (void)willPresentAlertView:(UIAlertView *)alertView
And then you should set the frame size of the alertview that you want to modify.
- (void) willPresentAlertView:(UIAlertView *)alertView {
if (alertView == proximityAlert) {
if (alertView == proximityAlert) {
[proximityAlert setFrame:CGRectMake(15, 30, 300, 350)];
}
}
By Reon
By Reon
No comments:
Post a Comment