Questions tagged [pfquerytableviewcontrolle]
72 questions
6
votes
1 answer
PFQueryTableView Memory
I've been working with the PFQueryTableView with images and text. After implementing this code:
- (id)initWithCoder:(NSCoder *)aDecoder {
self = [super initWithClassName:@"Story"];
self = [super initWithCoder:aDecoder];
if (self) { //…

Matt Sarabyte
- 245
- 1
- 3
- 10
4
votes
1 answer
Admob BannerView float over PFQueryTableViewController
I'm trying to get ADBanner at the bottom above UITabBarController / float above UITabBarController as I'm using PFQueryTableViewController I'm getting the ADBanner as a part of TableViewCell and the ADBanner is scrollable like the table.
And as I'm…

Sabhay Sardana
- 876
- 1
- 10
- 27
3
votes
1 answer
How to structure your Parse data model for a classic Post and Comment model? (using iOS, Swift, Parse)
Working on a blog-like iPhone app using Swift (with a Storyboard) and Parse and have been struggling for several weeks now in developing a comment/reply system similar to the Facebook iOS app and other social network apps.
Is my current Parse data…

dnadri
- 173
- 1
- 2
- 11
3
votes
1 answer
PFQueryTableViewController using objects in a PFObject's array
Sorry if this is an extremely simple and dumb question. I'm still really new to Parse.
Suppose I have a Schedule object, and a Schedule object can have a few ScheduleItem objects (not many). I decided to model this using arrays for relations, such…

UberJason
- 3,063
- 2
- 25
- 50
2
votes
1 answer
How to return a nil custom UITableViewCell
In my cellForRowAtIndexPath method, it's fetching the data from the server. If one of the values of the data is false I want to change a few values of some global objects and skip implementing this cell, but when I try returning nil the app crashes.…

stumped
- 3,235
- 7
- 43
- 76
2
votes
0 answers
Destroying AVPlayer instances in a UITableView
I have a UITableViewController with 2 buttons in the header.
Button 1 - pulls data from a username API, refreshes the tableview, and displays one string username per cell
Button 2 - pulls data from a video API, refreshes tableview, and displays one…

user1161310
- 3,069
- 3
- 21
- 27
2
votes
1 answer
Implementing PFQueryTableViewController search function
I need help setting up a PFQTVC search function. I have most of it complete but am stuck on how to switch the local data (self.tabledata) for the remote data (self.objects). Here is my code. Im stuck on the filterContentForSearchText method.…

Abdi Musse
- 47
- 1
- 6
2
votes
1 answer
ParseUI PFQueryTableViewController in SWIFT
I'm trying to use two PFQueryTableViewControllers in succession, so that the row selected in the first controller generates a second tableview with a detailed query. I assume this is a common thing to do.
The second view controller throws this…

farkus
- 23
- 3
1
vote
1 answer
Check for internet connection with PFQueryTableViewController in Swift
I have an app I'm working on that is linked with Parse, so I'm using a PFQueryTableViewController.
I would simply like to know how I can do a check for an internet connection when I run the app.
Currently, If I turn off my internet connection then…

Nick89
- 2,948
- 10
- 31
- 50
1
vote
1 answer
Extract row data using editActionsForRowAtIndexPath from Parse.com PFQueryTableViewController
I am using PFQueryTableViewController to retrieve images from Parse.com backend. Later, I want to take a snapshot of swiped row image (using editActionsForRowAtIndexPath).
At this moment, I can retrieve object and create a action on row using…

Vicky Arora
- 501
- 2
- 7
- 20
1
vote
1 answer
How do i implement CHTCollectionViewWaterfallLayout?
I am using Parse PFQueryTableViewController, it shows images in a list, i want to use CHTCollectionViewWaterfallLayout to show the images in a grid way like instagram, how do i implement this? i did the cocoapod but the demo code is way different.

farhan
- 233
- 1
- 13
1
vote
1 answer
How do I call a function only if another function is complete? (Swift and retrieving from Parse)
I am trying to only call a function only if I have retrieved a certain PFObjectfrom my Parse backend in a separate function. At the moment I am calling this second function after a set delay of 3.0 and it is working, but only if the first query…

Chris Wright
- 89
- 2
- 8
1
vote
1 answer
PFQueryTableViewController query pointer to User class and put as username label in table (Swift, Parse)
I'm making a twitter type app with Parse and Swift language.
Users are able to make posts that are displayed in a PFQueryTableViewController using the queryForTable function. One of the columns in my "Posts" class is a pointer to the "User" class…

Matt Banks
- 13
- 3
1
vote
1 answer
Parse/Swift : PFQueryTableViewController createdAt object not working
I want to add UIlable that represent the time when post created
I tried 3 different methods without any success
PS: Am using PFQueryTableViewController
Update :
var dateFormatter = NSDateFormatter()
dateFormatter.dateFormat = "MM-dd-yyyy…

user3662992
- 688
- 1
- 6
- 16
1
vote
1 answer
IncludeKeys in PFQuery not returning all relational data
I am using PFQueryTableViewController to retrieve objects from Parse. This particular Parse class has three columns (group, category, client) which are pointers to other Parse classes. I want to use the includeKey option to bring in all object data…

Majedian21
- 33
- 3