如何修改coco2d默认设备方向

-(NSUInteger)supportedInterfaceOrientations {
    NSLog(@"123");
    // iPhone only
    if( [[UIDevice currentDevice] userInterfaceIdiom] == UIUserInterfaceIdiomPhone )
        //return UIInterfaceOrientationMaskLandscape; //默认设备方向为横向
        return UIInterfaceOrientationMaskPortrait; //在这里修改为纵向(修改之前要先设置plist文件)

    // iPad only
    return UIInterfaceOrientationMaskPortrait;
    //return UIInterfaceOrientationMaskLandscape;
}


修改plist文件:



你可能感兴趣的:(如何修改coco2d默认设备方向)