我在UITableView中使用UIAlertController。它在tableview.delegate = self附近返回nil值。这里的alertC是呈现警报的功能。当按下按钮时,我从tableViewCell调用了alertC函数。

class AdminPlaces: UIViewController, UITableViewDelegate, UITableViewDataSource {

@IBOutlet weak var tableView: UITableView!
private var placeNames = [String]()

override func viewDidLoad() {
    super.viewDidLoad()
    self.getDataFromFirebase {
        self.tableView.delegate = self
        self.tableView.dataSource = self
        self.tableView.reloadData()
    }

   func alertC() {
    let ac = UIAlertController(title: "Delete", message: "Are you sure to delete the place", preferredStyle: .alert)
    let yesAction = UIAlertAction(title: "Yes", style: .default, handler: nil)

    let noAction = UIAlertAction(title: "No", style: .cancel, handler: nil)
    ac.addAction(yesAction)
    ac.addAction(noAction)
    self.present(ac, animated: true, completion: nil)
}

}


class AdminPlacesCell: UITableViewCell {

@IBOutlet weak var placeName: UILabel!

@IBOutlet weak var delete: UIButton!
@IBOutlet weak var edit: UIButton!

override func awakeFromNib() {
    edit.alpha = 0
    delete.alpha = 0
}
func configure(place: String) {
    placeName.text = place
}

func showButtons() {
    UIView.animate(withDuration: 0.5, delay: 0, options: .curveEaseIn, animations: {
        self.edit.alpha = 1
        self.delete.alpha = 1
    }, completion: nil)

}



@IBAction func onEditClicked(_ sender: Any) {
}
@IBAction func onDeleteClicked(_ sender: Any) {
    let adminPlaces = AdminPlaces()
    adminPlaces.alertC()
}
}


我不明白这是什么问题。为什么在tableView.delegate = self附近返回nil?正确的做法是什么?

提前致谢

最佳答案

您这里有几个问题。 1. alertC存在于ViewDidLoad内部。将此功能移出此处。 2.以下代码:

let adminPlaces = AdminPlaces()
adminPlaces.alertC()


说创建一个新的AdminPlaces实例,并在新实例上调用alertC()。这与保存tableView的AdminPlaces不同。没有显示新的警报,因此不会显示警报。 3.您的警报存在于ViewController上,您的单元没有直接访问它的方法。

使用UITableViewDelegate方法tableView:commit:editingStyle。当用户从编辑模式删除单元格时,将调用此方法。从此处调用您的alertC()方法。

09-18 02:52