forked from organicmaps/organicmaps
[cherry] [MAPSME-5105] [ios] Fixed high cpu load in background.
This commit is contained in:
parent
e8c8a0302f
commit
b88a36a48c
1 changed files with 6 additions and 1 deletions
|
@ -215,7 +215,10 @@ void setPermissionRequested()
|
|||
+ (void)applicationDidBecomeActive
|
||||
{
|
||||
if (isPermissionRequested() || ![Alohalytics isFirstSession])
|
||||
{
|
||||
[self start];
|
||||
[[self manager] updateFrameworkInfo];
|
||||
}
|
||||
}
|
||||
|
||||
+ (void)applicationWillResignActive
|
||||
|
@ -538,8 +541,10 @@ void setPermissionRequested()
|
|||
- (void)updateFrameworkInfo
|
||||
{
|
||||
auto app = UIApplication.sharedApplication;
|
||||
if (app.applicationState != UIApplicationStateActive)
|
||||
return;
|
||||
auto delegate = static_cast<MapsAppDelegate *>(app.delegate);
|
||||
if (delegate.isDrapeEngineCreated && app.applicationState == UIApplicationStateActive)
|
||||
if (delegate.isDrapeEngineCreated)
|
||||
{
|
||||
auto & f = GetFramework();
|
||||
if (self.frameworkUpdateMode & MWMLocationFrameworkUpdateLocation)
|
||||
|
|
Loading…
Add table
Reference in a new issue