我只想在几秒钟后进行一次简单的操作。我写了这个:
[NSTimer scheduledWimerWithTimeInterval:seconds
target:self
selector:@selector(someMethod:)
userInfo:nil
repeats:NO];
并且不关心返回值。
可以吗?被忽略的 NSTimer 对象会在someMethod:
完成操作后被释放和释放吗?