There is a bug in our iPad application that I am looking into that consists of when the view controller method viewWillAppear is called it does not always correctly reflect the state of syncing with our web service. The AppDelegate is using several NSOperation subclasses that are used in a method called sync. This method gets executed in only two locations, an onSyncButtonPressed method and an onSyncTimeFired method. I build up a variety of different NSOperation subclasses. Some have dependencies on others and what not. I know that those operations are occurring in the order that is needed. There is a method called SyncInProgress that returns a bool if syncing is occurring or not. It runs on the main thread, and when my operations start they call startServiceCall which will call incrementActiveServiceCounter on the app delegate.
@implementation AppDelegate
- (BOOL) syncInProgress
{
return _serviceCounter > 0;
}
- (void) incrementActiveServiceCounter
{
_serviceCounter++;
}
- (void) decrementActiveServiceCounter
{
_serviceCounter--;
}
@end
Sometimes during a sync, the app doesn't recoginze a sync is happening and thus the incorrect state is shown?