gpt4 book ai didi

iOS - Xcode 线程 1 EXC_BAD_INSTRUCTION

转载 作者:行者123 更新时间:2023-11-28 09:09:27 25 4
gpt4 key购买 nike

当我运行我的应用程序并尝试按下按钮 DONE 时,我看到:

Thread 1 EXC_BAD_INSTRUCTION.

代码如下:

import UIKit

class DeveloperViewController: UITableViewController {

@IBAction func cancelToPlayersViewController(segue:UIStoryboardSegue){
}

@IBAction func saveDeveloperDetail(segue:UIStoryboardSegue){

if let developerDetailsViewController = segue.sourceViewController as? DeveloperDetailsViewController{

developers.append(developerDetailsViewController.developer) //Here Thread 1

let indexPath = NSIndexPath(forRow: developers.count-1, inSection: 0)
tableView.insertRowsAtIndexPaths([indexPath], withRowAnimation: .Automatic)

}
}

var developers: [Developers] = developersData

// MARK: - Table view data source

override func numberOfSectionsInTableView(tableView: UITableView) -> Int {
// #warning Potentially incomplete method implementation.
// Return the number of sections.
return 1
}

override func tableView(tableView: UITableView, numberOfRowsInSection section: Int) -> Int {

return developers.count
}
override func tableView(tableView: UITableView, cellForRowAtIndexPath indexPath: NSIndexPath)
-> UITableViewCell {

let cell = tableView.dequeueReusableCellWithIdentifier("DeveloperCell", forIndexPath: indexPath)
as! UITableViewCell

let developer = developers [indexPath.row] as Developers
cell.textLabel?.text = developer.name
cell.detailTextLabel?.text = developer.type
return cell
}

我该如何解决我的问题?在另一个程序中一切正常。

最佳答案

我发现了我的错误!但是如果DDPWNAGE不问error log说什么,就没找到。我忘记了 1 个 ID。现在所有的工作

关于iOS - Xcode 线程 1 EXC_BAD_INSTRUCTION,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29755530/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com