In iOS10 the NSlog are limited to 1024 characters has anybody know a workaround to print complete string.
try printf then instead of NSLog like,
printf
NSLog
printf("%s", [string UTF8String]);
It may works