Xcode Playground卡在运行状态

时间:2018-07-16 15:13:22

标签: xcode macos

我的Xcode Playground中有此代码。

//: Playground - noun: a place where people can play

import UIKit

func calcBMI(weight : Double, height : Double) -> String {

    let bmi = weight / pow(height, 2)

    let ShortenBMI = String(format: "%.2f", bmi)


    var result = ""

    if bmi > 25 {
        result = "You're overweight."
    }else if  bmi > 18.5 {
        result = "You're normal weight."
    } else {
        result = "You're underweight."
    }

    return "Your BMI is" + String(ShortenBMI) + " and " +  result
}

var bmiResult = calcBMI(weight : 85, height : 1.8 )

print (bmiResult)

我不确定为什么我的Xcode似乎无法运行。

enter image description here

有没有办法检查出什么问题了?

我尝试重新启动Xcode并看到相同的结果。

1 个答案:

答案 0 :(得分:0)

这都是因为iCloud。如果您在“设置”中选中“ iCloud驱动器选项”,则会发现Playground默认情况下一直在同步。

只需转到:

系统偏好设置-Apple ID-在此Mac上使用iCloud的应用程序-iCloud Drive-选项-然后取消选中“游乐场”

这个小技巧将阻止同步并解决冻结的“正在运行”。

Prevent Playground from sync