I have check this and created an app to simply add event. My requirement is to add a deeplink to an app with some data params, but I do not want to display that in the URL
. I would rather prefer having a simple text, say "Open this link" added in place of URL to the calendar event in iOS swift. Is that doable? I tried adding HTML <a>
tag to notes like below, but it doesn't work
eventObj.notes = "Some Notes : <a href ='www.google.com' target='_blank'>Open this link</a>"
I would prefer to go without URL shortening.