iOS Gurus,
I'm creating an iOS application that will respond to Custom URLs. When reading the documentation for handling a custom URL (API doc here: application:openURL:sourceApplication:annotation:), I see that the 4th argument is an annotation, defined as follows:
annotation
A property-list object supplied by the source application to communicate information to the receiving application.
However, when I look at the method for opening custom URLs (API doc here: openURL:), there is no way to define a "property-list" object. You can only specify the URL (which itself may have name/value parameters in the query string).
How can I pass a "property-list" object in addition to the URL to an application?