我想将我的游戏中心默认设置为横向模式,但没有成功。我尝试了一些课程,但没有结果...
#import "GKMatchmakerViewController-LandscapeOnly.h"
@implementation GKMatchmakerViewController (LandscapeOnly)
- (BOOL)shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)interfaceOrientation {
return ( UIInterfaceOrientationIsLandscape( interfaceOrientation ) );
}
@end
我的游戏也实现了这个类。
如果您有一些解决方案,请让我帮助。