¡@

Home 

2014/10/15 ¤U¤È 10:12:14

iphone Programming Glossary: nzbconnection

How to make NSURLConnection file download work?

http://stackoverflow.com/questions/5803673/how-to-make-nsurlconnection-file-download-work

MyViewController UIViewController @protected NSMutableURLRequest req NSMutableData _responseData NSURLConnection nzbConnection void loadFileAtURL NSURL url @end MyViewController.m #import MyViewController.h @implementation MyViewController void loadView.. _responseData NSMutableData alloc init create URLRequest req NSMutableURLRequest alloc init req setURL _urlToHandle nzbConnection NSURLConnection alloc initWithRequest req delegate self startImmediately YES req release req nil #pragma mark void connection.. connection NSURLConnection connection didReceiveData NSData data Append data in the reception buffer if connection nzbConnection _responseData appendData data void connectionDidFinishLoading NSURLConnection connection if connection nzbConnection nzbConnection..