标签: xcode5
NSTimer * valor = [NSTimer scheduledTimerWithTimeInterval:1.0 target:self selector:@selector(update)userInfo:nil repeats:YES];
答案 0 :(得分:0)
您需要在其他地方使用valor。由于它是一个计时器,你可能想以某种方式保留它,比如为它设置一个属性:
valor
self.timer = valor;