0

私は UITextView を持っていて、ボタンのクリックイベントでその UITextView にテキストを貼り付けたいと思っています。

ボタンをクリックすると、どこからでもコピーしたテキストがその UITextView に貼り付けられます。

どうやってやるの?

前もって感謝します。

4

3 に答える 3

2
-(IBAction)buttonPressed:(id)sender
{
UIPasteboard *pasteboard = [UIPasteboard generalPasteboard];
MsgtextView.text = [NSString stringWithFormat:@"%@ %@",MsgtextView.text,pasteboard.string;
}

これをチェックして

于 2012-07-04T11:12:47.317 に答える
2

UIPasteboardクラス を使用できます。

于 2012-07-04T11:14:02.003 に答える
2

このコードを試してください



    UIPasteboard *pasteboard = [UIPasteboard generalPasteboard];
    textView.text = pasteboard.string;

于 2012-07-04T11:17:44.633 に答える