I want to perform the method which has a few arguments. Is there any easy way to pass a few of them at once? Something like
[self performSelector:@selector(methodName) withObject:firstParameter withObject:secondParameter afterDelay:0.1];
I've found a way here SEL performSelector and arguments, but it seems a little bit complicated and I guess there should be some easier way to make it done. But probably it just looks like that to me because of being newbie in Objective C :)
I'll appreciate your help a lot!