So basically I'm trying to learn more about iOS development and APIs, so I'm building an iOS app that allows people to search a zipcode and then it will return all of the restaurants currently open within a certain radius. I got the Google Maps API setup properly, but I'm running into issues with how to get that info.
I looked at the Google Places API and it looks like I will be able to get a JSON result and then I can just look for the "open_now" : true key/value. Currently, there is a Google Places API for Android and Javascript, but the iOS one is still in beta. Can I use this Javascript API to pass the JSON into my Obj-C code for iOS Development? Thanks!