Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在使用包含很多页面的 html 内容加载我的 webview。它在模拟器和设备中完美运行,显示内存不足警告问题。请大家携手...
这是内存管理的问题。您应该提供您的代码( .h 和 .m )。你做什么(在 webwiew 中加载内容或其他)并不重要,重要的是你这样做的方式。您可能没有释放不必要的对象,或者您分配了太多内存。在模拟器中是可以的,它使用计算机的内存。检查您的代码,释放或清除未使用的对象。尝试使用 Profiler 检测内存泄漏。干杯!