I have a CClayer
class, called GridLayer I add the gesture recognizers (Pan ,Pinch and Rotate) to the view and it works fine, but if i add a CCMenuItem
is paste to the view so is affected by the rotate and pinch gestures , my question is who implement a independent CCMenuitem
from the View Size ,Scale and position.
//Adding Rotation Recognicer onEnter Method
self.rotationRecognicer =[[[UIRotationGestureRecognizer alloc]initWithTarget:self
action:@selector(rotate:)]autorelease];
[[[CCDirector sharedDirector] view] addGestureRecognizer:_rotationRecognicer];
//Adding CCMenuItem On Init Method
CCMenuItem *starMenuItem = [CCMenuItemImage
itemWithNormalImage:@"ButtonStar.png"
selectedImage:@"ButtonStarSel.png"
target:self
selector:@selector(starButtonTapped:)];
starMenuItem.position = ccp(60, 60);
CCMenu *starMenu = [CCMenu menuWithItems:starMenuItem, nil];
starMenu.position = CGPointZero;
[self addChild:starMenu];
//Rotation Method
- (void)rotate:(UIRotationGestureRecognizer *)gestureRecognizer
{
[self adjustAnchorPointForGestureRecognizer:gestureRecognizer];
if ([gestureRecognizer state] == UIGestureRecognizerStateBegan || [gestureRecognizer state] == UIGestureRecognizerStateChanged) {
[gestureRecognizer view].transform = CGAffineTransformRotate([[gestureRecognizer view] transform], [gestureRecognizer rotation]);
[gestureRecognizer setRotation:0];
}
}
Your GUI controls need to exist on their own independent layer.
To accomplish this, you should add two separate layers to your CCScene container, or whatever is the parent node of your layer. This may look something like the following
The tricky part is getting them to communicate without creating a tight coupling between the classes. It is likely you will want the action layer (your grid layer) to be informed when a control is interacted with on your GUI layer. This is where you will want to implement either the Command Design Pattern and or use Objective-C protocols with a delegate.
If you decide to use a protocol and delegate, it may look like the following
Create a delegate member data variable in the UILayer class
In your action layer (Grid Layer), which initializes with a pointer to the UILayer, assign itself as the delegate for the UILayer.
Lastly, be sure to implement the protocol methods in the Action Layer (grid layer) class and move the gesture recognition to this layer. My guess is that you only want the action layer to be manipulated when certain gestures occur, not the view which houses your scene and layers. Add logic to capture the gestures in your Action Layer and only manipulate this layer's appearance instead of the entire view.