美文网首页
监控卡顿函数

监控卡顿函数

作者: 寂寞先森666 | 来源:发表于2019-08-26 18:27 被阅读0次

    第一种、使用工具time profiler

    - (void)viewDidLoad {
        [super viewDidLoad];
        person * p = [[person alloc]init];
        [p eat];
    }
    
    @implementation person
    -(void)eat
    {
        for (int i = 0; i< 10000000000; i++) {
            NSLog(@"吃.......");
        }
    }
    @end
    
    查看耗时函数 双击查看对应的代码

    相关文章

      网友评论

          本文标题:监控卡顿函数

          本文链接:https://www.haomeiwen.com/subject/tkidectx.html