gpt4 book ai didi

ios - 在一个 PFFile 中获取两个数据

转载 作者:行者123 更新时间:2023-11-29 02:40:20 25 4
gpt4 key购买 nike

我想在一个 PFFile 中保存 2 个数据:一个图像和一个数据声音。这对于图像 (fileData) 来说是正确的,但我想在 Parse.com 中为数据声音 (fileData2) 添加一列。我怎样才能做到这一点?我不能这样做:“PFFile *file = [PFFile fileWithName:fileName data:fileData,fileData2];”

这是我的代码:

- (void)uploadMessage {
NSData *fileData;
NSData *fileData2;
NSString *fileName;
NSString *fileType;

if (self.image != nil) {
[SVProgressHUD showWithStatus:@"Sending..." maskType:SVProgressHUDMaskTypeClear];
UIImage *newImage = [self resizeImage:self.image toWidth:320.0f andHeight:480.0f];
fileData = UIImagePNGRepresentation(newImage);
fileData2 = self.datasound;
fileName = @"image.png";
fileType = @"image";
}

PFFile *file = [PFFile fileWithName:fileName data:fileData];
[file saveInBackgroundWithBlock:^(BOOL succeeded, NSError *error) {
if (error) {
UIAlertView *alertView = [[UIAlertView alloc] initWithTitle:@"An error occurred!"
message:@"Please try sending your message again."
delegate:self cancelButtonTitle:@"OK" otherButtonTitles:nil];
[SVProgressHUD dismiss];
[alertView show];
}
else {
PFObject *message = [PFObject objectWithClassName:@"Messages"];
[message setObject:file forKey:@"file"];
[message setObject:fileType forKey:@"fileType"];
[message setObject:self.recipients forKey:@"recipientIds"];
[message setObject:[[PFUser currentUser] objectId] forKey:@"senderId"];
[message setObject:[[PFUser currentUser] valueForKey:@"name"] forKey:@"senderName"];
[message saveInBackgroundWithBlock:^(BOOL succeeded, NSError *error) {
if (error) {
UIAlertView *alertView = [[UIAlertView alloc] initWithTitle:@"An error occurred!"
message:@"Please try sending your message again."
delegate:self cancelButtonTitle:@"OK" otherButtonTitles:nil];
[SVProgressHUD dismiss];
[alertView show];
}
else {
// Everything was successful!
[self reset];
[SVProgressHUD dismiss];
}
}];
}
}];
}

最佳答案

您无法(轻松)将两个文件放入一个 PFFFile 中。 PFFFile 旨在代表一个文件。

创建 PFFile 的两个实例,一个用于图像,一个用于声音文件。

PFFile *imageFile = [PFFile fileWithName:imageFileName data:imageFileData];
PFFile *soundFile = [PFFile fileWithName:soundFileName data:soundFileData];

将 PFFile 的这些实例设置为相应的解析列。例如:

[message setObject:imageFile forKey:@"imageFile"];
[message setObject:soundFile forKey:@"soundFile];

关于ios - 在一个 PFFile 中获取两个数据,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/25876185/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com