ChatGPT解决这个技术问题 Extra ChatGPT

Xcode playground gets stuck on 'Running playground' or 'Launching simulator' and won't run the code, what to do?

Every time I create a new playground in order to test some code, Xcode gets stuck and won't run the code. It simply presents 'Running playground' or 'Launching simulator' statement at the top of the screen with the loading icon promisingly spinning next to it but nothing happens. Sometimes this continues indefinitely and sometimes Xcode halts and prints this to console :

Playground execution failed: error: Couldn't lookup symbols:
__swift_FORCE_LOAD_$_swiftCoreImage 
__swift_FORCE_LOAD_$_swiftFoundation 
_playground_log_hidden 
_playground_logger_initialize 
_playground_log_postprint 

thread #1: tid = 0xc0cd0, 0x000000010ea7c3c0 MyPlayground`executePlayground, queue = 'com.apple.main-thread', stop reason = breakpoint 1.2

frame #0: 0x000000010ea7c3c0 MyPlayground`executePlayground
frame #1: 0x000000010ea7b9c0 MyPlayground`__37-[XCPAppDelegate enqueueRunLoopBlock]_block_invoke + 32 
frame #2: 0x000000010f59625c CoreFoundation`__CFRUNLOOP_IS_CALLING_OUT_TO_A_BLOCK__ + 12
frame #3: 0x000000010f57b304 CoreFoundation`__CFRunLoopDoBlocks + 356
frame #4: 0x000000010f57aa75 CoreFoundation`__CFRunLoopRun + 901
frame #5: 0x000000010f57a494 CoreFoundation`CFRunLoopRunSpecific + 420
frame #6: 0x0000000114985a6f GraphicsServices`GSEventRunModal + 161
frame #7: 0x0000000110124f34 UIKit`UIApplicationMain + 159
frame #8: 0x000000010ea7b6e9 MyPlayground`main + 201
frame #9: 0x0000000112ad268d libdyld.dylib`start + 1
frame #10: 0x0000000112ad268d libdyld.dylib`start + 1

I am running Xcode 8.0 (8A218a) on macOS Sierra 10.12.

