He encontrado que cuando (como usuario de la aplicación) Copia de texto enriquecido de un UITextView en la mesa de trabajo, la mesa de trabajo contiene dos tipos:
"public.text",
"Apple Web Archive pasteboard type
Basado en esto, he creado una categoría conveniente en UIPasteboard.
(con un uso intensivo del código de this answer).
Funciona, pero:
La conversión al formato html significa que perderé atributos personalizados. Cualquier solución limpia será aceptada con mucho gusto.
Archivo UIPasteboard + AttributedString.h:
@interface UIPasteboard (AttributedString)
- (void) setAttributedString:(NSAttributedString *)attributedString;
@end
Archivo UIPasteboard + AttributedString.m:
#import <MobileCoreServices/UTCoreTypes.h>
#import "UIPasteboard+AttributedString.h"
@implementation UIPasteboard (AttributedString)
- (void) setAttributedString:(NSAttributedString *)attributedString {
NSString *htmlString = [attributedString htmlString]; // This uses DTCoreText category NSAttributedString+HTML - https://github.com/Cocoanetics/DTCoreText
NSDictionary *resourceDictionary = @{ @"WebResourceData" : [htmlString dataUsingEncoding:NSUTF8StringEncoding],
@"WebResourceFrameName": @"",
@"WebResourceMIMEType" : @"text/html",
@"WebResourceTextEncodingName" : @"UTF-8",
@"WebResourceURL" : @"about:blank" };
NSDictionary *htmlItem = @{ (NSString *)kUTTypeText : [attributedString string],
@"Apple Web Archive pasteboard type" : @{ @"WebMainResource" : resourceDictionary } };
[self setItems:@[ htmlItem ]];
}
@end
colocador Sólo implementado. Si desea escribir el getter, y/o ponerlo en GitHub, sea mi invitado :)
hecho algunas ideas en UIPasteBoard y NSAttributedString, podría ser valiosa: http://stackoverflow.com/a/38211885/1054573 –