我正在尝试让一个应用程序在横向模式下工作,我已经快完成了,但由于某种原因,我 View 中的按钮无法正常工作(即,它们没有按下)。我正在使用一个 Root View Controller ,它按如下方式加载初始 View Controller :
- (void)viewDidLoad
{
[super viewDidLoad];
StartViewController *viewController = [[StartViewController alloc] initWithNibName"StartView" bundle:nil];
self.startViewController = viewController;
startViewController.delegate = self;
[viewController release];
[self.view addSubview:startViewController.view];
}
我还在我的 Info.plist 文件中设置了初始界面方向值,并在我的 Root View Controller 中覆盖了以下内容:
- (BOOL)shouldAutorotateToInterfaceOrientationUIInterfaceOrientation)interfaceOrientation
{
// Return YES for supported orientations
return((interfaceOrientation == UIInterfaceOrientationLandscapeRight) ||
(interfaceOrientation == UIInterfaceOrientationLandscapeLeft));
//return (interfaceOrientation == UIInterfaceOrientationPortrait);
}
View 加载正常并在横向模式下按应有的方式填满屏幕,但由于某种原因我无法按 View 上的任何按钮。
我确信这与我使用 Root View Controller 有关,因为在使用只有一个 View Controller 的应用程序之前,我已经设法让它正常工作。
有人可以帮我吗?
Best Answer-推荐答案 strong>
我觉得问题出在xib的某个地方。
例如。按钮放置在 UIView 上且调整大小不正确。因此在横向模式下按钮出现在 View 之外,并且触摸无法到达按钮。您可以检查它在所有父 View 中设置 clipSubviews - 如果我是对的,您将不会再看到该按钮。
关于iphone - UIViewController 横向模式按钮不工作,我们在Stack Overflow上找到一个类似的问题:
https://stackoverflow.com/questions/4820991/
|