Reputation: 47328
I'm looking at two apps: native iOS Mail and Evernote and see that both of them allow embedding of little thumbnails representing audio files inline with text. Is this a native feature of a UITextView?
How can I add an inline photo or video thumbnail into a UITextView, like the Evernote app?
Upvotes: 1
Views: 2007
Reputation: 902
On iOS 7 or later, you can use NSTextAttachment to insert an inline image to UITextView. See this for an example: https://stackoverflow.com/a/20930656/1262685
For the video thumbnail, you'll need to create the thumbnail yourself. Here's one way to do it: https://stackoverflow.com/a/19530997/1262685
Upvotes: 1