Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

So basically I have quite a dilemma and I don't have a solution.

I want to create an iPhone application that calls on the Translation and Transliteration API from Google. The translation API works in php so I can call it using a REST call from the iPhone app.

The Google transliteration API only works in JavaScript. JavaScript renders when the browser runs the JavaScript code so how would I call a JavaScript library from an iPhone app so result can return back to me?

share|improve this question
The only thing you can try is to analyse the JavaScript Code and the Requests it sends to Google Servers e.g. using Firebug. When you know what exactly happens it shouldn't be a problem to build this request in Objective C. – audience Jan 12 at 13:18

migrated from webapps.stackexchange.com Jan 12 at 13:07

1 Answer

You can run the javascript code from the objective c with the help of UIWebview using following

[webView stringByEvaluatingJavaScriptFromString: [NSString stringWithFormat:@"myJSFunction(%@)", parameters]];

You can even get back the response Try this trutorial

Hope this will help you in anyways.

share|improve this answer
I will try it and get back to you. – Perjia Jan 13 at 1:59

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.