I was playing around with the Playground feature of Xcode 6\'s first beta - and I notice half the time the Playground doesn\'t update (simply doesn\'t display the result calcula
Had the same strange errors after upgrading to xcode 6 beta 6. For me the problem got fixed with a Product -> Clean
. And if that does not fix the errors hold down option key and click again on Product
in the Menubar then you will see in the dropdown menu Clean Build Folder...
click on that. Or you could download Watchdog app from appstore. This little helper automatically cleans your xcode projects.
This answer (Undeclared Type 'NSView' in Playground) did it for me (restarting Xcode and the machine didn't help):
rm -rf "$(getconf DARWIN_USER_CACHE_DIR)/org.llvm.clang/ModuleCache"
You have to be very careful with swift. the language is very case sensitive so while using playground make sure all things are spaced out. The following code will NOT give you a syntax error but it will stop processing the rest of your code in playground :
for index in 1...5 {
if index %2 !=0{
continue
}
println(index)
}
The error in the code above is in line 2. The code has to be written
for index in 1...5 {
if index % 2 != 0 {
continue
}
println(index)
}
Hope that answers your question :)
Make sure you haven't inadvertently added an error to your Playground code. Unfortunately, there is no inline notification of an error, and after an error is created, nothing in the Playground will update.
To help with this, open up the Assistant Editor (File > View > Assistant Editor > Show Assistant Editor), which should include a Console Output box. If there are any errors in your Playground, they will show up there. Once corrected, your Playground should hopefully update once more.
That said, it can be a bit slow depending on the complexity of your Playground and its size.