Hardware: MacBook Pro (13" Mid-2012) 2,5 GHz Intel Core i5 4 GB 1600 MHz Ram DDR3

I have looked around but at least neither of these threads have provided an answer:
https://forums.developer.apple.com/thread/5902
https://github.com/jas/playground/issues/9

Things I have already tried with zero success:

Restarting Xcode

Reinstalling Xcode (downgraded to 7.3 but since that didn't help I upgraded back to 8.0)

Restarting the machine

Creating a new playground

Do you have any ideas on how to solve this problem? I am new to programming and eagerly trying to learn Swift but Xcode is making it practically impossible...

Thank you in advance, cheers.

Thank you for your quick reply. I am using playground simply because I actually have an active subscription at Treehouse.com and they encourage using playground when testing new concepts.
I understand, but my thought is, you are "eagerly trying to learn Swift" and right now you are stuck. If you can make a new app project and run it, you can proceed. Now, if you also can't run an app project, then you have deeper issues. :)
That is definitely true. Thank you for your input matt, I'll do as you suggested as long as there is no better solution. I'll nevertheless still keep this thread active in case someone has figured out a solution.
I have no advice to give here, @EmilOsvald. I can report this happens frequently on my MacBook as well (and happened all the time when I used iMacs, too, all new machines with the latest updates). You should not feel at fault for wanting to use Playgrounds. In theory they are a great product and when they work they are.
There should be no spaces before the first comment (if the first line of text is a comment), nor an empty line as the first line. Let me know.

P
PANKAJ VERMA

Ans. Switch to macOS platform

When you create a Playground, by default it select iOS platform and automatically imports UIKit. It's the UIKit which crashes and stuck all the time. If your (practice) code does not use UIKit then you can switch to MacOS platform. As major (not exact though) difference between iOS and macOS is in APPKit and UIKit.

In the upper right corner of your Xcode Playground, click on show/hide Utilities--> file inspector --> Playground Setting--> Platform--> macOS

https://i.stack.imgur.com/nj8cY.png


This seemed to work for me along with setting the playground execute button to manual. Will they ever fix this though, it just seems a bit trashy
Thanks it works good when using Foundation, exactly what I needed. I can't believe Playgrounds have so much bugs...
Ridiculous. 3 lines of code (none of which imports UIKit) and I have to google this. A lot of people would just give up and declare Swift useless.
This doesn't work for me. I'm using Xcode 9.4.1 (not the beta), and I have to continually restart Xcode. Pretty lame ...
Also, if the playground gets big enough, Cmd+Shift+Enter stops working. Who the hell programmed this crap? Kids using Playgrounds on iPad?
c
commanda

I have tried the following and it worked for me:

press on the bottom "stop playground" button remove the first comment line and make import statement the first line. no space above import. press execute button


I found that no space should be present before a comment either - but you can have a comment as the first line. Just no empty line before it, nor indentation before it, on its line.
I would add to that the need to restart Xcode. It seems to work for me.
Worked for me. I cannot believe how ridiculous this bug is. Apple should be ashamed.
restarting xcode was the only thing that worked for me
Awesome. I tried quitting xcode, clearing derived data etc. but nothing worked except this. Although I already had import at the first line!
K
Khoa Vo

In my case, Xcode 8.3.2, it works when I try as steps below:

File -> Close "Name.playground" File -> Close Playground Quit Xcode Re-open Xcode


Offering something besides me too, does anyone using modern XCode have an insight on the root cause of this failure? This turns out to be the best non-invasive work around, however, I wouldn't consider anything short of problem resolution a solution. Do comments in the playground header really have any part in the problem? And what does Apple say in regards to the cause?
This worked for me along with removing the empty line before my print statement.
Ug, what a crappy way to have to work around an IDE issue.
Agreed, this is super lame.
Im on Xcode 13.1 and this keeps happening I can't believe they haven't fixed it yet.
d
dbv

Buggy Simulator's main process is still working even after Xcode closing. So here're the steps:

Quit Xcode; Kill com.apple.CoreSimulator.CoreSimulatorService process in Activity Monitor; Launch Xcode and run your Playground.


I like this answer more than other answers because it gets more to the heart of the matter
Do i need to do this every time?
C
Cœur

In my experience, you should:

Prevent Swift playground refresh, by holding: the ► arrow at the bottom left part of the Playground and selecting "Manually Run" Quit Xcode Restart Xcode

It works very well.


But isn't the whole point of Playground to run your code as it's written?
S
SiBC

Adding import PlaygroundSupport solved the problem for me :)


Interesting. Where did you get this from?
If it's as effective as you say, you'd think the devs would have that included by default. I'll experiment with this. Thanks!
F
Fiveagle

I have cancelled the comment on the first line. It solved for me. Make sure to try it after you have closed and relaunched Xcode and force quit com.apple.coresimulator from Activity Monitor


On XCode 8.2.1, this worked for me. Once I deleted the first line comment about playgrounds, it ran quickly. I did not have to force quit the simulator.
Thanks to @Fiveagle answer. I had, indeed, to force qui the coresimulator process, remove the first lines so "import UIKit" is the first line. And restarting XCode made the tricks, but the first compilation took a while to perform.
S
Sandhu

https://i.stack.imgur.com/PZ8eX.png


A
Asad Abbas

Make sure you kill xcode in the activity monitor before eventually killing com.apple.CoreSimulator.CoreSimulatorService process in the activity monitor. I tried killing the process a number of times and I realized if xcode is still running in the background activity then the com.apple.CoreSimulator.CoreSimulatorService process would pop up again even when you just killed it.


F
Farisk

I had the same problem, all that I did is to open Assistance editor and everything works fine with me even when I closed the Assistance editor! Don't ask why it was trial and error. Hope this will help you


That's actually a great idea. Since the play/stop button doesn't agitate the process or force a refresh, I guess you can think of toggling the Assistant Editor on and off as a replacement for the play button lol. Awesome :)).
a
apunn

After beating my head on this for a few hours, I realized I had accidentally deleted this, VERY MUCH important line that allows to test UIKit elements before committing my playground onto git:

// Present the view controller in the Live View window
PlaygroundPage.current.liveView = MyViewController()

Facepalm. Hopefully this can help someone from pulling their hair out for a few hours.


p
pkamb

I'm using Xcode 10.2 and am getting the same issue. So generally just use Online Swift Playground

This serves my purposes! :-)


M
Mozahler

In my case the problem was user-induced. I had the assistant editor displayed, but the live view wasn't selected. Make sure it looks like this:

https://i.stack.imgur.com/YCkKy.png

And not like this:

https://i.stack.imgur.com/tsLHM.png


Thanks, this was indeed my issue. On XCode 14 now, and it seems to randomly close windows between compiles sometimes
V
Vitya Shurapov

For me, the issue was the fact that MyPlayground was syncing to iCloud. Xcode saves your files every few seconds, and it leads to "not responding" states.

So there is a simple solution- just go to:

System Preferences - Apple ID - Apps on this Mac using iCloud- iCloud Drive - Options- And then uncheck "Playground"

That little trick helps to solve frozen "Running".

https://i.stack.imgur.com/DxXuw.png


This answer is wrong. What you are suggesting affects the Playgrounds app and has no effect on Xcode playgrounds (i.e. .playground files) stored in iCloud Drive.
Unchecking this flag somehow helped my Xcode playgrounds to get things done. Anyway in macOS Big Sur, there is no playgrounds option on iCloud Drive ;)
z
zeytin

XCode 12.3 and still same issue happens.

Solution for me is Command + Q ( restart the Xcode )


C
Community

after runnning a while you will see error message then you go to view>debug area > activate console and then play again worked for me


What is a while? 5 minutes? A day?
from 5 to 15 min maybe, after some weeks of this problem I changed to SSD and upgraded to 16GB RAM Memory and its solved, like day and night change
t
theNoobDev10

Check for iCloud storage plan!

If you do have one, it constantly syncs the entire computer which includes Desktop and Document folders. Instead try creating a "Local Files" folder in your Home folder(command+shift+h) and keep your Playground projects there, where it doesn't sync to iCloud.

This worked for me.I hope this works for you as well! :)


This actually worked for me. Anyone else who has this problem really should try it.
m
msimons

Also happens, like in my case, when you've defined a function, but have forgotten to call it?


p
pd95

As if this question didn't have enough answers, I will provide my "solution" to the stuck Swift playgrounds problem:

The one solution I've come across which works nicely for me (so I do not have to restart Xcode):

killall launchd_sim

This will cause the spinning "Running Playground..." to go away and you can trigger a new execution. Be aware: the next execution is going to spin up launchd_sim and all those child processes again. It would probably be best to kill only the relevant child process. But I didn't find it so far.

But I do this only when I'm not using the iOS Simulators in parallel, as the launchd_sim process is a child process of Simulator.


C
Cœur

I deleted derived data and clean build folder. This works for me. I was facing with Xcode 11.2.1 and Xcode 10.1 on same machine.


K
Kelvin Jou

To speed up the build in Xcode Playground and prevent the loading icon to keep spinning forever:

go to the sidebar on the right, and change iOS to macOS in Playground Settings instead of importing UIKit, import Foundation

(this would work if you're not trying to use specific stuff from tthe UIKit framework)


F
Fortran programmer

I got this answer from : Ioannis Diamantidis - How to fix Xcode Playground getting stuck on "Running". I am using Xcode version 13.2.1 with a Mac Mini M1. I went to the playground icon on the top right corner - Hide or show the Inspectors, it says Playground Settings , I select in Platform macOs. now my playground is running perfect, I see the results everywhere


a
amagain

I was facing the same issue but after googling and experimenting a bit, I found out that one must always import UIKit before importing any other libs.


H
Harry McGovern

Firstly, delete the inbuilt comment line.

https://i.stack.imgur.com/8Ev4R.png


a
ahbou

One last tip that works for me: Make sure no iOS simulator is running. They conflict with each other.


关注公众号,不定期副业成功案例分享
Follow WeChat

Success story sharing

Want to stay one step ahead of the latest teleworks?

Subscribe Now