In my h file I have
+(CCRenderTexture*) createStroke: (CCLabelTTF*) label
size:(float)size
color:(ccColor3B)cor;
In my m file I implemented this method and use it like
CCRenderTexture* stroke = [self createStroke:pause size:3 color:ccBLACK];
But it gives me a warning "method not found". Why?