iPhone上特定程序的内存

时间:2010-01-28 14:04:08

标签: iphone memory

可以在iPhone上获取特定程序的内存消耗吗?例如,我想知道在不使用仪器工具的情况下使用了多少内存。

提前致谢。 亚历

2 个答案:

答案 0 :(得分:1)

我强烈建议使用Memory Monitor仪器跟踪特定应用程序的内存使用情况。

您可以通过以下函数获取系统范围的内存使用情况统计信息:

#import <mach/mach.h>
#import <mach/mach_host.h>

static void print_free_memory () {
    mach_port_t host_port;
    mach_msg_type_number_t host_size;
    vm_size_t pagesize;

    host_port = mach_host_self();
    host_size = sizeof(vm_statistics_data_t) / sizeof(integer_t);
    host_page_size(host_port, &pagesize);        

    vm_statistics_data_t vm_stat;

    if (host_statistics(host_port, HOST_VM_INFO, (host_info_t)&vm_stat, &host_size) != KERN_SUCCESS)
        NSLog(@"Failed to fetch vm statistics");

    /* Stats in bytes */ 
    natural_t mem_used = (vm_stat.active_count +
                          vm_stat.inactive_count +
                          vm_stat.wire_count) * pagesize;
    natural_t mem_free = vm_stat.free_count * pagesize;
    natural_t mem_total = mem_used + mem_free;
    NSLog(@"used: %u free: %u total: %u", mem_used, mem_free, mem_total);
}

此代码是从Landon Fuller的post on the topic复制而来的。 Noel Llopis也有a nice writeup来调查应用程序中的内存使用情况。不幸的是,从应用程序本身中了解应用程序的内存使用情况并不容易。

答案 1 :(得分:0)

这很棘手。仪器真的是我想到的方式。或者越狱你的iPhone并从Cydia安装top命令。

使用sysctl也可以获得一些值,但我认为这些是全局内存使用,而不是每个应用。