Closed #388 - Automatic dismiss for compass calibration dialog

This commit is contained in:
Alex Zolotarev 2011-11-18 19:43:06 +03:00 committed by Alex Zolotarev
parent 3f8bc6e7c5
commit 9f5c1a17d1
2 changed files with 13 additions and 0 deletions

View file

@ -17,6 +17,7 @@
BOOL m_isStarted;
BOOL m_reportFirstUpdate;
NSMutableSet * m_observers;
BOOL m_isTimerActive;
}
- (void)start:(id <LocationObserver>)observer;

View file

@ -135,9 +135,21 @@
}
}
- (void)onTimer:(NSTimer *)timer
{
[m_locationManager dismissHeadingCalibrationDisplay];
m_isTimerActive = NO;
}
// Display compass calibration dialog automatically
- (BOOL)locationManagerShouldDisplayHeadingCalibration:(CLLocationManager *)manager
{
if (!m_isTimerActive)
{
[NSTimer scheduledTimerWithTimeInterval:2.5 target:self selector:@selector(onTimer:)
userInfo:nil repeats:NO];
m_isTimerActive = YES;
}
return YES;
}