Get Device Memory 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.
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.
精彩评论