問候!!NSTimer選擇器問題
我已經例如以下功能:
-(void) doMainBrick
{
NSTimer * timer = [NSTimer scheduledTimerWithTimeInterval:0.1
target:self
selector:@selector(dropBrick:)
userInfo:nil
repeats:YES];
}
-(void) dropBrick:(NSTimer*) timex
{
//deal something
[self SwitchBrick];
}
我不知道是否有可能,如果dropBrick
功能做多scheduledTimerWithTimeInterval
(我上面的樣本中,它是0.1), 另一個呼叫dropBrick
發生再次(每0.1秒火力下降,重複:是)? 還是不管,NSTimer
會等到最後dropBrick結束然後解僱?