ios7 - How to resize UIAlertView in iOS 7 -


currently i'm using code doesn't work in ios 7. works fine in ios 6:

uialertview *alertview = [[uialertview alloc] initwithtitle:title message:nil delegate:self cancelbuttontitle:@"cancel" otherbuttontitles:nil, nil];  [alertview show];  - (void)willpresentalertview:(uialertview *)alertview {    [alertview setframe:cgrectmake(alertview.frame.origin.x, alertview.frame.origin.y, alertview.frame.size.width, 200)];  } 

how can resize in ios 7?


Comments

Popular posts from this blog

How to access named pipes using JavaScript in Firefox add-on? -

multithreading - OPAL (Open Phone Abstraction Library) Transport not terminated when reattaching thread? -

node.js - req param returns an empty array -