I m writing ios app on 4.3 simulator and 3.2 xcode
The app every minute with timer NSTimer
checks news on some websites and if there are news, the app will make alert message with sound "There are something new on ... website!"
But if i close app or it goes to sleep, timer stops on background. So, i have read many articles like http://www.codeproject.com/Articles/124159/Hour-21-Building-Background-Aware-Applications
How keep NSTimer when application entering background?
and non of them helped me. my questions:
1) What technologies or tricks should i use to make such app? One good man told me that i need to use only Push Notifications.
2) If to use Push Notifications, do i have to get Developer Program $100/year from apple and stay my Mac book always turned on for creating server for Push Notifications?
thank you!