What's the best way to log debug info in an iphone app?

后端 未结 5 1753
执笔经年
执笔经年 2021-02-05 18:26

Is there some standard way or has anyone written something that allows you to log a message and have it be displayed either in a small scrolling section on the iphone screen or

5条回答
  •  陌清茗
    陌清茗 (楼主)
    2021-02-05 19:11

    The Objective-C (more correct, really) method is

    NSLog(@"message");
    

    But the standard C method will work also

    printf("message");
    

提交回复
热议问题