iOS 8 Swift CS193P计算器错误开关操作

时间:2015-06-22 13:57:35

标签: ios swift

我刚开始学习Swift和斯坦福大学的教程。我有Xcode 6.3.2。 我在switch操作中遇到了一个错误,无法理解如何解决它。

我也附了一个截图

@IBAction func operate(sender: UIButton) {
        let operation = sender.currentTitle!
        if userIsInTheMiddleOfTypingANumber{
        enter()
        }
        switch operation{

        case "➕": performOperation {$0+$1}

        case "✖️": performOperation {$0*$1}

        case "➗": performOperation {$1/$0}

        case "➖": performOperation {$1-$0}

        default:break
        }

    }
    private func performOperation(operation : (Double,Double)->Double){
        if(operandStack.count>=2){
            DisplayValue = operation(operandStack.removeLast(),operandStack.removeLast())
            enter()
        }

    }

Xcode Error

1 个答案:

答案 0 :(得分:5)

您的代码看起来很好,看起来您不小心在代码中放置了一个断点,看到绿色突出显示的行左侧的蓝色箭头?

执行以下操作之一:

  • 继续右键单击,然后点击删除断点
  • 将该断点拖放到视图控制器中

当您执行以下列出的操作之一时,您的程序将顺利运行

别担心,您将开始关注这些简单的修补程序,您将能够获得更多编码。

查看此内容,了解有关 Adding, Disabling, and Deleting Breakpoints 的更多信息。