呼び出しで NSTimer を使用しようとしていますが、2 つの問題があります。Selector に Arguments を渡す方法 (Xcode crys) を取得する方法、または常にクラッシュするため、一般的に動作させる方法がわかりません。
X = [NSTimer scheduledTimerWithTimeInterval:(1.0) invocation:(invoX) repeats:(YES);
with this:
SEL selX = @selector(methodY); //like i actually do to avoid errors
SEL selX = @selector(Y:(argument)); //like i want it to be
NSMethodSignature *sigX = [self methodSignatureForSelector:selX];
NSInvocation *invoX = [NSInvocation invocationWithMethodSignature:sigX];
[invoX setTarget:self];
[invoX setSelector:selX];
しかし、私はそれを機能させません(実行中の例外)誰かが何が悪いのか知っていますか?