I have an method which save files to the internet, it works but just slow. Then I\'d like to make the user interface more smooth, so I create an NSThread to handle the slow task
Within the thread, you need to create a new autorelease pool before you do anything else, otherwise the network operations will have issues as you saw.