I have requirement where user edits notes for Rich text editing features. Then user syncs these notes to sharepoint. My question is, does sharepoint column type support storing an attributed string OR I would have to convert NSAttributed strings to HTML tags ? Does sharepoint support storing unicode character attributed strings OR HTML pages as column type
I have requirement where user edits notes for Rich text editing features. Then user
Share
Convert the
NSAttributedStringtoNSDatausingNSKeyedArchiverand upload:Download the data from the server and convert it back to the
NSAttributedStringusing:Generally I upload
NSAttributedStringsin two formats:NSAttributedStringto make sure I can later retrieve exactly the same object.NSAttributedStringto allow search and display server side.