模拟器冻结在Swift,断点?

时间:2016-06-21 21:02:26

标签: xcode swift

iOS新手在这里挣扎于最初由导师带领的应用程序的早期阶段。此时发生的问题是在尝试按下“下一页”并将输入的数据保存到firebase时。在模拟器上,不是加载到下一页,而是将数据输入到firebase中,它会切换到这段代码:

    @IBAction func greetingSubmit(sender: AnyObject) {
    var myRootRef = Firebase(url:"https://xxx.firebaseio.com")
    let timestamp = NSDateFormatter.localizedStringFromDate(NSDate(), dateStyle: .MediumStyle, timeStyle: .ShortStyle)
    var painAndProgress = ["userID": myRootRef.authData.uid, "pain": painLevelSlider.value, "progress":progressSlider.value, "date":timestamp]
    var painAndProgressRef = myRootRef.childByAppendingPath("painAndProgress")
    var autoRef = painAndProgressRef.childByAutoId()
    autoRef.setValue(painAndProgress)
}

在倒数第二行,         var autoRef = painAndProgressRef.childByAutoId()

右边有一条消息:线程1:断点1.1 我认为是造成这种情况,但我不知道修复。

0 个答案:

没有答案