iPad/iPhone 开发人员:displayViewController 正在横向渲染肖像

发布于 2024-09-04 10:32:09 字数 526 浏览 5 评论 0原文

以下代码有效,但我的方向是横向,视图以纵向来来去去。有什么想法吗?

-(void)displayFirstScreen
{
    UIViewController *displayViewController=[[UIViewController alloc] init];
    displayViewController.view = displaySplash;
    [self presentModalViewController:displayViewController animated:NO];
    [self performSelector:@selector(removeScreen) withObject:nil afterDelay:2.0];

    [displayViewController release];
}

-(void)removeScreen
{
    [[self modalViewController] dismissModalViewControllerAnimated:YES];
}

提前致谢!

The following code works but my orientation is landscape and the view comes and goes in portrait. Any ideas?

-(void)displayFirstScreen
{
    UIViewController *displayViewController=[[UIViewController alloc] init];
    displayViewController.view = displaySplash;
    [self presentModalViewController:displayViewController animated:NO];
    [self performSelector:@selector(removeScreen) withObject:nil afterDelay:2.0];

    [displayViewController release];
}

-(void)removeScreen
{
    [[self modalViewController] dismissModalViewControllerAnimated:YES];
}

Thanks in advance!

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

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

发布评论

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

评论(1

昨迟人 2024-09-11 10:32:09

我认为这可能会解决您的问题

http://aralbalkan.com/2334

I think this might address your problem

http://aralbalkan.com/2334

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