处理内存管理和iOS Cordova项目?

sou*_*mya 6 iphone maps memory-management ios cordova

任何人都可以告诉我如何处理iOS Cordova项目中的内存管理 "收到内存警告"

当我在iPhone或iPad(版本8.1)上运行时,我在iOS Cordova项目中收到此警告.我在我的应用程序中使用CDVlocation进行地理定位.我主要是在加载基于地图的视图时收到此消息.我正在使用基于ARC的Xcode项目

任何帮助管理内存警告与cordova "收到内存警告" 将不胜感激.

谢谢你们

sou*_*mya 3

在 CDVPlugin.m 中尝试这种方式

 - (void)onMemoryWarning
{
   // override to remove caches, etc
    NSLog(@"onMemoryWarning");
    NSString * javascriptString = @"yourJSFunctionToManageMemoryWarnings();";
   [self.webView stringByEvaluatingJavaScriptFromString:javascriptString];
}
Run Code Online (Sandbox Code Playgroud)