Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

getting google translate api for iphone

i want to use google translate api from the iphone.

what i found is : http://code.google.com/p/gdata-objectivec-client/

but in the list i can not see the translate api.

where i can found the library ?

thanks.

like image 926
yoni Avatar asked Dec 08 '09 15:12

yoni


2 Answers

I writed an objective-c wrapper for Google Translator service named PLTranslator. check it out at http://github.com/xhan/PLTranslator

like image 80
xhan Avatar answered Sep 24 '22 22:09

xhan


The Google Language API is provided as a web service. For non-javascript environments, you should be using JSON to communicate with Google's servers.

There doesn't seem to be an Objective-C wrapper to this functionality (like the ones you posted), so you'll have to roll your own. Thankfully, JSON is pretty easy to use on the iPhone.

like image 45
Ben S Avatar answered Sep 24 '22 22:09

Ben S