我需要读一个文件。 plist或。来自网址的txt
例如。
http://www.nordenmovil.com/BuscadorTopTen/carros.plist
http://www.nordenmovil.com/BuscadorTopTen/texto.txt
NSString * path = @ "www.nordenmovil.com/BuscadorTopTen/carros.plist";
NSError * error;
NSString * stringFromFileAtPath = [[NSString alloc]
initWithContentsOfFile: path
encoding: NSUTF8StringEncoding
error: & error];
if (stringFromFileAtPath == nil) {
/ / An error occurred
NSLog (@ "Error reading file at% @ \ n% @",
path, [error localizedFailureReason]);
}
NSLog (@ "% @", stringFromFileAtPath);
答案 0 :(得分:0)
所以你使用NSURLConnection,你给它URL,你得到一个数据对象。然后,您需要将该对象转换为可以处理的对象 - 也就是说,您找到可以将该对象转换为所需格式的iOS类。假设数据是图像。然后你会使用:
[UIImage imageWithData:];
与所有其他对象类似