小白问题,初始界面跟屏幕方向

为什么每次我进我做的程序的时候都会有Helloworld 的图片界面?
我明明在AppDelegate.cpp把scene改了
// create a scene. it’s an autorelease object
auto scene = WelcomeScene::create();

另外,我想让屏幕方向变成竖屏,我在RootViewController.mm里改了

  • (BOOL)shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)interfaceOrientation {
    return UIInterfaceOrientationIsPortrait( interfaceOrientation );
    }
    也没没有成功