What type of file do i use for NSMutableDictionary withcontentofURL?
Posted
by user347741
on Stack Overflow
See other posts from Stack Overflow
or by user347741
Published on 2010-05-23T00:25:29Z
Indexed on
2010/05/23
0:50 UTC
Read the original article
Hit count: 273
I want to fill a NSMutableDictionary with content out of a URL File. What type file must it be and how must it be structured?
NSMutableDictionary *myMutableDictionary = [[NSMutableDictionary alloc]
initWithContentsOfURL:[NSURL URLWithString:@"http://example.com/list.txt"]];
© Stack Overflow or respective owner