-(void) callme {
//statements
here I call another method "callmeagain"
}
}
但它不起作用。还有其他办法吗?
答案 0 :(得分:5)
要调用ObjC方法,请使用语法[foo methodName:param andAlso:param2 …]
在您的情况下,请尝试
-(void)callme {
[self callmeagain];
}
答案 1 :(得分:1)
另一种方法可能是
[self performSelector:@selector(callmeagain)];
这与Kenny的建议基本相同