problem in changing size of uialertview
问题 Hello I am having a alertview and i want to change the size by cgrectmake property but it does not happen . It just take the by default size. i tried following code. - (void)viewDidLoad { [super viewDidLoad]; UIAlertView* find = [[[UIAlertView alloc] init]initWithFrame:CGRectMake(0,0,300,200)]; [find setDelegate:self]; [find setTitle:@"Sample Alert"]; [find setNeedsLayout]; [find show]; [find release]; } Thanks in advance . 回答1: To achieve what you want, in your code, after: [find show]; add: