我在uiview子类中使用以下方法:
[self performSelector:@selector(timeout) withObject:nil afterDelay:20];
按预期在20秒后调用该方法.
在另一种方法中,我尝试使用以下代码取消执行请求:
[NSObject cancelPrevIoUsPerformRequestsWithTarget:self selector:@selector(timeout) object:nil];
我也试过了
[NSRunLoop cancelPrevIoUsPerformRequestsWithTarget:self selector:@selector(timeout) object:nil];
这两个消息都没有带来预期的结果,仍然会调用超时方法.
任何人都能解释我的错误以及如何以正确的方式做到这一点?
来自奥地利的欢呼声
马丁