Objective-C parse nested JSON string
Posted
by Matt S.
on Stack Overflow
See other posts from Stack Overflow
or by Matt S.
Published on 2010-05-14T23:37:33Z
Indexed on
2010/05/14
23:44 UTC
Read the original article
Hit count: 399
I've tried everything (every method that shows up on a SO search), but I can't get it to work.
I'm trying to parse this:
questions = (
{
owner = {
"display_name" = "Neil";
};
title = "Initialising ";
"up" = 11;
"view" = 92;
}
);
I'm trying to get the display_name under owner.
© Stack Overflow or respective owner