我是iOS开发的新手,我正在使用this教程创建一个简单的待办事项列表应用
我有一个视图控制器,我已经添加了一个UITableView&一个UIBarButtonItem。我想在UIBarButtonItem点击上向UITableView添加一个项目(标题)。我写了代码,但我不确定是什么错误
class contactsMenu: UIViewController, UITableViewDataSource , UITableViewDelegate {
@IBOutlet weak var tableView: UITableView!
var toDoItems = [todoItem]()
override func viewDidLoad() {
super.viewDidLoad()
tableView.dataSource = self
tableView.delegate = self
tableView.registerClass(UITableViewCell.self, forCellReuseIdentifier: "cell")
if toDoItems.count > 0 {
return
}
}
override func viewDidAppear(animated: Bool) {
tableView.reloadData()
}
@IBAction func addAGroupBtnclicked(sender: UIBarButtonItem) {
toDoItems.append(todoItem(text: "ok"))
}
@IBAction func backBtn(sender: UIBarButtonItem) {
self.dismissViewControllerAnimated(true, completion: nil)
}
func numberOfSectionsInTableView(tableView: UITableView) -> Int {
return 1
}
func tableView(tableView: UITableView, numberOfRowsInSection section: Int) -> Int {
return toDoItems.count
}
func tableView(tableView: UITableView,
cellForRowAtIndexPath indexPath: NSIndexPath) -> UITableViewCell {
let cell = tableView.dequeueReusableCellWithIdentifier("cell",
forIndexPath: indexPath) as UITableViewCell
let item = toDoItems[indexPath.row]
cell.textLabel?.text = item.text
return cell
}
}
和我的todoItem.swift文件:
class todoItem : NSObject{
var text: String
// A Boolean value that determines the completed state of this item.
var completed: Bool
// Returns a ToDoItem initialized with the given text and default completed value.
init(text: String) {
self.text = text
self.completed = false
}
}
答案 0 :(得分:1)
假设addAGroupBtnclicked()是按钮的点击处理程序,用于添加新任务。
@IBAction func addAGroupBtnclicked(sender: UIBarButtonItem) {
toDoItems.append(todoItem(text: "ok"))
tableView.reloadData()
}
更改数据源后,您需要重新加载数据以反映对UI的更改。为了更有效地重新加载和重新加载UITableView的一部分,请检查UITableView的其他“重载”方法。