Jestem nowicjuszem na iOS. Mam następującą metodę selektora -
- (void) fooFirstInput:(NSString*) first secondInput:(NSString*) second
{
}
Próbuję zaimplementować coś takiego -
[self performSelector:@selector(fooFirstInput:secondInput:) withObject:@"first" withObject:@"second" afterDelay:15.0];
Ale to daje mi błąd, mówiąc:
Instance method -performSelector:withObject:withObject:afterDelay: not found
Jakieś pomysły, czego mi brakuje?