RayWenderlich의 캔디 크러시 따라 만들기를 SpriteKit에서 cocos2d v3로 포팅을 하고 있는데 UIGesture 부분이 나와서 삽질 아닌 삽질을 공유한다.
딱 한가지만 알아두면 된다. cocos2d에서 RootViewController(UIViewController)는 CCDirector이다.
- (void)showGameOver {
self.gameOverPanel.visible = YES;
self.myscene.userInteractionEnabled = NO;
self.tapGestureRecognizer = [[UITapGestureRecognizer alloc] initWithTarget:self action:@selector(hideGameOver)];
UIViewController *viewController = (UIViewController *)[CCDirector sharedDirector];
[viewController.view addGestureRecognizer:self.tapGestureRecognizer];
}
- (void)hideGameOver {
UIViewController *viewController = (UIViewController *)[CCDirector sharedDirector];
[viewController.view removeGestureRecognizer:self.tapGestureRecognizer];
self.tapGestureRecognizer = nil;
self.gameOverPanel.visible = NO;
self.myscene.userInteractionEnabled = YES;
[self beginGame];
}
'iDev > Cocos2D' 카테고리의 다른 글
Cocos2d v3.3 화면 방향 전환 (0) | 2014.10.04 |
---|---|
cocos2d v3에서 CCSprite의 image 변경하기 (0) | 2014.05.22 |
cocos2d v3에서 Implicit declaration of function 'ccDrawColor4B' is invalid in C99 해결 방법 (0) | 2014.03.24 |
cocos2d Apportable 사용하기 (손)연재 예정 (1) | 2014.03.22 |
GameController 사용시 화면 꺼짐 모드 방지 (0) | 2014.03.22 |