I\'m running the following code in the viewDidLoad function of a vanilla iPad single view app:
/* * Print the string. A lot. */ for (int i = 0; i < 300; i
A workaround, in your loop, put a "fflush(stderr);" after the second NSLog statement; This will force stderr to commit and write the buffer before continuing.