Team,
i'm developing an iOS application. My requirement is to query for specific news service(REST API) in regular time interval.I wanted query the service twice for a day and update my sqllite db, even the applciation is in background state. My UI will be updated with data fetched from sqllite db, while the application is in foreground.
My question are,
Is it possible to run NSTimer in background continuously? if yes, is there any maximum time limit for timer to run in background (say 10 mins or 60 mins)?
Is it possible to send request to download a file using NSUrlConnection and save the file to documents directory, when the application is in background ?
Your suggestions will be much helpful for my project design. Thanks in advance.