为什么我的 uialeartview 旋转时总是改变位置

发布于 2024-12-06 20:07:35 字数 856 浏览 0 评论 0原文

我的 uialartview 代码。 当它以横向或纵向显示时可以,但是当 将纵向更改为横向或将横向更改为纵向,

它总是会向上移动,而不是像以前那样在窗口中心移动,

我如何在旋转时使其成为窗口中心。

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

My uialeartview code.
when it show in Landscape or Portrait it ok but when
change Portrait to Landscape or Landscape to Portrait

it will always move up not in center of window like before

how can i make it it center of window when rotage.

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

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

枕梦 2024-12-13 20:07:35

您不必将 UIAlertView 添加为子视图,只需使用 [over show] 并且之后不要忘记释放它。

You don't have to add the UIAlertView as a subView, just use [over show] and don't forget to release it afterwards.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文