我从来就没有在地毯中玩.,但我有一个完全有效的手法,假设用户正在看清地毯。 我愿以轮流电话为主,为了做到这一点,我非常简单:
我在我的主计长面前加上以下守则:
-(void)willRotateToInterfaceOrientation: (UIInterfaceOrientation)orientation duration:(NSTimeInterval)duration {
NSLog(@"WILL ROTATE TO INTERFACE ORIENTATION: %@",orientation);
if ((orientation == UIInterfaceOrientationLandscapeLeft) || (orientation == UIInterfaceOrientationLandscapeRight))
tableView.frame = CGRectMake(0, 0, 480, 320);
else
tableView.frame = CGRectMake(0,73,320,390);
}
和I m 发现BAD_ACCESS错误。 我根本看不到观点的负荷。 因此,问题何在,我如何妥善执行“意愿”方法,以便在电话轮换时,我能够把我的所有部分转成一体?