Search code examples
iosbackground-task

background updates in app


I create news app that parses social network and get information from it. I saw in Apple documentation in Background Execution and Multitasking that Long-Running Background Tasks can be applied by

Apps that need to download and process new content regularly Apps that receive regular updates from external accessories

So, can I use it to update my apps news as Long-Running Background Tasks?


Solution

  • Why do you need those background updates? Neither Twitter nor Facebook use those to update the user's feed. You might need them for things like updating user location and showing notifications (just like Foursquare does) but it is quite a battery-darining experience some time.

    While you certainly can use them for whatever you want it might not save from an AppStore rejection.