Last active
October 7, 2015 08:13
-
-
Save 1901/917a0064b125175db95e to your computer and use it in GitHub Desktop.
ios memory info
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// 获取当前设备可用内存及所占内存的头文件 | |
#import <sys/sysctl.h> | |
#import <mach/mach.h> | |
// 获取当前设备可用内存(单位:MB) | |
- (double)availableMemory | |
{ | |
vm_statistics_data_t vmStats; | |
mach_msg_type_number_t infoCount = HOST_VM_INFO_COUNT; | |
kern_return_t kernReturn = host_statistics(mach_host_self(), | |
HOST_VM_INFO, | |
(host_info_t)&vmStats, | |
&infoCount); | |
if (kernReturn != KERN_SUCCESS) { | |
return NSNotFound; | |
} | |
return ((vm_page_size *vmStats.free_count) / 1024.0) / 1024.0; | |
} | |
// 获取当前任务所占用的内存(单位:MB) | |
- (double)usedMemory | |
{ | |
task_basic_info_data_t taskInfo; | |
mach_msg_type_number_t infoCount = TASK_BASIC_INFO_COUNT; | |
kern_return_t kernReturn = task_info(mach_task_self(), | |
TASK_BASIC_INFO, | |
(task_info_t)&taskInfo, | |
&infoCount); | |
if (kernReturn != KERN_SUCCESS) { | |
return NSNotFound; | |
} | |
return taskInfo.resident_size / 1024.0 / 1024.0; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment