Copy paste text into iOS simulator

IosClipboard

Ios Problem Overview


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 Solutions


Solution 1 - Ios

I found that even with Edit > Automatically sync pasteboard ticked, the feature didn't work.

However, simply unticking and then reticking this option fixed the feature!

Hope it works for someone.

Solution 2 - Ios

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.

Solution 3 - Ios

Copy text on the mac, then click the text field in the simulator and press

Shift Command V

Solution 4 - Ios

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

enter image description here

Solution 5 - Ios

Xcode 10.0+:

Turning the Automatic Pasteboard Sync off and then back on again solved the issue.

You might have to do that multiple times. Sometimes it takes a while to trigger it for some reason.

(Edit -> Automatic Pasteboard Sync)

Solution 6 - Ios

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.

Solution 7 - Ios

Similar thing happened to me and I found a strange workaround, it may help anyone else that may come across the same issue. Try the following steps:

  1. Disable and then re-enable the Automatically Sync Pasteboard option, it's found under the Edit menu on the Simulator
  2. Copy the text you want from your Mac
  3. Paste the text again on your Mac on a text editor like Atom or even your browsers Address Bar
  4. Select all the text Cmd+A and then cut/copy Cmd+X/Cmd+C
  5. You should now be able to paste the text on the simulator

Solution 8 - Ios

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

Solution 9 - Ios

In a new emulator, I got no "paste" option and sync did not work for the simulator. It appears that in the simulator you MUST copy something to the internal clipboard before the sync actually works.

Solution 10 - Ios

Nothing from the above solutions worked for me. I am using M1 Apple. The thing that worked was this thread https://github.com/flutter/flutter/issues/74970

In short, if you are using iOS 14.0 to build the app, you will have the above issues.

In order to solve it, what I did was installing iOS 13.7 in xCode by going to Preferences -> Components -> iOS 13.7 -> then rebuild the app in the xCode.

Solution 11 - Ios

Just Disable and then re-enable the Automatically Sync Pasteboard option from Edit menu, fixed my problem.

Automatically Sync Pasteboard

Solution 12 - Ios

None of these solutions worked for me. I'm using Simulator 11.4. And after trying each of these, I realized all I needed to do was copy something on my Mac using Command + C, and then in the simulator text field, simply hold down the mouse click for an extra second or two, and the paste menu popped up automatically, and worked great.

enter image description here

Solution 13 - Ios

After trying a lot and nothing work on M1 Macs and simulator above 14 I have taken the different route to solve problem.

Apple script to type the text in simulator.

tell application "System Events"
set texttosay to "Sample Text"
display dialog "Text to type:" default answer "white: "
set texttosay to the text returned of the result
repeat
	delay 2
	repeat 1 times
		keystroke texttosay
		delay 1
		keystroke return
	end repeat
	exit repeat
end repeat
end tell

Steps:

  1. Run above script in apple scripts and paste the text in dialogue box you want to type in simulator.
  2. click the input-box to populate the value.

Hope that helps in your problem.

Thanks

Solution 14 - Ios

Sometimes it's very difficult to type long URLs in iOS simulator. There should be some way to copy URL from Max OS to iOS text field. Here's how you can do it:

  • Copy some text from Mac
  • Open the simulator and click on a text field where you want to paste the text
  • Now in Simulator menu click on Edit -> Paste Text

and that's it. Your text from the Mac OS copy buffer should now be there in iOS simulator's text field.

Solution 15 - Ios

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

Solution 16 - Ios

sometimes you just need to select Hardware -> reset content and settings in simulator menu. then all works automatically as easy and transparent as working in MacOS with other applications

Solution 17 - Ios

This works for me. On Safari version 8.0.3 and IOs simulator version 8.1

  1. Copy text from Safari - highlight text then cmd-v or Edit>Copy.
  2. In Ios Simulator click Edit>Paste.
  3. On TextField or TextView right click then select Paste.

Solution 18 - Ios

This is what I found.

  1. Copy text from mac.
  2. In simulator open safari and highlight the address bar by clicking it.
  3. Press Cmd + V
  4. Click once on address bar.
  5. Paste drop down shall appear.
  6. Tap on paste.

Shift + Cmd + V works great too.

Solution 19 - Ios

⌘ + 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.

Solution 20 - Ios

None of the solutions here worked for me. I am using an M1 Mac and the solution in this thread worked for me: https://github.com/flutter/flutter/issues/74970

In short, if you are using iOS 14.0 to build the app, you will have these issues.

In order to solve it, I installed iOS 13.7 in Xcode by going to > Preferences -> Components -> iOS 13.7

Then rebuild the app in Xcode.

Hope it helps you and you won't waste 45 minutes of searching.

Attributions

All content for this solution is sourced from the original question on Stackoverflow.

The content on this page is licensed under the Attribution-ShareAlike 4.0 International (CC BY-SA 4.0) license.

Content TypeOriginal AuthorOriginal Content on Stackoverflow
QuestionzerowordsView Question on Stackoverflow
Solution 1 - IoshardangerView Answer on Stackoverflow
Solution 2 - IosBill PattersonView Answer on Stackoverflow
Solution 3 - IosShaneView Answer on Stackoverflow
Solution 4 - IosChathurkaView Answer on Stackoverflow
Solution 5 - IosKirill KudaevView Answer on Stackoverflow
Solution 6 - IosRajashekarView Answer on Stackoverflow
Solution 7 - IosMansur76View Answer on Stackoverflow
Solution 8 - IosDaniel LizikView Answer on Stackoverflow
Solution 9 - IosEliramView Answer on Stackoverflow
Solution 10 - IosDigital DomView Answer on Stackoverflow
Solution 11 - IosMor4ezaView Answer on Stackoverflow
Solution 12 - IosbgarrView Answer on Stackoverflow
Solution 13 - IosAashutosh PrakashView Answer on Stackoverflow
Solution 14 - IosAdil MalikView Answer on Stackoverflow
Solution 15 - IosJerryZhouView Answer on Stackoverflow
Solution 16 - IosNikolay ShubenkovView Answer on Stackoverflow
Solution 17 - IosOhmyView Answer on Stackoverflow
Solution 18 - IosRishabView Answer on Stackoverflow
Solution 19 - Ioswj2061View Answer on Stackoverflow
Solution 20 - IosDigital DomView Answer on Stackoverflow