How do I replace the values to variables.
NSURLRequest *request = [NSURLRequest requestWithURL: [NSURL
URLWithString:@"https://maps.googleapis.com/maps/api/place/search/json?location=-33.8670522,151.1957362&radius=500&types=food"]];
I would like to replace
1) -33.867
2) 151
3) 500
4) food
with variables in the URLWithString.
Thanks in advance.
I’m not sure if I got the latitude / longitude right or if it has to be vice versa, but anyway, you get the idea! 😉