I just set up some custom url schema in xcode for my project, and added a new event in the Calendar with the schema on my iphone which has the app loaded.
if i bring up a EKEventViewController it shows the url in the notes area as a blue link but when i look at it in the calendar the url is not recognized.
when i use a more standard url like http://www.google.com in the notes, the url turns into a link like the view controller.
Is this an error, a known bug, or what?
if i was going to report it as a bug where do i go to find out how, and what can i expect?
if it is not a bug, then what am i doing wrong?
I have added this to the info plist and it works well everywhere except the notes portion of calendar
<key>CFBundleURLTypes</key> <array> <dict> <key>CFBundleURLName</key> <string>com.company.appname</string> <key>CFBundleURLSchemes</key> <array> <string>appextension</string> </array> </dict> </array>
Thanks,
David Jackman
|