为什么这段代码会导致编译器报告" Unused Variable"在Xcode"

时间:2014-09-07 04:49:47

标签: xcode5

NSTimer * valor = [NSTimer scheduledTimerWithTimeInterval:1.0 target:self selector:@selector(update)userInfo:nil repeats:YES];

1 个答案:

答案 0 :(得分:0)

您需要在其他地方使用valor。由于它是一个计时器,你可能想以某种方式保留它,比如为它设置一个属性:

self.timer = valor;