如何将我的代码更改为横向?

时间:2012-06-20 08:29:26

标签: iphone ipad ios5 screen-orientation

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

- (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上的问题。

1 个答案:

答案 0 :(得分:1)

[[UIApplication sharedApplication] setStatusBarOrientation:UIInterfaceOrientationLandscapeLeft animated:NO];