I am building an iPhone app, and I am trying to have a web view with embedded content, and I am trying to have a file returned from when a web view requests a file from the applications protocol. For example, protocol://app/style.css would return the contents of style.css in the Application Bundle, while protocol://documents/folder/image.png would access the file folder/image.png from the applications documents directory.
The Spotify Mac application does it with their apps, allowing developers to access the Spotify styling with an address similar to the //app/style.css method above. When the method is called from within the app, the styling file is returned, while when called outside of the app, then the application is simply launched.
customProtocol://app/style.cssor something similar. – z43 Studio Jun 14 '12 at 19:19