i have an issue related with UIAlertView . i have created an alert with body message and two buttons for OK and Cancel. when i present the alertWindow , the buttons makes its position outside of the alert window and which is not accessable. it will become normal when orientation changes.
i tried by changing the size of the alertWindow but the problem exists.
here is my code
UIAlertView *errorAlert=[[UIAlertView alloc]initWithTitle:errorAlertTitle message:errorAlertMessage delegate:self cancelButtonTitle:errorAlertClose otherButtonTitles:@"Reload", nil];
errorAlert.tag=2;
errorAlert.frame = CGRectMake(0,0,500,600);
[errorAlert show];
[errorAlert release];
any solution?