私のアプリでは、画面をスクロールするアニメーションがあります。私の問題は、 を使用し@selector
てアニメーションを呼び出すと、スレッドがクラッシュすることです。
同じものを使用@selector
してページ内の別の関数を呼び出すと、完全に機能しますが、この関数を呼び出すと機能しないようです。viewDidLoad
コードをセクションに入れると、正常に動作します。
unrecognized selector sent to instance
Stackoverflowでこれらのリンクをかなり試しましたが、何も役に立ちませんでした。また- (void)imageSpawn
、 - (void) imageSpawn:(id)sender withEvent:(UIEvent *)
イベントの代わりにセレクターを(imageSpawn)
`(ImageSpawn:) の代わりに変更してみましたが、まだうまくいきません....
- (void)viewDidLoad {
[self performSelector:@selector(imageSpawn:) withObject:nil afterDelay:3];
}
- (void) imageSpawn:(id) sender withEvent:(UIEvent *) event
{
UIImage* image = [UIImage imageNamed:@"ae"];
UIImageView *rocket = [[UIImageView alloc] initWithImage:image];
rocket.frame = CGRectMake(-25, 200, 25, 40);
[UIView animateWithDuration:5 animations:^(){rocket.frame=CGRectMake(345, 200, 25, 40);} completion:^(BOOL finished){if (finished){
//trigger an event.
UIAlertView *alert = [[UIAlertView alloc] initWithTitle:@"Tapped row!"
message:[NSString stringWithFormat:@"Shot"]
delegate:nil
cancelButtonTitle:@"Yes, I did!"
otherButtonTitles:nil];
[alert show];
}
}];
[myScrollView addSubview:rocket];
}
2013-03-28 10:14:31.661 shotplacementgiude001[16897:c07] -[SelectedCellViewController imageSpawn:]: unrecognized selector sent to instance 0xa159480
2013-03-28 10:14:31.663 shotplacementgiude001[16897:c07] *** Terminating app due to uncaught exception 'NSInvalidArgumentException', reason: '-[SelectedCellViewController imageSpawn:]: unrecognized selector sent to instance 0xa159480'
*** First throw call stack:
(0x16b4012 0x13c1e7e 0x173f4bd 0x16a3bbc 0x16a394e 0xdbf5b3 0x1673376 0x1672e06 0x165aa82 0x1659f44 0x1659e1b 0x27157e3 0x2715668 0x305ffc 0x2c3d 0x2b65 0x1) libc++abi.dylib: terminate called throwing an exception
(lldb)