I have an app which, from the app delegate, calls a synchronization engine. The synchronization engine fetches data from the web from a web service parses it and puts it in a core data base.
The individual you controllers call a fetch to the core database in order to present the data.
I want to add the feature of checking for Internet connectivity. Should I check for Internet connectivity in the app delegate and if there is one call the sync engine, else if there is not... What do I do, just leave it empty?
If (Internet) {
//call sync engine
} else {
//do nothing
}