Questions tagged [pffile]
108 questions
0
votes
2 answers
How to pass a pfimageview from one controller to another in storyboard with swift and parse.com
I was hoping I could have some advice. I'm making a quiz app, which contains images. The quiz has 4 answer boxes with a single image view. I can download the images into the quiz via parse.com, however I now want to be able to click on the image…

Kailas198
- 21
- 5
0
votes
3 answers
Retrieve photo attached to currentUser / Parse
I am having issues retrieving an imaged attached to the currentUser.
Here is the code I am using to save the info to parse.
-(IBAction)saveButtonAction:(id)sender {
PFUser *currentUserSave = [PFUser currentUser];
userBioString =…

Andrew Cook
- 116
- 1
- 8
0
votes
1 answer
Filtering undefined files in PFQuery
I'm using Parse as a backend for storing image-based news items. Each news item has an image file. Some image files are 'undefined' and some have jpegs. I have an iOS app front end which shows news items in a PFQueryTableViewController. In the…

gobob
- 412
- 1
- 4
- 17
0
votes
1 answer
Trying to set picture as a mandatory field during signup with Parse
I am still new to coding. I have setup my signup screen but I wanted to make it mandatory to upload a profile picture during signup. I've tried to add and "if statement" to show an alert if the photo isn't uploaded but I haven't been successful…

Trey R
- 21
- 1
- 5
0
votes
1 answer
download and save a PFFile (UIImage) to show in a UIImageView : SWIFT
I have a large class called "Goal" in parse. This class has multiple elements, one of which is a PFFile, that is always a UIImage.
When I perform my query for the "Goal" class, I cannot figure out how to take the PFFile, and change it to a…

Mason Ballowe
- 1,847
- 2
- 12
- 23
0
votes
1 answer
Parse.com PHP SDK ParseFile Image 403 Forbidden
I'm using the Parse PHP SDK and trying to upload an image. The file successfully saves, however the URL for the file returned by the getUrl() ParseFile method returns a 403 forbidden when I try to view it. Viewing the file via the Parse data browser…

ExoticChimp
- 1,884
- 1
- 19
- 37
0
votes
1 answer
Import multiple photos to parse.com database
I'm trying to build an navigation app with place location and its photos.
I have 200 spot location names (String), its location (GeoPoints), and its image (JPG).
is it possible to upload the database including the image instantly?
I only managed to…

Gibran
- 934
- 2
- 8
- 19
0
votes
2 answers
How to limit the background downloads of a PFFile - Parse Framework
Im using the Parse Framework for developing an app that loads images from the Parse Server, im using the Parse method:
PFFile *file = object[@"file"];
[file getDataInBackgroundWithBlock:^(NSData *data, NSError *error) {
...
}
but i want…

Diego Auza
- 31
- 5
0
votes
1 answer
Parse.com Mixed Content Error
I'm creating a web application using parse and have found that in order for a user to authenticate I need to make all requests using HTTPS. I'm able to switch this over and get it to work correctly, but when I do I get all kinds of mixed content…

James Parker
- 2,095
- 3
- 27
- 48
0
votes
0 answers
querying for different PFFile objects in the database
We are developing an app in which we are querying for different objects in the database.
Those objects have a PFFile attached to them. It can be either a video or a photo.
When I get the query response, I have the PFObjects that I want, but not…

Romain N.
- 1
- 1
0
votes
1 answer
PFFile image not loaded before attaching to PFImageView?
I'm using Parse with Facebook login to create a new user. I get a few fields from Facebook like their name and location, request their profile image to load in the background before I segue to my main view controller which has a PFImageView for the…

pizzafilms
- 3,829
- 4
- 24
- 39
0
votes
1 answer
PFFile loading behavior
I was wondering how how exactly Parse loads PFFile data when you use getData() or any of its background equivalents. Here's my case:
I have a User class with a key profilePic, which is a PFFile, in this case a .JPG image. When I load my user I want…

Nicolaas Wagenaar
- 170
- 1
- 9
0
votes
0 answers
parse.com: cloud code to return a PFFile
Background...
I'm exploring Parse.com as a back end for an iOS app that also has an html/web browser interface for some users (either via javascript client or asp.net client - to be determined). The web users are 'an audience' for the data/files…

Ox73
- 1
- 1
0
votes
1 answer
Get two Data in one PFFile
I would like to save 2 datas in one PFFile : one image, and one data sound.
That's right for the image (fileData), but I would like to add a column in Parse.com for the data sound (fileData2). How can I make this ? I can't do : "PFFile *file =…

Vjardel
- 1,065
- 1
- 13
- 28
0
votes
2 answers
Setting the image property of a PFImageView to a local image, then updating Parse database with the PFFile
The PFImageView, with its .file property and its corresponding -loadInBackground method, is really useful. I'm having trouble figuring out how to "go the other way", i.e. get the PFFile reference from a new image:
RA_MyAccount.h (extract)
@property…

max_jf5
- 169
- 1
- 12