我有一个NSTimer
调用移动一些UIImageView
's 的函数,当我使 's 无效时,NSTimer
我认为UIImageView
's 会停在它们的位置,但它们重置为StoryBoard
.
有什么我做错或不包括的事情,还是这是一个谜?
编辑 - 添加了一些代码
。H
NSTimer *updater;
.m
updater = [NSTimer scheduledTimerWithTimeInterval:1.0f/32.0f target:self selector:@selector(gameEngine) userInfo:nil repeats:YES];
-(void)gameEngine {
//move some images around
}
-(IBAction)action {
[updater invalidate];
}