0
私はこのようでした私は「のUserInfo」のuserinfo
を使用して火災method.Soにいくつかのデータを渡したい:
struct MyStruct* userinfo = malloc(sizeof(struct MyStruct));
userinfo->a = 1;
userinfo->b = 2;
NSTimer *myTimer = [NSTimer scheduledTimerWithInterval:0.05 target:self selector:@selector(myFireMethod:) userInfo:userinfo repeats:YES];
しかし、問題が起こった、iOSアプリがクラッシュしましたscheduledTimerWithInterval
メソッドを実行しているとき。
「userinfo」に間違っている必要があります。おそらく間違いはありますか?
ああ、ありがとうございました! – Rafer