removeItemAtPath完成

时间:2013-08-29 20:42:36

标签: ios cocoa-touch

我正在以这种方式删除路径中的文件:

UIPanGestureRecognizer *gesture = (UIPanGestureRecognizer *)sender;
UIButton *button = (UIButton *)gesture.view;
[[(UIPanGestureRecognizer*)sender view] removeFromSuperview];
NSArray *paths = NSSearchPathForDirectoriesInDomains(NSDocumentDirectory, NSUserDomainMask, YES);
NSString *documentsDirectoryPath = [paths objectAtIndex:0];
NSString *myFilePath = [documentsDirectoryPath stringByAppendingPathComponent:[NSString stringWithFormat:@"%@", button.titleLabel.text]];
NSFileManager *fileManager = [NSFileManager defaultManager];
[fileManager removeItemAtPath:myFilePath error:NULL];
[self ReloadBusinessCards];

然后我调用方法[self ReloadBusinessCards];它重新加载文件。问题是删除文件需要很长时间(0.5秒)并且之前调用该方法。我想阻止这一点,但我不认为设置1秒的NSTimer是个好主意。例如,因为如果应用程序运行较慢,则可以在更多文件后删除该文件。是否有方法在删除文件时通知您?

2 个答案:

答案 0 :(得分:0)

if()语句中包装delete方法。 -removeItemAtPath:返回BOOL,以便您可以检查是否为“是”。

if ([fileManager removeItemAtPath:myFilePath error:NULL]) {
    [self ReloadBusinessCards];
}

答案 1 :(得分:0)

您可以使用

等待操作完成

[receiver performSelectorOnMainThread:@selector(sel) withObject:nil waitUntilDone:NO]

或使用带有完成处理程序的GCD来验证擦除过程是否已实际完成