Hello Friends,
I'm learning implementing web-services for iPhone.
Anyone please help me out to get data from following Webservice URL:
Request (HTTP GET)
Code:
http://api.stlouisfed.org/fred/category?category_id=125&api_key=78da607fc8224651eca5653e65a4be5e
Response:
Code:
<?xml version="1.0" encoding="utf-8" ?>
<categories>
<category id="125" name="Trade Balance" parent_id="13"/>
</categories>
I want to display category-name from the response in a UILabel.
Thanks.