我已经编写了一些用于显示下拉列表的代码,但是当我使用时,下面的代码无效:
- (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上的问题。
答案 0 :(得分:1)
[[UIApplication sharedApplication] setStatusBarOrientation:UIInterfaceOrientationLandscapeLeft animated:NO];