IPAD修改成横屏模式运行app,要改的东西真多。

1.info.plis里要加“Supported interface orientations"一项,内容设成“Landscape"

 

2.controller的代码里shouldAutorotateToInterfaceOrientation函数要写成:

- (BOOL)shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)toInterfaceOrientation{ return (toInterfaceOrientation == UIInterfaceOrientationLandscapeRight); }  

3. controller所对应的xib里view的属性也要修改!!!

这点我瞎折腾了半天,才发现的。

属性栏里Orientation也要设成landscape!!!

你可能感兴趣的:(ipad,interface)