This is my situation:
I created a layer that find Vision-POIs and I integrated the iPhone Layar Player SDK into my iPhone app.
When I find a POI I get an icon "info" on the POI framed. Clicking on the icon I want to connect it to a view controller that i created to show the details for this POI.
How can i set the URI actions to link the icon to a view controller? In the documentation there are no examples that show this case.
http://layar.com/documentation/browser/api/getpois-response/actions/#actions-uri
Thanks for the answers
I'm not familiar with the SDK and unfortunately the actions documentation is obviously outdated. However assuming the documentation is correct, you must be able to send the request to the wrapping application and intercept it at
UIApplication
openURL:
and pass the URL parameters to your show-info method (see the answer for details).