Questions tagged [pfquerytableviewcontrolle]
72 questions
1
vote
0 answers
How to check an array of pointer objects are equal to itself in their table?
This question seems a bit complicated but it is very basic.
I have one table called X1:
Then I have another table called X2. This table has a column eventId which is a pointer (not Id) to table X1 as you can see in third column JJYa3y2gVb:
Now I…

Bernard
- 4,240
- 18
- 55
- 88
1
vote
0 answers
How to get list of users and their profile images from Parse class in Swift?
In my app, I'm trying to display information of a employee of a club, in which the Fist table lists out the clubs (from Parse Backend), once a club is selected, it shows all the employees(and their profile image) working in that club again in a…

Skper11
- 61
- 10
1
vote
1 answer
[Error]: bad characters in classname - PFQueryTableViewController
Hi I've been trying to test the functionality of the Parse PFQueryTableViewController... however keep receiving the following error:
[Error]: bad characters in classname: (null) (Code: 103, Version: 1.8.0)
I'm using the standard code from the Parse…

Kitcc
- 2,138
- 4
- 24
- 42
1
vote
1 answer
Getting 'This query has an outstanding network connection.'
I'm getting 'This query has an outstanding network connection.'
I know only one query is allowed at time and I think that's what I'm doing here but apparently not..
retrieveFromParse is at viewDidLoad.
-(void) retrieveFromParse{
PFQuery *query…

durazno
- 559
- 2
- 7
- 25
1
vote
1 answer
cellForNextPageAtIndexPath not visible in swift2
I am implementing PFQueryTableViewController from Parse with sections and pagination. Because I am using sections, I need to set the 'load more' cell on my own. However, It seems that I can't access the method cellForNextPageAtIndexPath - I get an…

user2634633
- 509
- 8
- 21
1
vote
0 answers
Parse PFQueryTableViewController loadobjects issue
I am using PFQueryTableViewController in my Parse iOS project.
I call [self loadobjects] in viewWillAppear of my list view to refresh the data after returning from a detail view that allows editing of the data. This works as expected except that my…

smithms
- 113
- 2
- 5
1
vote
1 answer
How to smoothly allow the sending of messages in my chat app?
I have a chat application that uses Parse as a back-end. Let's say there's a conversation that looks something like this in the table so far:
I said: Hello
He said: Hey there
Now, if I want to type something in and click send, the table would go…

Navio53
- 591
- 1
- 6
- 20
1
vote
3 answers
PFQueryTableView Custom cell Separator not showing
In my PFQueryTableViewController, the custom PFTableViewCell's dont have any separators and i don't know why.
I didn't find anything when googeling.
What am I doing wrong?
class CategoryTableViewController: PFQueryTableViewController {
…

Daniel Storch
- 979
- 3
- 10
- 25
1
vote
1 answer
Query for PFQueryTableViewController
I am loading user data from User class from Parse into PFQueryTableViewController. User class represents data from Facebook. Now, I do not want to load the data into PFQueryTable of currently logged in User. All other users data is allowed to be…

Wasim Safdar
- 33
- 5
0
votes
1 answer
PFQueryTableViewController - CellForRowAtIndexPath is not being called/is not working
I've been trying to implement a PFQueryTableViewController in order to show the data from my Parse server to the user. For whatever reason, my custom prototype cell is not being used at all. Rather, the table is just displaying (the x's represents…

Gabe
- 168
- 11
0
votes
1 answer
PFQueryTableViewController crashes when "Load More" is tapped (pagination)
I've looked at similar questions and tried different solutions to no avail. I've implemented PFQueryTableViewController in my iOS app, and I've followed Parse iOS documents. Everything works well, except when I tap on "Load More" to get the next x…

DevKyle
- 1,091
- 6
- 22
0
votes
1 answer
PFQueryTableViewController Ignoring Pagination Setting
I am updating my Parse app, after moving everything over to Heroku, using the open-sourced Parse servers. My app has one section with a PFQueryTableViewController. For a couple of years, I have had pagination disabled, as we only have about 50…

user717452
- 33
- 14
- 73
- 149
0
votes
0 answers
How do I retrieve data by using the Parse PFQuery?
Hi I'm trying to retrive data by using the PFQuery.
loadPosts in the tabelviewController.
My problem is commentsArray.
As you can see... commentsArray is not synchronized other arryas.
Because It has different db's class.
I want get all the data…

Shawn Baek
- 1,928
- 3
- 20
- 34
0
votes
0 answers
PFQueryTableView needs a pre Query
I am trying to use PFQueryTableViewController with it's default methods:
queryForTable()
tableView(tableView: UITableView, cellForRowAtIndexPath indexPath: NSIndexPath,
object: PFObject?) -> PFTableViewCell?
my queryForTable() looks like this:
…

JVS
- 2,592
- 3
- 19
- 31
0
votes
3 answers
Counting found objects in PFTableQueryViewController
I am trying to count the number of the found objects in PFQueryTableViewController.
I have tried working around with
override func queryForTable() -> PFQuery {
let query = PFQuery(className: self.parseClassName!)
query.whereKey("member",…

JVS
- 2,592
- 3
- 19
- 31