What NSData can display a UITextView from an NSTextAttachment?

I have successfully used NSTextAttachmentin UITextViewfor some time, but only ever used a property image, for example:

NSTextAttachment *attachment = [[NSTextAttachment alloc] initWithData:nil ofType:nil];
attachment.image = [UIImage imageNamed:@"someImage"];

I am interested in trying to use initWithData:ofType:, however, I cannot find documentation describing which type the NSDataclass NSTextAttachmentthat can be mapped to supports UITextView.

For example, can I transfer data NSStringor some UIView? Or even a PDF? Or is it limited by actual data UIImage?

+4
source share
1 answer

, , ( , , RTF). . , PDF Mail, , , pdf UIImage, pdf . Mail. , , , UITextView , : , , , .

+2

Source: https://habr.com/ru/post/1568219/


All Articles