How do I disable NSLog?

前端 未结 15 2127
陌清茗
陌清茗 2020-12-05 07:46

I\'d like to do the following in Xcode:

Find all NSLog commands without comments, and replace it with //NSLog...

In other words, I want to comment all NSLog

15条回答
  •  谎友^
    谎友^ (楼主)
    2020-12-05 08:34

    try this also:

        #define NSLog(@"YOUR MESSAGE HERE!") do { } while (0)
    

提交回复
热议问题