I use Parse for my backend data. Here, I saved an array of dictionaries to then query into my app and load into my tableview.
Here is my array saved in Parse:
When I query it in the viewDidLoad I set my empty array (self.dealListArray) equal to the array on Parse.
Here is what it looks like:
The first NSLog() outputs the entire array from Parse perfectly. But the second NSLog outside of the brackets output NULL.
The table view will not load up because my array is NULL. How can I keep the information from the query so that I can fill it with my table view?
Thank you, any help is much appreciated


self.dealListArray = [resMenu objectForKey:@"Deals"];possibly calling it in mainQueue (since it's related to UI).PFQueryTableViewControllerin the ParseUI framework. It automatically takes care of showing an activity indicator, refreshing the table with the fetched data when complete, pagination, and tons of other convenience methods