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.
我想知道是否可以在 iOS 中以编程方式释放 ram?至少我想删除后台的所有应用程序..谢谢..
没有用于此的 API。但是,如果您的应用程序位于前台并使用大量 RAM,则会导致操作系统终止后台应用程序,从而释放一些 RAM。
我不确定这是否会通过审批程序。
您无法释放其他应用程序的 RAM。但是,这将在必要时由操作系统关闭后台应用程序自动发生。
您可以使用 didReceiveMemoryWarning: 委托方法来释放您自己的类中不再使用的内存。