如何以编程方式从UITextView复制格式化文本(例如斜体),以便在粘贴到另一个程序(例如Mail)时保留格式?我假设正确的方法是将NSAttributedString复制到粘贴板。现在,我可以通过以下方式将常规字符串复制到粘贴板:NSString*noteTitleAndBody=[NSStringstringWithFormat:@"%@\n%@",[documenttitle],[documentbody]];UIPasteboard*pasteboard=[UIPasteboardgeneralPasteboard];pasteboard.string=noteTitleAn