0

ファイルを読み取る必要があります。plistまたは。URLからの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);
4

1 に答える 1

0

NSURLConnection を使用して URL を指定すると、データ オブジェクトが返されます。次に、そのオブジェクトを処理できるものに変換する必要があります。つまり、そのオブジェクトを目的の形式に変換できる iOS クラスを見つけます。データが画像であるとします。次に、次を使用します。

[UIImage imageWithData:];

他のすべてのオブジェクトについても同様です

于 2012-07-19T00:18:49.407 に答える