mirror of https://github.com/axmolengine/axmol.git
issue #658, rename _PROJECTNAMEASIDENTIFIER__AppController.* to AppController.* in xcode3 template. Left cases: untested in xcode3; have no RootViewController in xcode3 templates.
This commit is contained in:
parent
709e93931a
commit
46808db7fd
|
@ -1 +1 @@
|
|||
fd240a3cf678487c690dd028abcba1a5ff1a3c6c
|
||||
8a8e4250f3cfe00ec9909ad8b1cedfcccb4acf64
|
|
@ -6,7 +6,7 @@
|
|||
// Copyright ___ORGANIZATIONNAME___ ___YEAR___. All rights reserved.
|
||||
//
|
||||
|
||||
@interface ___PROJECTNAMEASIDENTIFIER___AppController : NSObject <UIAccelerometerDelegate, UIAlertViewDelegate, UITextFieldDelegate,UIApplicationDelegate> {
|
||||
@interface AppController : NSObject <UIAccelerometerDelegate, UIAlertViewDelegate, UITextFieldDelegate,UIApplicationDelegate> {
|
||||
UIWindow *window;
|
||||
}
|
||||
|
|
@ -6,12 +6,12 @@
|
|||
// Copyright ___ORGANIZATIONNAME___ ___YEAR___. All rights reserved.
|
||||
//
|
||||
#import <UIKit/UIKit.h>
|
||||
#import "___PROJECTNAMEASIDENTIFIER___AppController.h"
|
||||
#import "AppController.h"
|
||||
#import "cocos2d.h"
|
||||
#import "EAGLView.h"
|
||||
#import "___PROJECTNAMEASIDENTIFIER___AppDelegate.h"
|
||||
#import "AppDelegate.h"
|
||||
|
||||
@implementation ___PROJECTNAMEASIDENTIFIER___AppController
|
||||
@implementation AppController
|
||||
|
||||
#pragma mark -
|
||||
#pragma mark Application lifecycle
|
|
@ -10,7 +10,7 @@
|
|||
|
||||
int main(int argc, char *argv[]) {
|
||||
NSAutoreleasePool *pool = [NSAutoreleasePool new];
|
||||
int retVal = UIApplicationMain(argc, argv, nil, @"___PROJECTNAMEASIDENTIFIER___AppController");
|
||||
int retVal = UIApplicationMain(argc, argv, nil, @"AppController");
|
||||
[pool release];
|
||||
return retVal;
|
||||
}
|
||||
|
|
|
@ -1 +1 @@
|
|||
e11ed677bce9b5ea1798fdbfff120ddba0182dd9
|
||||
66024535e3177e78e142dc5f54f603198c2c7550
|
|
@ -6,7 +6,7 @@
|
|||
// Copyright ___ORGANIZATIONNAME___ ___YEAR___. All rights reserved.
|
||||
//
|
||||
|
||||
@interface ___PROJECTNAMEASIDENTIFIER___AppController : NSObject <UIAccelerometerDelegate, UIAlertViewDelegate, UITextFieldDelegate,UIApplicationDelegate> {
|
||||
@interface AppController : NSObject <UIAccelerometerDelegate, UIAlertViewDelegate, UITextFieldDelegate,UIApplicationDelegate> {
|
||||
UIWindow *window;
|
||||
}
|
||||
|
|
@ -6,12 +6,12 @@
|
|||
// Copyright ___ORGANIZATIONNAME___ ___YEAR___. All rights reserved.
|
||||
//
|
||||
#import <UIKit/UIKit.h>
|
||||
#import "___PROJECTNAMEASIDENTIFIER___AppController.h"
|
||||
#import "AppController.h"
|
||||
#import "cocos2d.h"
|
||||
#import "EAGLView.h"
|
||||
#import "___PROJECTNAMEASIDENTIFIER___AppDelegate.h"
|
||||
#import "AppDelegate.h"
|
||||
|
||||
@implementation ___PROJECTNAMEASIDENTIFIER___AppController
|
||||
@implementation AppController
|
||||
|
||||
#pragma mark -
|
||||
#pragma mark Application lifecycle
|
|
@ -10,7 +10,7 @@
|
|||
|
||||
int main(int argc, char *argv[]) {
|
||||
NSAutoreleasePool *pool = [NSAutoreleasePool new];
|
||||
int retVal = UIApplicationMain(argc, argv, nil, @"___PROJECTNAMEASIDENTIFIER___AppController");
|
||||
int retVal = UIApplicationMain(argc, argv, nil, @"AppController");
|
||||
[pool release];
|
||||
return retVal;
|
||||
}
|
||||
|
|
|
@ -1 +1 @@
|
|||
bd9603372ffc87e1e3fc5cb80030bdc28112f961
|
||||
a6ca12b0bdd905d2b0dd4cad0ca30ea437326572
|
|
@ -6,7 +6,7 @@
|
|||
// Copyright ___ORGANIZATIONNAME___ ___YEAR___. All rights reserved.
|
||||
//
|
||||
|
||||
@interface ___PROJECTNAMEASIDENTIFIER___AppController : NSObject <UIAccelerometerDelegate, UIAlertViewDelegate, UITextFieldDelegate,UIApplicationDelegate> {
|
||||
@interface AppController : NSObject <UIAccelerometerDelegate, UIAlertViewDelegate, UITextFieldDelegate,UIApplicationDelegate> {
|
||||
UIWindow *window;
|
||||
}
|
||||
|
|
@ -6,12 +6,12 @@
|
|||
// Copyright ___ORGANIZATIONNAME___ ___YEAR___. All rights reserved.
|
||||
//
|
||||
#import <UIKit/UIKit.h>
|
||||
#import "___PROJECTNAMEASIDENTIFIER___AppController.h"
|
||||
#import "AppController.h"
|
||||
#import "cocos2d.h"
|
||||
#import "EAGLView.h"
|
||||
#import "___PROJECTNAMEASIDENTIFIER___AppDelegate.h"
|
||||
#import "AppDelegate.h"
|
||||
|
||||
@implementation ___PROJECTNAMEASIDENTIFIER___AppController
|
||||
@implementation AppController
|
||||
|
||||
#pragma mark -
|
||||
#pragma mark Application lifecycle
|
|
@ -10,7 +10,7 @@
|
|||
|
||||
int main(int argc, char *argv[]) {
|
||||
NSAutoreleasePool *pool = [NSAutoreleasePool new];
|
||||
int retVal = UIApplicationMain(argc, argv, nil, @"___PROJECTNAMEASIDENTIFIER___AppController");
|
||||
int retVal = UIApplicationMain(argc, argv, nil, @"AppController");
|
||||
[pool release];
|
||||
return retVal;
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue