gpt4 book ai didi

ios - 如何在我的 iPhone 应用程序中显示我的应用程序的内存使用情况

转载 作者:行者123 更新时间:2023-11-29 03:07:53 25 4
gpt4 key购买 nike

我想在我的 iPhone 应用程序中显示我的应用程序内存使用情况有些地方像 Navigation Bar 或者在 UIWindow 中添加 subview ,所以它会显示在所有屏幕上并显示当前内存使用情况

最佳答案

来自:Programmatically retrieve memory usage on iPhone

#import <mach/mach.h>

// ...

void report_memory(void) {
struct task_basic_info info;
mach_msg_type_number_t size = sizeof(info);
kern_return_t kerr = task_info(mach_task_self(),
TASK_BASIC_INFO,
(task_info_t)&info,
&size);
if( kerr == KERN_SUCCESS ) {
NSLog(@"Memory in use (in bytes): %u", info.resident_size);
} else {
NSLog(@"Error with task_info(): %s", mach_error_string(kerr));
}
}

关于ios - 如何在我的 iPhone 应用程序中显示我的应用程序的内存使用情况,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/22557525/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com