Copy paste text into iOS simulator

2019-03-08 07:08发布

This must be documented somewhere, but I can't find it.

In my app using the iPad simulator there is a textfield into which I want the user to paste text. In the real world the user will copy the text from Safari address into the textfield. But I am trying to do that in the ios ipad simulator, but with only partial results.

After I reRUN the app, I can immediately paste text into the textfield with the Mac's Edit|Paste Text menu or with Shift-Command-V, (but not with just Edit|Paste, but that's Ok). The need for the Shift is annoying but I can live with it.

But then if I try to copy another URL on the Mac and then again, Edit|Paste Text or even use the Paste bubble on the simulator, I don't get the new text, but the original text.

Is that common? Is that a feature of the simulator that it is not connected live to the clipboard on the host computer?

标签: ios clipboard
12条回答
\"骚年 ilove
2楼-- · 2019-03-08 07:20

What worked for me is this.

1) copy text from Mac

2) In simulator do edit->paste or Command V (I think this copies the text from mac clipboard to iOS Simulator clipboard).

3) Highlight the textfield in simulator and then do command + Shift + V.

查看更多
再贱就再见
3楼-- · 2019-03-08 07:25

⌘ + V : When iOS simulator is in front,copy the contents of the OS X clipboard over to iOS, but doesn't paste it. Again, this works for both text and images.
So you need to do as follows:
1.copy text anywhere in your macOS except iOS simulator.
2.in iOS simulator, click ⌘ + V, copy text from macOS clipboard to iOS simulator's clipborad.
3.in iOS simulator, TextField or TextView click -> Edit ->Paste.

查看更多
家丑人穷心不美
4楼-- · 2019-03-08 07:26

I updated to os x 10.13.6 and xcode 10.1 and there is an added menu in edit

click get pasteboard then you will be able to paste via the paste tooltip in simulator

查看更多
疯言疯语
5楼-- · 2019-03-08 07:28

Please click "Automatically sync pasteboard" option in Simulator edit option.

enter image description here

查看更多
倾城 Initia
6楼-- · 2019-03-08 07:35

Be careful to avoid conflating the mac's clipboard with the simulator's clipboard. They are not the same.

The simulator is simulating an iOS device, with it's own iOS clipboard which apps running on that device (simulator) use via the iOS pup-up select-all/copy/paste UI items.

Completely separate from that: your mac has it's own clipboard and content. The Simulator program running on your mac provides the Edit > Paste Text menu item. The program implements that menu item by accessing your mac clipboard and types the text into the simulator as if the user used the keyboard. The iOS clipboard is neither accessed nor affected by the Simulator application's Edit menu functions.

Update: As of Xcode 6, you need to choose the Edit > Paste menu item in the iOS Simulator (this transfers the data between the Mac clipboard and the iOS Clipboard), then tap in the field in the simulator and tap the "Paste" bubble.

In your question you don't specify which "Safari" you're copying the URL from. It could be the mac safari application or the simulator's safari app. Doing a copy from the mac safari program goes to the mac clipboard, doing a copy from the safari app goes to the iOS clipboard inside the simulator.

I think your issues are coming from confusing the two, thinking there's one clipboard everything is sharing.

查看更多
Viruses.
7楼-- · 2019-03-08 07:36

Three steps:(The key point is make sure that the "Paste" help menu is keeping visible when you use " ⌘ + V".)

  1. make sure you select the point you want to past in the simulator, and the editMenu with "Paste" is show.
  2. use keyboard on mac," ⌘ + V", to paste the text into simulator clipboard.
  3. click the "Paste" on editMenu that show above, to paste the text into simulator textField.

enter image description here

查看更多
登录 后发表回答