[cherry] [MAPSME-5105] [ios] Fixed high cpu load in background.

This commit is contained in:
Ilya Grechuhin 2017-07-24 17:57:07 +03:00 committed by Roman Kuznetsov
parent e8c8a0302f
commit b88a36a48c

View file

@ -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)