可编程的IOS应用统计数据

时间:2015-01-10 14:02:37

标签: ios

有没有办法知道(程序)你花在某个应用上的时间?然后在您自己的应用程序中使用该信息? (在IOS 8中,您可以看到每个应用程序的电池使用情况,我想有一些方法可以知道持续时间)

1 个答案:

答案 0 :(得分:0)

当您的应用正在运行(或使用后台刷新)时,您可以定期检查ios上正在运行的其他进程

您可以根据流程推断出应用,您可以推断出时间。它根本不准确,但它可以为您提供时间'趋势'


在unix上你会使用ps。此代码适用于ios(适用于非越狱设备):

- (NSArray *)runningProcesses {

    int mib[4] = {CTL_KERN, KERN_PROC, KERN_PROC_ALL, 0};
    size_t miblen = 4;

    size_t size;
    int st = sysctl(mib, miblen, NULL, &size, NULL, 0);

    struct kinfo_proc * process = NULL;
    struct kinfo_proc * newprocess = NULL;

    do {

        size += size / 10;
        newprocess = realloc(process, size);

        if (!newprocess){

            if (process){
                free(process);
            }

            return nil;
        }

        process = newprocess;
        st = sysctl(mib, miblen, process, &size, NULL, 0);

    } while (st == -1 && errno == ENOMEM);

    if (st == 0){

        if (size % sizeof(struct kinfo_proc) == 0){
            int nprocess = size / sizeof(struct kinfo_proc);

            if (nprocess){

                NSMutableArray * array = [[NSMutableArray alloc] init];

                for (int i = nprocess - 1; i >= 0; i--){

                    NSString * processID = [[NSString alloc] initWithFormat:@"%d", process[i].kp_proc.p_pid];
                    NSString * processName = [[NSString alloc] initWithFormat:@"%s", process[i].kp_proc.p_comm];

                    NSDictionary * dict = [[NSDictionary alloc] initWithObjects:[NSArray arrayWithObjects:processID, processName, nil] 
                                                                        forKeys:[NSArray arrayWithObjects:@"ProcessID", @"ProcessName", nil]];
                    [processID release];
                    [processName release];
                    [array addObject:dict];
                    [dict release];
                }

                free(process);
                return [array autorelease];
            }
        }
    }

    return nil;
}

代码来源:How to get information about free memory and running processes in an App Store approved app? (Yes, there is one!)