我正在建立一个待办事项列表应用。我尝试添加todo点击添加按钮。它打开一个带有输入标题的警报。我为添加的项目做了一个课程:
class ToDoItem
{
var title: String
public init(title: String)
{
self.title = title
}
}
以下是添加新行的代码:
func didTapAddItemButton(_ sender: UIBarButtonItem)
{
let alert = UIAlertController(
title: "New to-do item",
message: "Insert the title of the new to-do item:",
preferredStyle: .alert)
alert.addTextField(configurationHandler: nil)
alert.addAction(UIAlertAction(title: "Cancel", style: .cancel, handler: nil))
alert.addAction(UIAlertAction(title: "OK", style: .default, handler: { (_) in
if let title = alert.textFields?[0].text
{
self.addNewToDoItem(title: title)
}
}))
self.present(alert, animated: true, completion: nil)
}
private func addNewToDoItem(title: String)
{
let newIndex = listCourse?.count
listCourse?.append(ToDoItem(title: title))
tableView.insertRows(at: [IndexPath(row: newIndex!, section: 0)], with: .top)
}
但我得到了这个错误:
Cannot convert value of type "ToDoItem" to expected argument type "myItems"
这是myItems类:
class myItems {
var title: String?
var content: String?
var date: String?
var author: String?
init(title: String, content: String, date: String, author: String){
self.title = title
self.content = content
self.date = date
self.author = author
}
func mapping(map: Map) {
title <- map["title"]
content <- map["description"]
date <- map["pubDate"]
author <- map["author"]
}
}
这&#34; myItems&#34; class用于获取json数据,稍后我将从数据库中获取数据。
最后一件事:
var listCourse : [myItems]?
listCourse是tableViewController中显示的单元格列表。
我不明白这个错误我只想添加列表中输入的标题
[编辑]
override func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell {
let cell = tableView.dequeueReusableCell(withIdentifier: "macell1", for: indexPath)
return cell
}
答案 0 :(得分:0)
您尝试向listCourse追加错误类型的项目。由于您将listCourse定义为myItems实例的数组,因此您只能将该实例附加到该类的实例。要解决此问题,只需将var listCourse : [myItems]?
更改为var listCourse = [ToDoItem]()
还要修复UITableViewDataSource方法:
override func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell {
let cell = tableView.dequeueReusableCell(withIdentifier: "macell1", for: indexPath)
let item = listCourse[indexPath.item]
cell.textLabel.text = item.title
return cell
}