我发现当我(作为应用程序的用户)将富文本从 UITextView 复制到粘贴板时,粘贴板包含两种类型:
"public.text",
"Apple Web Archive pasteboard type
基于此,我在 UIPasteboard 上创建了一个方便的类别。
(大量使用此答案中的代码)。
它有效,但是:
转换为 html 格式意味着我将丢失自定义属性。任何干净的解决方案都将被欣然接受。
文件 UIPasteboard+AttributedString.h:
@interface UIPasteboard (AttributedString)
- (void) setAttributedString:(NSAttributedString *)attributedString;
@end
文件 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
只实现了setter。如果您想编写 getter 和/或将其放在 GitHub 上,请成为我的客人 :)