URLからNSMutableDictionaryにPLISTを読み込もうとしています。plistをNSMutableDictionaryに読み込みます。
autos = [[NSMutableArray alloc] init];
[autos addObject:[[NSMutableDictionary alloc]initWithObjectsAndKeys:@"Auto 1", @"name", @"Auto.png", @"image", @"Klassiker", @"description" , nil]];
これが機能する前に
コード。しかし今、私はPLISTを使いたいです。そして、私はこれをこのようにしようとしています。
autos = [[NSMutableArray alloc]initWithContentsOfURL:[NSURL URLWithString:[NSString stringWithFormat:@"http://dl.dropbox.com/u/9358444/auto.plist"]]];
ありがとう。
PLIST http://dl.dropbox.com/u/9358444/auto.plist
PLISTを使用しようとするとアプリケーションがクラッシュし、tableviewにautoを含む行を開いてしまう問題があります。 – halloway4b
クラッシュログを提供できると便利でしょうか? – Ravin