I'm coding an iPad app, and I have to change a graphic when the day changes to Sunday.
My straightforward solution is to check the day in the - (void)applicationDidBecomeActive:(UIApplication *)application
or -(void)viewWillAppear:(BOOL)animated
methods, and set a timer like every 10 mins to check if the day have changed to Sunday while the app is active.
Is there another, perhaps more efficient, way to handle this?