I'm getting http response in the form of a json object in my iOS app. The json object looks like
{
coupons = {
1 = "You have 20% off
};
latitude = "3.043";
"location_address" = "Pico";
"location_name" = Starbucks;
longitude = "-18.421964";
}
Now I want to send this as notification on my app. How do I do it? Any ideas? Thanks