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 に答える