I\'ve to schedule a fixed task that check some info from internet at fixed interval timer.
Into Android, I use AlarmManager with setRepeating, but I\'m newbie to iOS. Th
AFAIK in iOS you cannot implement such service that will stay alive after its host app is killed, also only several types of applications can run some background tasks - see documentation here. You can do your task on server side and send push notification when you need users attention - if only user will allow your app to receive push notifications.