2014-02-18 126 views
0

這是我的Cocos2d 2.0調用。什麼是替代這個在cocos2d 3.0用於Cocos2d 3.0的AppController替代方案

AppController *app = (AppController*) [[UIApplication sharedApplication] delegate]; 

    [[app navController] presentModalViewController:achivementViewController animated:YES]; 

回答

1

在cocos2d 3.0,使用CCAppDelegate代替的AppController:

CCAppDelegate *app = (CCAppDelegate*) [[UIApplication sharedApplication] delegate]; 

[[app navController] presentModalViewController:achivementViewController animated:YES]; 
0

AppController中再次更名爲AppDelegate中:

#import "AppDelegate.h" 

AppDelegate * app = (((AppDelegate*) [UIApplication sharedApplication].delegate)); 

[[app navController] presentModalViewController:achivementViewController animated:YES];