1

I currently get data from Parse, which refreshes when viewDidLoad or pull-to-refresh happens in a PFQueryTableViewController:

    [self.getBackFromParse()]

Is there any way to set up an interval on Parses end to push content to the iOS app?

For example, set Parse up to push all new data to the iOS app every 24 hours?

SRMR
  • 3,064
  • 6
  • 31
  • 59

1 Answers1

1

I think you could create UILocalNotificationin the background where every 24 hours it executes a queryFromParse.

Lamour
  • 3,002
  • 2
  • 16
  • 28
  • That makes sense to me. Thanks for the help again! – SRMR Sep 07 '15 at 19:52
  • And also, if you happen to have a chance to see if you have an answer to this by chance: http://stackoverflow.com/questions/32442129/passing-dictionary-to-watch-using-background-transfer-via-application-context – SRMR Sep 07 '15 at 19:58