私はiOS初心者です。次のようなセレクターメソッドがあります-
- (void) fooFirstInput:(NSString*) first secondInput:(NSString*) second
{
}
私はこのようなものを実装しようとしています -
[self performSelector:@selector(fooFirstInput:secondInput:) withObject:@"first" withObject:@"second" afterDelay:15.0];
しかし、それは私に言うエラーを与えます-
Instance method -performSelector:withObject:withObject:afterDelay: not found
私が欠けているものに関するアイデアはありますか?