我使用NSTimer
运行的动画(现在只是把它myMethod
)。 然而,它导致飞机坠毁。
下面的代码:
@implementation SecondViewController
// Implement viewDidLoad to do additional setup after loading the view, typically from a nib.
- (void) myMethod
{
NSLog(@"Mark Timer Fire");
}
- (void)viewDidLoad
{
[super viewDidLoad];
NSLog(@"We've loaded scan");
[NSTimer scheduledTimerWithTimeInterval:2.0
target:self
selector:@selector(myMethod:)
userInfo:nil
repeats:YES];
animationTimer = [NSTimer scheduledTimerWithTimeInterval: 1.0 target:self selector:@selector(myMethod:) userInfo:nil repeats: YES];
}
而这里的碰撞时输出
- [SecondViewController myMethod的:]:无法识别的选择发送到实例0x4b2ca40 2012-06-21 12:19:53.297测谎[38912:207] *终止应用程序由于未捕获的异常'NSInvalidArgumentException',原因:“ - [SecondViewController myMethod的:] :无法识别的选择发送到实例0x4b2ca40'
所以我在做什么错在这里?