Quote:
Originally Posted by BrianSlick
Hrm, not seeing anything in the docs suggesting it's possible.
You could make an extra method - the timer would call this one instead - that could choose between the two other methods.
|
so like make somethng like this?
-(void)move {
if (bool == true) {
bool = false;
//do the stuff for first
else {
bool = false;
//do stuff for second
}
actually, i think that'll work, thanks