替换文档目录中的图像,然后在tableview中显示更改的图像

时间:2013-04-12 07:55:51

标签: ios nsdocumentdirectory

我使用以下代码替换文档目录中的图像

 NSLog(@"%@",_selectedimage);
        if([self string:pathOfDocDic containsText:@"Test_"]){

            NSLog(@"_selectedName%@",_selectedimage);
            NSData* data = UIImagePNGRepresentation(selectionView1.image);
            [data writeToFile:_selectedName atomically:YES]; 

          // no need to change database cus path going be same             

我只是通过放置具有相同目录路径和相同名称的新图像来更改图像。因此,在文档目录

中更改图像

现在的问题是,当我回到表视图图像时,文档目录图像中的图像显示与之前相同,但是如果我关闭应用程序并再次启动则不会在表视图中更改,我怎样才能解决此问题?

0 个答案:

没有答案