Questions tagged [pfimageview]

An image view that downloads and displays remote image stored on Parse’s server.

An image view that downloads and displays remote image stored on Parse’s server.

Reference

https://parse.com/docs/ios/api/Classes/PFImageView.html

23 questions
29
votes
5 answers

Why scale to fill give bigger image than UIImageVIew size? (using swift)

I'm trying to showing a list of place name, including it's photo using PFQueryTableViewController. It's included in ParseUI SDK from parse.com I have managed to show the image. Unfortunately, when I change the UIImageView mode to Aspect fill, the…
Gibran
  • 934
  • 2
  • 8
  • 19
9
votes
2 answers

Parse.com with iOS App and Objective-C code

until recently, I've always used Parse.com for data management of my app I was now working on a new project and I have some problems .... P.S. I'm using Xcode 6 First there PFImageView, you can confirm this? at this point without consulting a…
kAiN
  • 2,559
  • 1
  • 26
  • 54
2
votes
1 answer

Images not appearing on first load in PFQueryCollectionViewController

Has anyone ever gotten a PFQueryCollectionViewController to load images with Objective C? When the user first loads the view it will load the text, but not the images. The second time the user loads the view, the images are loaded. I do not…
Mastertron
  • 45
  • 1
  • 6
2
votes
2 answers

PFImageView not working on sublass of PFCollectionViewCell

I am having difficulty getting my subclass of PFCollectionViewCell to play nicely with PFImageView. I am using Storyboards to rig up my PA_ProfileCollectionViewCell. All I am trying to do is load in an image (which I can get successfully from…
1
vote
2 answers

Swift - Parse Check if PFFile is cached

Considering I'm using PFImageViews, with caching enabled, I would like to know if there's a way to determine whether an image has already been downloaded or not. All in all, I want to say: if imageAlreadyDownloaded { ... } else { ... } Is…
Sotiris Kaniras
  • 520
  • 1
  • 12
  • 30
1
vote
2 answers

PFImageView - How to clear cache?

I'm using PFImageViews a lot in my app, since I need its caching ability... The thing is, that my app now takes 108.9MBs of storage! Is there any way to free up this storage?
Sotiris Kaniras
  • 520
  • 1
  • 12
  • 30
1
vote
1 answer

iOS parse black strip on profile picture (PFImageView)

I am using Parse as a backend of my app, and it seems that the profile photo is not displaying properly, shown in the image: there is a black strip on john_appleseed's photo. here is my code for saving the profile image: NSData *profileData =…
Dovahkiin
  • 1,239
  • 11
  • 23
1
vote
1 answer

How can I use a PFImageView in Swift?

I've tried simply dragging one into my storyboard, but there all I can find is UIImageView. In my IBOutlet for the UIImageView, I changed it to a PFImageView, and I get an error saying: "Use of undeclared type: 'PFImageView'" Do PFImageViews simply…
user4724346
1
vote
1 answer

Images not appearing in PFQueryCollectionViewController

I'm working on an iPhone app that should display images in a UICollectionView. The images are saved on the Parse cloud, and I'm using a subclass of PFQueryCollectionViewController to make the query and display the images. Tapping on a MKMapView…
ConfusedByCode
  • 1,137
  • 8
  • 27
1
vote
1 answer

PFImageView missing in Parse 1.7.1 using cocoa pods

I am using the latest Parse SDK 1.7.1 for iOS and I installed it using cocoa pods. For some reason the class 'PFImageView' (as found in the docs) is not included in the headers of the framework. I realized it when I wanted to use the class as in…
user29533
  • 81
  • 1
  • 3
1
vote
1 answer

fetching 1 image from parse.com

Ive seen many posting on here with phenomenal answers by the community. Unfortunately none have been able to help or guide me to what i need help with. Im trying to "fetch" the image that the "current user" uploaded to parse on the same…
1
vote
1 answer

Parse NSInternalInconsistencyException raises with PFImageView

I'm experiencing an odd behaviour of Parse right now. My App worked fine for weeks of development and never raised a 'NSInternalInconsistencyException' since project setup. But I just implemented a PFImageView in my ProfileViewController (second…
Bachkippe
  • 83
  • 1
  • 14
0
votes
1 answer

PFImageView loadInBackground() issue in iOS10

I am trying to use PFImageView.loadInBackground() in iOS10 . So far my code has worked in iOS9 etc. This is what I am doing: fetching image data assigning data to PFImageView.file loading file via PFImageView.file.loadInBackground() The ImageData…
JVS
  • 2,592
  • 3
  • 19
  • 31
0
votes
1 answer

CollecitonView does not always display data correctly

I am trying to implement a UICollectionView with custom cells. The setup is the following: 4 Cells If I get the data of an downloaded image => fill the cell's imageView with that image. else: use a placeholder. The PFFiles of the images are saved…
JVS
  • 2,592
  • 3
  • 19
  • 31
0
votes
1 answer

Uploading UIImage to Parse

I have been having a lot of trouble trying to get my photo picker to pick an image, cast it as a Pffile, then upload it to Parse. I have currently taped together what I have so I could see it being something simple that I can't see. The error I get…
1
2