I want to call a method thrice with different parameters and need to have some delay between calling them,inorder to this i want to use CCCallFuncND
,but i unable to implement it in my code, please help me do that by giving a simple example of how to call CCCallFuncND
.
My Code is :
this.runAction(CCCallFuncND.action(this, "shift_sec", "1"));
public void shift_sec(String v) {
System.out.println("Coming into this method. : "+v);
}