获取iOS内存使用情况
Posted 成成先生
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了获取iOS内存使用情况相关的知识,希望对你有一定的参考价值。
这是我自己写着玩的,如果对内存数据有要求的,可自行四舍五入。
// 获取当前设备可用内存及所占内存的头文件
#import <sys/sysctl.h>#import <mach/mach.h>
// 获取当前设备可用内存(单位:MB)
- (IBAction)check:(id)sender
NSString *str =[NSString stringWithFormat:@"%f MB",[self availableMemory]];
[[[UIAlertView alloc] initWithTitle:@"所占内存" message:str delegate:self cancelButtonTitle:@"OK" otherButtonTitles:nil , nil] show];
- (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)
- (IBAction)currunt:(id)sender
NSString *str =[NSString stringWithFormat:@"%f MB",[self usedMemory]];
[[[UIAlertView alloc] initWithTitle:@"当前任务所占内存" message:str delegate:self cancelButtonTitle:@"OK" otherButtonTitles:nil , nil] show];
- (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;
以上是关于获取iOS内存使用情况的主要内容,如果未能解决你的问题,请参考以下文章