代码之家  ›  专栏  ›  技术社区  ›  PEZ

允许用户选择并复制TTStyledTextLabel中的文本

  •  0
  • PEZ  · 技术社区  · 13 年前

    我不确定这是不是 Three20 问题或一般的ios/iphone(我在这两个领域都是新手。)

    我正在使用 TTStyledTextLabel 在表视图中呈现样式化内容。现在我想允许用户选择文本并复制它。正在检查源 TTSTyledTextLabel 我发现:

    #pragma mark -
    #pragma mark UIResponderStandardEditActions
    
    - (void)copy:(id)sender {
      NSString* text = _text.rootNode.outerText;
      UIPasteboard* pasteboard = [UIPasteboard generalPasteboard];
      [pasteboard setValue:text forPasteboardType:@"public.utf8-plain-text"];
    }
    

    这表示标签已准备好帮助进行实际复制。但我不知道如何让它允许文本选择。

    有什么想法吗?

    1 回复  |  直到 13 年前
        1
  •  0
  •   PEZ    12 年前

    几年后重温。。。如果不大量重写TTStyledText类,这是不可能的。

    推荐文章