I'm building a booking app for my shop that will be displayed in an enclosed case for my customers to use. As the app will be accepting payments I will need to launch Safari to process the payment through my website to avoid Apple's sale costs.
When I launch the payment site via
[[UIApplication sharedApplication] openURL:url];
is it possible to hide Safari's address bar?
The reason being I don't want my customers using the iPad to search the Internet (I plan on putting a cover over the home button so they can't press it).
I've had a look around as none of the proposed JavaScript or meta tag solutions seem to work.