我正在为 iOS > 4.3 开发一个应用程序。
我正在寻找有关在视图或应用程序之间复制和粘贴文本的最佳实践。
你可以使用UIPasteboard
,
设置时:
UIPasteboard *pasteboard = [UIPasteboard generalPasteboard];
[pasteboard setString:yourtext];
同时获得(如果你有标签):
UIPasteboard *pasteboard = [UIPasteboard generalPasteboard];
pastelabel.text = [pasteboard string];
您可以参考粘贴板编程指南了解更多详细信息。