如何解决如何向自定义 XIB 单元格添加操作按钮?
我想创建一个自定义的 XIB 表格视图单元格,其中包含一个可以切换到新视图控制器的操作按钮。
到目前为止,我创建了一个带有按钮 (timeButton) 的自定义 XIB Cell (TaskListCell),并将 TaskListCell 注册到 TaskListViewController。对于 tableView(_:cellForRowAt:),我为 timeButton 添加了 tag 和 addTarget(_:action:for:) 以在 timeButton 时响应轻拍。但是,我收到此错误消息:线程 1:“-[Sprints.TaskListCell presstimeButton:]: unrecognized selector sent to instance 0x105311560”
class TaskListCell: UITableViewCell {
@IBOutlet weak var nameField: UITextField!
@IBOutlet weak var timeButton: UIButton!
@IBAction func pressedTimeButton(_ sender: UIButton) {
}
override func awakeFromNib() {
}
override func setSelected(_ selected: Bool,animated: Bool) {
}
}
这是在表格视图中显示自定义单元格的 ViewController:
class TaskListViewController: UIViewController {
// MARK: - Outlet Variables
@IBOutlet weak var taskList: SelfSizedTableView!
...
// MARK: - Instance Variables
var taskData = [TaskData]()
var taskCount: Int = 1
...
// MARK: - View Controller Methods
override func viewDidLoad() {
super.viewDidLoad()
// Register TaskListCell.xib file
let taskCellNib = UINib(nibName: "TaskCell",bundle: nil)
taskList.register(taskCellNib,forCellReuseIdentifier: "taskCell")
...
// Connect table view's dataSource and delegate to current view controller
taskList.delegate = self
taskList.dataSource = self
}
// MARK: - Action Methods
// Adds new cell in Table View
@IBAction func pressedAddTask(_ sender: UIButton) {
taskCount += 1
taskList.reloadData()
taskList.scrollToRow(at: IndexPath(row: taskCount-1,section: 0),at: .bottom,animated: true)
}
// MARK: - Methods
// Segues to SelectTime screen when timeButton is pressed
@objc func pressedTimeButton(_ sender: UIButton) {
let destination = SelectTimeViewController()
navigationController?.pushViewController(destination,animated: true)
}
}
extension TaskListViewController: UITableViewDataSource {
// Return the number of rows in table view
func tableView(_ tableView: UITableView,numberOfRowsInSection section: Int) -> Int {
return taskCount
}
// Return the cell to insert in table view
func tableView(_ tableView: UITableView,cellForRowAt indexPath: IndexPath) -> UITableViewCell {
let cell = tableView.dequeueReusableCell(withIdentifier: "taskCell",for: indexPath) as! TaskListCell
// Fatal error for next line: "Unexpectedly found nil while implicitly unwrapping an Optional value"
cell.timeButton.tag = indexPath.row
cell.timeButton.addTarget(self,action: #selector(pressedTimeButton(_:)),for: .touchUpInside)
return cell
}
}
extension TaskListViewController: UITableViewDelegate {
}
解决方法
从您的单元中检查 IBAction 的实例可能正在被调用。去掉这个功能就可以了
@IBAction func pressedTimeButton(_ sender: UIButton) {
}
版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。