Comment 2 for bug 1024651

Revision history for this message
Esteban Lorenzano (estebanlm) wrote :

Ok, finally I'm having time to look at this... I suppose you refer here to add an option that opens the browser pointing to someplace, isn't?

in iOS, we do not have a primitive for that (thought I can add one to IOSPlugin), but you better do this in your application:

(ObjectiveCBridge classObjectForName: #UIApplication) sharedApplication
  openURL: ((ObjectiveCBridge classObjectForName: #NSURL) URLWithString: 'http://www.drgeo.eu' asNSStringUTF8).

let me know if this is what you were looking for.