-(void) callme { //statements here I call another method "callmeagain" }
}
But it does not work. Is there any other way to do this?
To call the ObjC method, use the syntax [foo methodName:param andAlso:param2 …]In your case, try
[foo methodName:param andAlso:param2 …]
-(void)callme { [self callmeagain]; }
Another method may be
[self performSelector:@selector(callmeagain)];
This is basically the same as Kenny Suggestion.