More than 5 years have passed since last update.
CCMenuItemFont
// version 2.0
CCMenuItemFont* menu = [CCMenuItemFont itemWithString:@"menu" target:self selector:@selector(onDo:)];
// version 0.9
CCMenuItemFont * menu = [CCMenuItemFont itemFromString:@"menu" target:self selector: @selector(onDo:)];
CCDirector
// version 2.0
[[CCDirector sharedDirector] addChildViewController:viewController];
// version 0.9
[[[CCDirector sharedDirector] openGLView] addSubview:viewController.view];
CCTouchDispatcher
// version 2.0
[[CCDirector sharedDirector] touchDispatcher];
// version 0.9
[CCTouchDispatcher sharedDispatcher];
ここも合わせて読む
Why not register and get more from Qiita?
- We will deliver articles that match you
By following users and tags, you can catch up information on technical fields that you are interested in as a whole
- you can read useful information later efficiently
By "stocking" the articles you like, you can search right away
Sign upLogin