私の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];