1

Hello simple question probably, every time i call self loadObjects to refresh the objects in the tableview, it refreshes so many times.

I NSLog some objects to see how many times it loads, it varies, sometimes i loads four times for even 6-8 times.

Is this normal with Parse?

farhan
  • 233
  • 1
  • 13

1 Answers1

1

If you call tableview reloadData then all the datasource methods of the tableview will get many times, i think the many times you are referring to is the log which am quite sure you set inside cellForRowAtIndexPath which will call as many number of rows there are in the tableview.

Saheb Roy
  • 5,899
  • 3
  • 23
  • 35