タグ付けされた質問 「performselector」

10
iOS-複数の引数とafterDelayを使用してperformSelectorを実装する方法
私は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 私が欠けているものに関するアイデアはありますか?
弊社のサイトを使用することにより、あなたは弊社のクッキーポリシーおよびプライバシーポリシーを読み、理解したものとみなされます。
Licensed under cc by-sa 3.0 with attribution required.