Мой uialeartview код.когда он отображается в альбомной или портретной ориентации, то все в порядке, но при смене портретной ориентации на альбомную или альбомную на портретную
он всегда будет перемещаться не в центре окна, как раньше
, как я могу сделать его центромокна при ротации.
UIAlertView *over;
over=[[UIAlertView alloc]initWithTitle:@"Game over"
message:[NSString stringWithFormat:@"Your score : %d\n\n\n",score]
delegate:self
cancelButtonTitle:@"OK"
otherButtonTitles:nil];
[over show];
UITextField *nameinputfiled=[[UITextField alloc]initWithFrame:CGRectMake(11, 80, over.frame.size.width-50, 31)];
nameinputfiled.backgroundColor=[UIColor whiteColor];
[over addSubview:nameinputfiled];
[over release];