0

我已经编写了一些用于显示下拉列表的代码,但是当我使用时,下面的代码不起作用:

- (BOOL)shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)interfaceOrientation{}

在 iPad 上。

有谁知道我可以如何解决这个问题?

我的代码:

- (void)dropDownCellSelected:(NSInteger)returnIndex{
    [button setTitle:[arrayData objectAtIndex:returnIndex] forState:UIControlStateNormal];
}   


- (BOOL)shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)interfaceOrientation
{
    // Return YES for supported orientations
    if (UIInterfaceOrientationIsLandscape(interfaceOrientation)){
        return YES;
    } else {
        return NO;
    }
}

帮我解决 iPhone 上的问题。

4

1 回答 1

1
[[UIApplication sharedApplication] setStatusBarOrientation:UIInterfaceOrientationLandscapeLeft animated:NO];
于 2012-06-20T09:45:53.587 回答