私は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
私が欠けているものに関するアイデアはありますか?