删除NSDocumentDirectory中的项目

时间:2012-06-14 05:37:24

标签: iphone ios xcode

我正在使用HSImageSidebarView,当点按图片时,如果要删除图片,则会弹出AlertView。 这就是它删除侧边栏中显示的图像的方式:

-(void)sidebar:(HSImageSidebarView *)sidebar didTapImageAtIndex:(NSUInteger)anIndex {
    NSLog(@"Touched image at index: %u", anIndex);
    if (sidebar.selectedIndex == anIndex) {
        UIActionSheet *sheet = [[UIActionSheet alloc] initWithTitle:@"Delete image?"
                                                           delegate:self
                                                  cancelButtonTitle:@"Cancel"
                                             destructiveButtonTitle:@"Delete" otherButtonTitles:nil];

        self.actionSheetBlock = ^(NSUInteger selectedIndex) {
            if (selectedIndex == sheet.destructiveButtonIndex) {
                [sidebar deleteRowAtIndex:anIndex];
                self.actionSheetBlock = nil;
            }
        };

        [sheet showFromRect:[sidebar frameOfImageAtIndex:anIndex]
                     inView:sidebar
                   animated:YES];

    }
}
- (void)sidebar:(HSImageSidebarView *)sidebar didRemoveImageAtIndex:(NSUInteger)anIndex {
    NSLog(@"Image at index %d removed", anIndex);
    [images removeObjectAtIndex:anIndex];
}

顺便说一句,我的图片来自NSDocumentDirectory,但我想要添加的是在侧边栏中点按图片时,它还会删除NSDocumentDirectory中的图片。

我知道这是如何删除NSDocumentDirectory中的图片,但我不知道如何在上面的代码中使用它。

- (void)removeImage:(NSString*)fileName {
    NSFileManager *fileManager = [NSFileManager defaultManager];
    NSArray *paths = NSSearchPathForDirectoriesInDomains(NSDocumentDirectory, NSUserDomainMask, YES);
    NSString *documentsDirectory = [paths objectAtIndex:0];
    NSString *fullPath = [documentsDirectory stringByAppendingPathComponent:[NSString stringWithFormat:@"%@.png", fileName]];
    [fileManager removeItemAtPath: fullPath error:NULL];
    NSLog(@"image removed");
}

2 个答案:

答案 0 :(得分:1)

我希望这可以解决它:

 - (void)sidebar:(HSImageSidebarView *)sidebar didRemoveImageAtIndex:(NSUInteger)anIndex {
    NSLog(@"Image at index %d removed", anIndex);

//remove the image from Document dir
[self removeImage:[images objectAtIndex:anIndex]];

//then remove the image from the Array.
[images removeObjectAtIndex:anIndex];

}

{{1}}

答案 1 :(得分:0)

您需要保留文件名列表以及图像。或者,在您的情况下,我在您的上一个问题中看到您的文件名是可预测的。因此,在上面的示例中,只需将文档目录/ 图像+索引 .png替换为fullPath。如果不是这种情况,则需要在读取文件时跟踪文件名,并将它们存储在具有相同索引的另一个数组中。