views:

20

answers:

1

Hi,

in my MyDocument class I need to determine if there is an image in my NSTextView, so I can prevent users from saving documents as RTF although RTF doesn't support images.

Could someone point me in the right direction?

+1  A: 

Is there a reason you can't support RTFD for documents with images, like TextEdit does?

If that really isn't an option, ask your attributed string whether it contains attachments. That's what embedded images are: attachments.

Also, you shouldn't use your views as storage classes. The document itself should own the text and expose it in a property, and you should bind the text view's value to that property.

Peter Hosey
Of course I support RTFD! The problem is simply that if there is an NSTextAttachment in my NSTextView, it shouldn't offer saving as RTF since RTF doesn't support images, but offer to save as RTFD instead :)
David Schiefer