我正在尝试将我的“DescriptionLabel”复制到粘贴板。DescriptionLabel 设置为 UITextView (我知道这个名字有点混乱......)。反正,
- (IBAction)copy:(id)sender {
UIPasteboard *appPasteBoard = [UIPasteboard generalPasteboard];
appPasteBoard.persistent = YES;
[appPasteBoard setString:@"This text is being copied"];
}
代码中的字符串正在被复制,但我无法让它复制我的 UITextView/DescriptionLabel。这个:
[appPasteBoard setString:_DescriptionLabel];
不管用。
你们中有人知道我能做些什么来使它工作吗?这几天一直在纠结这个...