如何将NSAttributedString复制到粘贴板中,以允许用户粘贴或以编程方式粘贴(使用- (void)paste:(id)sender,来自UIResponderStandardEditActions协议(protocol))。

我试过了:

UIPasteboard *pasteBoard = [UIPasteboard generalPasteboard];
[pasteBoard setValue:attributedString forPasteboardType:(NSString *)kUTTypeRTF];

但是此崩溃与:
-[UIPasteboard setValue:forPasteboardType:]: value is not a valid property list type'

这是可以预期的,因为NSAttributedString不是属性列表值。

如果用户将粘贴板的内容粘贴到我的应用程序中,则我希望保留属性字符串的所有标准和自定义属性。

最佳答案

我发现,当我(作为应用程序的用户)将丰富文本从UITextView复制到粘贴板时,粘贴板包含两种类型:

"public.text",
"Apple Web Archive pasteboard type

基于此,我在UIPasteboard上创建了一个方便的类别。
(大量使用this answer中的代码)。

它有效,但是:
转换为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上,请成为我的客人:)

关于ios - 在UIPasteBoard中复制NSAttributedString,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/12601039/

10-12 05:44