string - Inserting carriage returns when sending text to the iOS Calendar -
i'm sending text ios calendar using following code.
event.title = " \(jobtitle) \r\n" + "\(jobdescription)"
this not work. don't carriage return. know of work around job titles , job descriptions display on multiline when sending event.title?
event.title = "\(jobtitle)\n\(jobdescription)"
should works.
note: not every view in ios calendar application correctly display multi-line title event.
for example:
ev.title = "testjobtitle\ntest job description"
Comments
Post a Comment