1

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?

Alex Stone
  • 46,408
  • 55
  • 231
  • 407

1 Answers1

1

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

Community
  • 1
  • 1
Arda
  • 757
  • 10
  • 18