I want to give a parameter with an NSTimer. timertocallguest is an NSTimer made in the .h;
timertocallguest=[NSTimer scheduledTimerWithTimeInterval:1 target:self selector:@selector(gettheguestyouaskedforTOTURNON) userInfo:nil repeats:YES];
How can i pass parameters with the selector? At some selectors i could add withObject behind it to give parameters with it.. but i cant do it here, i just want to give an NSIndexPath with the function that i call.
Could annyone help me with this? Ty already,