NSTimer Xcode警告

时间:2011-05-27 15:13:15

标签: iphone xcode nstimer compiler-warnings

我有一个NSTimer我用scheduledTimerWithTimeInterval:初始化,间隔很短(.1秒),没有重复,然后再也不会再使用它,因为它使自身无效,因此会释放其保留目标。 Xcode警告它是一个未使用的变量,我很好奇是否有一种明智的方法来摆脱警告(黄色让我的眼球感到不安!)

感谢。

2 个答案:

答案 0 :(得分:23)

如果您不再使用它,请不要将其保存在变量中。

[NSTimer scheduledTimerWithTimeInterval:0.4 target:self selector:@selector(timer:) userInfo:nil repeats:NO];

将完美无缺

答案 1 :(得分:2)

如果您不打算使用返回值,请不要将结果分配给任何内容。

[NSTimer scheduledTimerWithTimeInterval:...];