iPad/iPhone 开发:displayViewController 正在横向渲染纵向
Posted
技术标签:
【中文标题】iPad/iPhone 开发:displayViewController 正在横向渲染纵向【英文标题】:iPad/iPhone Dev: displayViewController Is Rendering Portrait in Landscape Orientation 【发布时间】:2010-06-06 22:19:06 【问题描述】:以下代码有效,但我的方向是横向的,视图以纵向显示。有什么想法吗?
-(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];
提前致谢!
【问题讨论】:
【参考方案1】:我认为这可能会解决您的问题
http://aralbalkan.com/2334
【讨论】:
以上是关于iPad/iPhone 开发:displayViewController 正在横向渲染纵向的主要内容,如果未能解决你的问题,请参考以下文章