获取 iphone 手机的总内存和可用的内存大小

typedef struct UIDeviceMemoryInfo {
	float totalMemory;
	float freeMemory;
} UIDeviceMemoryInfo;


- (UIDeviceMemoryInfo)memoryInfo {
	size_t length;
	int mib[6]; 
	int result;

	int pagesize;
	mib[0] = CTL_HW;
	mib[1] = HW_PAGESIZE;
	length = sizeof(pagesize);
	if (sysctl(mib, 2, &pagesize, &length, NULL, 0) < 0)
	{
		perror("getting page size");
	}

	mach_msg_type_number_t count = HOST_VM_INFO_COUNT;

	vm_statistics_data_t vmstat;
	if (host_statistics(mach_host_self(), HOST_VM_INFO, (host_info_t)&vmstat, &count) != KERN_SUCCESS)
	{
	}

	double total = vmstat.wire_count + vmstat.active_count + vmstat.inactive_count + vmstat.free_count;
//	double wired = vmstat.wire_count / total;
//	double active = vmstat.active_count / total;
//	double inactive = vmstat.inactive_count / total;
//	double free = vmstat.free_count / total;

	mib[0] = CTL_HW;
	mib[1] = HW_PHYSMEM;
	length = sizeof(result);
	if (sysctl(mib, 2, &result, &length, NULL, 0) < 0)
	{
		perror("getting physical memory");
	}
	mib[0] = CTL_HW;
	mib[1] = HW_USERMEM;
	length = sizeof(result);
	if (sysctl(mib, 2, &result, &length, NULL, 0) < 0)
	{
		perror("getting user memory");
	}

	UIDeviceMemoryInfo info;
	info.freeMemory = vmstat.free_count * pagesize;
	info.totalMemory = total * pagesize;
	return info;
}


评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值