iOS10 NSLog限制为1024个字符串

Nav*_*han 6 console ios ios10 xcode8

在iOS10中,NSlog限制为1024个字符,任何人都知道打印完整字符串的解决方法.

Lio*_*ion 6

尝试printf然后而不是NSLog喜欢,

   printf("%s", [string UTF8String]);
Run Code Online (Sandbox Code Playgroud)

它可能有效