I have two arrays containing string variables. In one array, it contains the values from a web service, it will be updating in every 5 seconds. So, i need to run this app offline and also compare the array with another array that contains some sample values. If any matches occur, should generate a PushNotification. Is that possible?? If yes how can I implement that? If no, is there any other way?

Please help... Thanks....

link|improve this question

60% accept rate
feedback

1 Answer

Hey I can just give you an idea.
register your app for background app
in did enter background make a background handler and you will get approximately 10 mins to finish the task, after the time is over the handler will call finishing block and in this block again create the background handler you will get again 10 mins and so on, in this way your application will reamin in background. But be aware of watchdog.

P.S. This is just an idea, i dont know the apple's view on this. Hope you will succeed.

link|improve this answer
I seriously like your idea but is there any how you can verify this .. i mean if apple will accept this. Post it as a question.. – Ankit Srivastava Sep 30 '11 at 11:59
I don't know whether apple accept this idea or not.... I suggest you to upload a sample app on app store or just ask apple's support. – Inder Kumar Rathore Sep 30 '11 at 12:03
I was going through the documents and found out that the setKeepAliveTimeout:handler: – Ankit Srivastava Sep 30 '11 at 12:52
I was going through the docs and found out that setKeepAliveTimeout:handler: works only for VoIP apps so I guess it rules out the possibility of performing this task. – Ankit Srivastava Sep 30 '11 at 12:54
May be.... I'm not sure yaar..just give it a try.. – Inder Kumar Rathore Sep 30 '11 at 15:01
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.