在我的iPhone應用程序中,我如何從網上下載.txt文件,然後將其內容導入到NSString中。例如,假設該文本文件位於http://www.somewebsite.com/textfile.txt從網上讀取一個.txt文件 - Objective-C
那我想要做的是:
if(user has internet connection)
NSString *textFile = download text file from http://www.somewebsite.com/textfile.txt
else
NSLog(@"user has no internet");
能有人告訴我的代碼來做到這一點?
使用的NSURLRequest您可以輕鬆地下載文件,保存此文件,並根據使用它你要求。你可以從http://stackoverflow.com/questions/3464252/how-to-download-a-file-by-using-nsurlconnection接受幫助。 –