Swift崩溃了每个内存地址跳转

时间:2014-10-19 03:51:36

标签: ios cocoa-touch swift

在过去的三个小时里,这一直困扰着我,我似乎无法理解它。

我有以下IBOutlet:

@IBAction func simulateTheDay(sender: UIButton) {
    if( self.iceCubesUsing == 0 || self.lemonsUsing == 0){
        showAlertMessage(message: "You need to use at least one lemon or ice cube")
    }

    var numberOfCustomers = 0;
    var winnings = 0;

    self.lemonToIceCubeRatio = self.lemonsUsing / self.iceCubesUsing
    self.lemonsToPurchase = 0
    self.iceCubesToPurchase = 0
    self.lemonsUsing = 0
    self.iceCubesUsing = 0
    self.customers = [];

    do{
        numberOfCustomers = Int(arc4random_uniform(UInt32(11)));
    }while( numberOfCustomers == 0)

    for(var i=0;i<numberOfCustomers;i++){
        self.customers.append(Customer(preference: Double(arc4random_uniform(UInt32(101)))/101.0))
    }
    winnings = standBrain.calculateWinnings(self.customers, acidity: self.lemonToIceCubeRatio)
    self.money += winnings

    updateAssets()
}

无论在哪里。是我班上的全局变量。 每当我点击绑定到此插座的按钮时,应用程序崩溃并突出显示顶部的if()语句,说&#34; EXC_BAD_INSTRUCTION(代码= EXCI386_INVOP,子代码= 0x0)&#34;

如果我将相同的代码复制到另一个IBAction中,它可以完美地运行。这是奇怪的一点。如果我删除if语句及其内容,它会在我的while语句中崩溃。如果我删除它,它然后崩溃我的for语句。如果我删除它,它会在函数结束时崩溃,在所有情况下都会出现相同的错误消息。

如果我只离开: showAlertMessage(message: "You need to use at least one lemon or ice cube")它似乎没有跳到我的职能部门。

我尝试删除IBOutlet并重新创建它,尝试在我的故事板中创建一个新的UIButton,并将其链接到新的IBOutlet,尝试清理项目,尝试清除iOS模拟器上的所有设置和数据。似乎没什么用。

以下是先前的堆栈跟踪,如果它有用的话。

LemonadeStand`@objc LemonadeStand.ViewController.simulateTheDay (LemonadeStand.ViewController)(ObjectiveC.UIButton) -> () at ViewController.swift:
0x10466a800:  pushq  %rbp
0x10466a801:  movq   %rsp, %rbp
0x10466a804:  subq   $0x30, %rsp
0x10466a808:  movq   %rdx, -0x8(%rbp)
0x10466a80c:  movq   -0x8(%rbp), %rdx
0x10466a810:  movq   %rdi, -0x10(%rbp)
0x10466a814:  movq   %rdx, %rdi
0x10466a817:  movq   %rsi, -0x18(%rbp)
0x10466a81b:  movq   %rdx, -0x20(%rbp)
0x10466a81f:  callq  0x10466e1a4               ; symbol stub for: objc_retain
0x10466a824:  movq   -0x10(%rbp), %rdi
0x10466a828:  movq   %rax, -0x28(%rbp)
0x10466a82c:  callq  0x10466e1a4               ; symbol stub for: objc_retain
0x10466a831:  movq   -0x20(%rbp), %rdi
0x10466a835:  movq   -0x10(%rbp), %rsi
0x10466a839:  movq   %rax, -0x30(%rbp)
0x10466a83d:  callq  0x10466a0e0               ;     LemonadeStand.ViewController.simulateTheDay (LemonadeStand.ViewController)(ObjectiveC.UIButton) -> () at ViewController.swift:65
0x10466a842:  addq   $0x30, %rsp
0x10466a846:  popq   %rbp
0x10466a847:  retq   

修改:添加了按钮的属性

Start Day Button Code

1 个答案:

答案 0 :(得分:0)

这里的属性正确吗?

enter image description here