从 Mac OS X 复制不会复制到 iPhone 模拟器

在我的 iPhone 应用程序,我有许多 ASCII 艺术,我需要插入到数据库。

我使用模拟器和粘贴文本视图中的文本插入 ASCII 艺术数据库。

这里的模拟器剪贴板一旦粘贴艺术正确,但当我复制另一个艺术然后也粘贴到文本视图以前的艺术。

如何解决这个问题? 有没有解决这个问题的方法或者更好的方法?

25404 次浏览

Check out the text property of the UITextView. Simply load your textpic into an NSString, and set that string to be the text property of the TextView.

http://developer.apple.com/library/ios/#documentation/uikit/reference/UITextView_Class/Reference/UITextView.html%23//apple_ref/occ/instp/UITextView/text

Got the solution:

From iPhone Simulator menu.

Third option: Restore Content and Settings.

You will lose all the apps installed in the simulator along with the settings.

Got this working for me.

I was getting frustrated with copy and paste in the simulator and couldn't figure out what was going on.

Results were similar to what you describe: copy and paste would sometimes paste the same value as I had copied before, but not what I just copied to the clipboard.

I finally realized that the simulator has it's own clipboard, separate from the main OS X clipboard.

You use the touch-based copy and paste commands to paste into your application from the simulator clipboard.

You can use the standard OS X copy paste shortcuts (Command-X,C,V) to paste from the system clipboard into the simulator clipboard.

So to copy and paste from Chrome (for example), you select the text in Chrome, Command-C to copy. Then switch to the simulator, Command-V to paste into the simulator clipboard. Then in your application, you simulate a touch in the textfield to bring up the paste option, then simulate a touch to the paste button to paste the simulator clipboard contents into the app.

The menu options do the same thing as the keyboard shortcuts--copy/paste between the system clipboard and the simulator keyboard.

Now that I figured it out, I actually like it much better than if the simulator clipboard was automatically tied to the OS X clipboard.

  • + C - Copies the contents of the iOS clipboard to OS X. This works for both text and images.
  • + + C - Copies the selected text (or whatever else responds to the copy: selector in your app) to the iOS clipboard. This one does not appear in the menu.
  • + + C - Copies a screenshot of the iOS app (without the simulator's chrome) to the OS X clipboard (Use + S to save it to a file on the Desktop instead).
  • + V - Copies the contents of the OS X clipboard over to iOS, but doesn't paste it. Again, this works for both text and images.
  • + + V - Pastes the OS X clipboard in the iOS app, but leaves the clipboard unchanged. This does not work with images.

Source: http://olemoritz.net/copypaste-in-the-ios-simulator.html

You can copy the content from mac using ⌘ + ⇧ + C and paste in browser url using ⌘ + V .

It's working for me.

This is strange issue in my pc. I have macOs Sierra 10.xx++ installed in my mac. What i do is ,

  1. Copy the content from your mac using command + c or keyboard.

  2. Now press command + v in the particular place you want to paste the content.

  3. Now Paste in the simulator using command + shift + v

Working well. Confirmed answer.!

From Xcode 9.0 or above:

  • Open simulator

  • Click on "Edit" from top menus

  • Enable -> "Automatically Sync Pasteboard"

  • If already enable then disable it and enable again.

  • Long press to paste your text i.e copied

Below Xcode 9.0

  1. Copy text from anywhere
  2. Paste on the simulator by command (command + v), it will show nothing
  3. Then press (command + shift + v)

it works for me

In Xcode 9 or above: 1. Active simulator 2. Check menu "Edit -> Automatically Sync Pasteboard" 3. Enjoy :)

As a last step try to restart Xcode and iOS simulator
Menu -> Hardware -> Restart

I searched for an answer for this for some time. For Apple Silicon (M1) I eventually found a page where some users had tracked it down to an issue with iOS 14+. When I installed switched to a simulator iOS 13.7 as instructed (see link) pasting worked again. While this is clearly not what was going on with the original question (10 years ago!), I am pasting here in case someone else has this issue.