I work on a project in which you can let display RSS feeds in a UITableView
. When tapping on it will be forwarded to a UIViewController
(detailView
). My problem is I'm not very familiar with NSDictionary. I've been a little reading about it, but don't understand it correctly.
Some information for my dict:
[@"name"]
[@"title"]
[@"link"]
[@"pubDate"]
[@"description"]
I use the style Subtitle
in my cells. I do not know if it's relevant but the description has signs about 4000. Is this a problem?
This is the information that I want to store.
EDIT: to reduce misunderstandings so I post here again code
Parser *parser = [[Parser alloc] initWithContentsOfURL:url];
parser.rowElementName = @"item";
parser.elementNames = @[@"title", @"link", @"pubDate", @"description"];
// parser.attributeNames = @[@"img src="];
[parser parse];