Xcode 6 Beta / Swift - Playground not updating

折月煮酒 提交于 2019-12-03 11:34:58

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.

Michael Markowski

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"

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.

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 :)

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!