Disable NSLog in apple development

    技术2022-07-05  149

    #ifndef __OPTIMIZE__ # define NSLog(…) NSLog(__VA_ARGS__) #else # define NSLog(…) {} #endif


    最新回复(0)