0

我有一个 sqlite 数据库,我可以在其中存储图像和数据,然后将其显示在ViewController编辑中。

在我的数据库中存储路径没有问题。

当我完成使用相机或照片胶卷时,我遇到了一些麻烦,我将以下代码与UIImagePickerController. UIPickerController 类将图片保存到目录,save 类保存图片路径但重命名。

但是最大的麻烦在于我使用类似的代码发送到我的文件,我将我的东西保存在我的数据库中。

这段代码的作用是因为它仅在我推送 save 后执行,它是否会从我第一次结束时重命名文件路径,UIImagePickerController这意味着我将错误的图像路径存储到数据库中,它显示在上一个条目中。

因此,在我使用相机或照片胶卷后,我的 NSLOG 中会显示以下内容:

这是在我使用时使用UIImagePickerController的(这是我要放入数据库的路径)

2013-06-06 17:50:48.019 shotplacementguide001[7235:907] photo_1.png - - /var/mobile/Applications/EE759F67-DA8F-4232-BE4F-35D16D047D24/Documents/photo_1.png

这是为了当我按下保存时:

2013-06-06 17:50:53.827 shotplacementguide001[7235:907] photo_2.png - - /var/mobile/Applications/EE759F67-DA8F-4232-BE4F-35D16D047D24/Documents/photo_2.png

这是我的代码UIImagePickerController

 -(void)imagePickerController:(UIImagePickerController *)picker
didFinishPickingMediaWithInfo:(NSDictionary *)info
{
NSArray *paths = NSSearchPathForDirectoriesInDomains(NSDocumentDirectory, NSUserDomainMask, YES);
NSString *documentsDirectory = [paths objectAtIndex:0];
NSError *error = nil;
NSArray *dirContents = [[NSFileManager defaultManager] contentsOfDirectoryAtPath:documentsDirectory error:&error];
NSString *fileName = [NSString stringWithFormat:@"photo_%i.png", [dirContents count]];
NSString *imagePath = [documentsDirectory stringByAppendingPathComponent:fileName];
// self.presentImageFileName = [NSString stringWithFormat:fileName];
self.presentImageFileName = [NSString stringWithFormat:@"%@", fileName];
NSLog(@"%@ - - %@", self.presentImageFileName,imagePath );


// Then save the image to the Documents directory
NSString *mediaType1 = [info objectForKey:UIImagePickerControllerMediaType];
if ([mediaType1 isEqualToString:@"public.image"]){
    UIImage *editedImage = [info objectForKey:UIImagePickerControllerOriginalImage];
    NSData *webData = UIImagePNGRepresentation(editedImage);
    [webData writeToFile:imagePath atomically:YES];
}

NSString *mediaType = info[UIImagePickerControllerMediaType];

[self dismissViewControllerAnimated:YES completion:nil];

if ([mediaType isEqualToString:(NSString *)kUTTypeImage]) {
    UIImage *image = info[UIImagePickerControllerOriginalImage];

    animalEditImageView.image = image;
    if (_newMedia)
        UIImageWriteToSavedPhotosAlbum(image,
                                       self,
                                       @selector(image:finishedSavingWithError:contextInfo:),
                                       nil);
}
else if ([mediaType isEqualToString:(NSString *)kUTTypeMovie])
{
    // Code here to support video if enabled
}
}

当我按下保存时:

-(IBAction) done:(id) sender
{
Customer *customer = [[Customer alloc] init];
    customer.dateTimeZone = self.dateTimeTextField.text;
    customer.species = self.speciesTextField.text;
    customer.gender = self.genderTextField.text;
    customer.location_name = self.locationTextField.text;
    customer.latitude = self.speciesTextField.text;
    customer.longitude = self.speciesTextField.text;
    customer.firearm = self.firearmTextField.text;
    customer.comments = self.commentsTextField.text;

    // Capture the file name of the image
    NSArray *paths = NSSearchPathForDirectoriesInDomains(NSDocumentDirectory, NSUserDomainMask, YES);
    NSString *documentsDirectory = [paths objectAtIndex:0];
    NSString *fileName = addCustomerFileName;
    self.customerToEdit.imagePath = [documentsDirectory stringByAppendingPathComponent:fileName];
    // self.presentImageFileName = [NSString stringWithFormat:fileName];
    self.presentImageFileName = [NSString stringWithFormat:@"%@", fileName];
    NSLog(@"%@ - - %@", self.presentImageFileName,self.customerToEdit.imagePath );
}

如何更改上面的代码以仅采用我保存的图像路径-(void)imagePickerController:(UIImagePickerController *)picker而不重命名它,而不像我所做的那样实际将重命名的图像保存到目录中,这是错误的。

因为我保存了错误的图片路径所以会显示在之前的条目中EditViewController

UIPickerController由于以下原因,我在我拥有的类中使用 customer.imagePath 并在我的保存类中使用 info时遇到问题:

 -(void)imagePickerController:(UIImagePickerController *)picker
didFinishPickingMediaWithInfo:(NSDictionary *)info
4

2 回答 2

1

我终于编写了一个解决方案,它只从 UIPhotoPickerController 获取文件路径并存储它而不是重命名它。

 // Capture the file name of the image
    NSArray *paths = NSSearchPathForDirectoriesInDomains(NSDocumentDirectory, NSUserDomainMask, YES);
    NSString *documentsDirectory = [paths objectAtIndex:0];
    NSString *fileName = addCustomerFileName;
    self.customerToEdit.imagePath = [documentsDirectory stringByAppendingPathComponent:fileName];
    // self.presentImageFileName = [NSString stringWithFormat:fileName];
    self.presentImageFileName = [NSString stringWithFormat:@"%@", fileName];
    NSLog(@"%@ - - %@", self.presentImageFileName,self.customerToEdit.imagePath );
于 2013-06-10T16:10:20.383 回答
0

您的问题是由“命名”算法引起的,那里没有重命名。因此,首先,您获取文件文件夹中的文件计数,您的日志似乎是1第一次调用,您命名图像image_1.jpg并将其保存到documents目录中,之后您只需在2文件夹中有文件,documents因此当您再次尝试获取您的文件从文档文件夹中计数的图像文件路径,2以便您获取image_2.jpg文件名。

所以我们确定了这个问题,现在让我们解决它。如果可以的话,您应该保存文件路径,并将其发送到视图控制器,将其添加到数据库中,或者您可以简单地更改命名算法,您可以使用当前日期([NSDate date])作为文件名,然后对它们进行排序并获取添加的最后一张图像......或其他算法。

于 2013-06-06T18:16:48.213 回答