progress:^(NSProgress * _Nonnull uploadProgress) {
NSLog(@"Progress - %f", uploadProgress.fractionCompleted);
}
During the real machine test, this log cannot be printed, but it works fine on the simulator. The break point in this block will not stop. Why?
A common reason for this situation is redefining NSLog.
Please check if there is code similar to the one below in your project.