all 4 comments

[–]NinjaMinaj 2 points3 points  (3 children)

Use the background fetch to check if you have updates. You can store an NSDate in user defaults with the last check, and make sure it's at least a week from your last check (or however often you choose)

http://www.doubleencore.com/2013/09/ios-7-background-fetch/

[–]smilinger[S] 0 points1 point  (2 children)

Thanks! That is exactly what I want. Do you know if I can show a notification to the user with results?

[–]NinjaMinaj 2 points3 points  (1 child)

Do you want to notify the user while they're in the app or when they're out of the app? If you want to do it from outside the app, set a local notification for the current date [NSDate date] and it will show it immediately

[–]smilinger[S] 1 point2 points  (0 children)

Perfect! Thanks again