获取设备内存 Xcode
我真的需要知道一种方法来获取当前设备的:
- 活动内存
- 非活动内存
- 有线内存
- 空闲
- 内存总内存
任何信息、代码或任何内容都有帮助。
提前致谢。
I really need to know of a way to get the current device’s:
- Active Memory
- Inactive Memory
- Wired Memory
- Free Memory
- Total Memory
Any information, code or anything is helpful.
Thanks in advance.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
桌面使用 Mach 调用
host_statistics64()
来获取该信息。您可以在 vm_stat 的源代码中看到它的使用命令。The desktop uses the Mach call
host_statistics64()
to get that information. You can see it in use in the source code for the vm_stat command.