views:

73

answers:

2
-(void) callme {
//statements
here I call another method "callmeagain"
}

}

But it is not working. Is there another way to do it?

+5  A: 

To call an ObjC method, use the syntax [foo methodName:param andAlso:param2 …] In your case, try

-(void)callme {
  [self callmeagain];
}
KennyTM
+1  A: 

Another Method could be

[self performSelector:@selector(callmeagain)]; 

It is basically the same thing as Kenny's Suggestion

Erle