Since i convert webservice response into Json and assign into NSDictionary. When i print out the contents in dictionary then it gives the output below. My problem is How can i get email and password value from this output?
Key is post, Value is
(
{
post = {
"active_flag" = Y;
email = "g.amit@jasapp.com";
"first_name" = amit;
"last_name" = gupta;
"member_id" = 17;
password = amitgupta;
};
}
)
For example, if the
NSDictionaryyou are creating from JSON is namedjsonDict, the following code should work: