I have gone through following question.
http://stackoverflow.com/questions/998554/convert-nsstring-to-nsdictionary
It is something different then my question.
My question is as follows.
NSString *x=@"<Category_Id>5</Category_Id><Category_Name>Motos</Category_Name><Category_Picture>http://192.168.32.20/idealer/admin/Picture/icon_bike2009819541578.png</Category_Picture>";
Now I want to convert this into a dictionary, something like this,
dictionary key = Category_Id | value = 5
dictionary key = Category_Name | value = ???
dictionary key = Category_Picture | value = ???
Don't know how to perform this?
Thanks for sharing your knowledge.
Sagar