放慢didReceiveMemoryWarning()中的进程

时间:2019-06-20 08:27:19

标签: swift memory memory-management memory-leaks out-of-memory

当RAM达到内存的x倍数或调用didReceiveMemoryWarning()时,是否仍会降低处理器的速度?

func didReceiveMemoryWarning() {
    super.didReceiveMemoryWarning();
}

1 个答案:

答案 0 :(得分:0)

您无法从应用程序控制CPU内核/资源。只有操作系统可以控制它。在didReceiveMemoryWarning方法实现中,不要试图降低CPU速度,而是优化代码以使用更少的内存,并丢弃应用程序正在使用的任何其他内存。