有没有办法在 Xcode 上使用 parse 直接向用户列表发送图像?我可以使用查询发送图像,但我担心搜索存储在我的类(class)中的每张图像,将其与发送它的用户匹配,然后检索该图像需要一段时间,我希望它快点出现。
这是我目前将图像保存到数据库的方式:
PFUser *currentUser = [PFUser currentUser];
NSString * username = currentUser.username;
NSData * imageData = UIImageJPEGRepresentation(myImageView.image, 1.0f);
PFFile * newImageFile = [PFFile fileWithName"image.jpeg" data:imageData];
PFObject * newImage = [PFObject objectWithClassName"Images"];
[newImage setObject:newImageFile forKey"imageFile"];
[newImage setObject:name forKey"username"];
[newImage setObjectbject forKey"sendImageToFollowing"];
[newImage saveInBackgroundWithBlock:^(BOOL succeeded, NSError *error) {}
Best Answer-推荐答案 strong>
将图像保存到 Parse.com 并发送在推送的负载中引用该图像的推送是可行的方法,原因有两个:
- 通过推送消息发送超过几 kb 是不可能的。它们在设计上非常小,因此您必须传递对某些内容的引用。
- 我猜你还是想保存图片
保存图像,从 Parse 获取 objectId,将其作为自定义推送通知负载的一部分发送。您可以创建自定义词典并通过推送发送。有关更多信息,请参见此处:
https://www.parse.com/docs/ios/guide#push-notifications-customizing-your-notifications .
如果你想快速获取objectId,可以在查询成功时从自身获取:
[newImage saveInBackgroundWithBlock:^(BOOL succeeded, NSError *error) {
//Get the image objectId here
NSString *objectIdString = newImage.objectId;
}
关于ios - 如何在不使用查询的情况下在 Parse 上发送图像?,我们在Stack Overflow上找到一个类似的问题:
https://stackoverflow.com/questions/31150560/
|