Questions tagged [pfquerytableviewcontrolle]
72 questions
0
votes
1 answer
Pass back Tableview Cell Data to filter objects in my PFQueryTableViewController in Swift
I have a PFQueryTableViewController which lists films. In my navigation bar, I have a filter button, which when the user presses it, it displays a UIPopoverPresentationController. This popover simply displays some options in a UITableView. See the…

Nick89
- 2,948
- 10
- 31
- 50
0
votes
1 answer
Voting buttons with Parse in Swift
A quick overview of what I'm trying to make. I'm making an app to show my film reviews. I have a PFQueryTableviewController of which I use a custom cell. This table shows films which come from my Parse database. In each cell, there a 3 UIButtons, of…

Nick89
- 2,948
- 10
- 31
- 50
0
votes
1 answer
How to check if UISearchBar has returned results using query.whereKey in Swift
I have a PFQueryTableViewController, and I have added a UISearchBar to it. In my QueryForTable function, I run this code to check if the text entered into the searchBar matches any value in my Parse column, and if so it shows only those films in the…

Nick89
- 2,948
- 10
- 31
- 50
0
votes
1 answer
PFQueryTableViewController and commitEditingStyle scroll up
I have a PFQueryTableViewController with food information. When I scroll to the bottom of the table and swipe left (which calls commitEditingStyle), the table scrolls up so I don't see the cell I'm trying to delete anymore. If you have any ideas…

thailey01
- 165
- 1
- 14
0
votes
1 answer
PFQueryTableViewController getting possible error
I have a question regarding how one would intercept an error message on a PFQueryTableViewController. Basically, I would like to override a method in the PFQueryTableViewController to allow for me to display custom error alerts if there were a…

Anthony Dito
- 3,610
- 3
- 29
- 56
0
votes
2 answers
Parse PFQueryTableViewConntroller not loading images
I'm using parse's PFQueryTableViewController, all seems to work fine, when retrieving the date, except the UIImageView's aren't loading the files in the database. The text and everything else loads, except the file. Here is my code:
import…

Max Kortge
- 527
- 7
- 23
0
votes
2 answers
Getting username in PFQueryTableView
I have an PFQueryTableView which I want to display all the open friends requests. I have a Parse Class named Follow which has the standard columns and a "from","to" and "requestStatus" column. "from" and "to" are pointers to PFUser. Now I query for…

beginner_T
- 417
- 1
- 6
- 21
0
votes
2 answers
Custom init for TableView from storyboard
Tried to search answer on google and stackoverflow but stuck.
I am using https://parse.com/docs/ios/api/Classes/PFQueryTableViewController.html
to fill up data with my objects.
Everything seems nice I got correct data for this table view
But I…

Igor Kuznetsov
- 108
- 1
- 10
0
votes
1 answer
Any idea why this func is writing/updating the first cell in table and not the selected one in PFQueryTableViewController?
In my app users can post to Parse backend and their posts are displayed in a timeline (PFQueryTableViewController). Each cell in this tableview has a button which the users can press to 'like' the post. Until yesterday I had the function to like…

Chris Wright
- 89
- 2
- 8
0
votes
1 answer
PFQueryTableView queryForTable(), how to return nothing?
I just started using Parse and have a few problems sometimes. I have a PFQueryTableView which works perfect when a user is logged in. The queryForTable() function queries all the objects that have the current users username in their "createdBy"…

beginner_T
- 417
- 1
- 6
- 21
0
votes
1 answer
How to set background image for tableView in PFQueryTableViewController
This code in viewDidLoad works for adding a background image to a tableView in a generic tableViewController, however using the Parse SDK, it does not add a background image in a PFQueryTableViewController. What am I doing wrong in the PFQTVC?…

GarySabo
- 5,806
- 5
- 49
- 124
0
votes
1 answer
Passing PFObjects from indexPath.row through UIButton in TableViewCell Parse
I have a social app. I have a UIButton inside a TableViewCell. This button is called commentButton. What I want to achieve with this button is for the user to tap it and goto a tableview where the comments for that post are held. The issue…
user4203956
0
votes
2 answers
How to set the topmost cell (first row) of detail view's table view with master view's selected cell content?
Working on a social iPhone app using Swift (with a Storyboard) and Parse where users can create posts and comment on posts similar to the Facebook iOS app and other social network apps.
The app has an initial, master Home Feed page (which displays…

dnadri
- 173
- 1
- 2
- 11
0
votes
2 answers
Why are the same comments showing for different user posts? (iOS, Swift, Parse)
Working on a social iPhone app using Swift (with a Storyboard) and Parse where users can create posts and comment on posts similar to the Facebook iOS app and other social network apps.
The app has an initial, master Home Feed page (which displays…

dnadri
- 173
- 1
- 2
- 11
0
votes
3 answers
Parse query whereKey from Swift
I have a Parse class with the name "Question", and a column called "quizid" of type Number.
In xcode swift class, I have a variable of type Int quiz_id.
I have a class inherited from PFQueryTableViewController
I want to pull data from the class…

Parth Tiwari
- 855
- 2
- 9
- 23