在我的待办事项列表应用程序中,我使用静态单元格显示永不改变的待办事项的NSMutableArray。一旦一个人点击了一个.Checkmark的accessoryType并标记为已完成。我尝试做的事情并没有找到答案,一旦数组中的每个项目都完成并添加一个复选标记,就会为整个列表返回一个完成日期。我发现可以在NSArray或NSMutableArray上调用的最接近的方法是-removeAllObjects,但我不希望数组被破坏。这是一份需要继续提供的每日清单。我真的很感激有人指出我正确的方向,甚至更好的建议如何做到这一点。谢谢!
var checklistItems: NSMutableArray = []
override func viewDidLoad() {
super.viewDidLoad()
loadInitialData()
func loadInitialData(){
var item1 = Checklist(name: "Check Tires")
self.checklistItems.addObject(item1)
var item2 = Checklist(name: "Check Controls")
self.checklistItems.addObject(item2)
var item3 = Checklist(name: "Check Lights")
self.checklistItems.addObject(item3)
var item4 = Checklist(name: "Check Oil")
self.checklistItems.addObject(item4)
var item5 = Checklist(name: "Check Chassis")
self.checklistItems.addObject(item5)
var item6 = Checklist(name: "Check Sidestand")
self.checklistItems.addObject(item6)
}
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 {
// #warning Incomplete method implementation.
// Return the number of rows in the section.
return self.checklistItems.count
}
override func tableView(tableView: UITableView, cellForRowAtIndexPath indexPath: NSIndexPath) -> UITableViewCell {
let cell = tableView.dequeueReusableCellWithIdentifier("ListPrototypeCell", forIndexPath: indexPath) as UITableViewCell
// Configure the cell...
var checklistItems: Checklist = self.checklistItems.objectAtIndex(indexPath.row) as Checklist
cell.textLabel?.text = checklistItems.itemName
if checklistItems.completed{
cell.accessoryType = .Checkmark
}
else{
cell.accessoryType = .None
}
return cell
}
override func tableView(tableView: UITableView, didSelectRowAtIndexPath indexPath: NSIndexPath) {
tableView.deselectRowAtIndexPath(indexPath, animated: false)
var tappedItem: Checklist = self.checklistItems.objectAtIndex(indexPath.row) as
Checklist
tappedItem.completed = !tappedItem.completed
tableView.reloadData()
}
答案 0 :(得分:1)
我不确定您希望如何从此列表返回完成日期,可能是通过委托方法或通过展开segue,但我可以建议一种方法来确定是否检查整个列表。
如果添加NSMutableSet
来保存选中的项目,则当已检查项目集的计数等于数组的计数时,您可以快速确定是否检查了所有项目 -
var checklistItems: NSMutableArray = []
var checkedItems = NSMutableSet()
override func tableView(tableView: UITableView, didSelectRowAtIndexPath indexPath: NSIndexPath) {
tableView.deselectRowAtIndexPath(indexPath, animated: false)
var tappedItem: Checklist = self.checklistItems.objectAtIndex(indexPath.row) as
Checklist
tappedItem.completed = !tappedItem.completed
if (tappedItem.completed) {
checkedItems.addObject(tappedItem)
} else {
checkedItems.removeObject(tappedItem)
}
if (self.allChecked()) {
self.performSegueWithIdentifier("unwindFromChecklist", sender:self)
} else {
tableview.reloadData()
}
}
func allChecked() -> Bool {
return checkedItems.count == checklistItems.count
}
我添加了一个unwind segue调用 - 你可以在调用视图控制器中简单地获取unwind方法中的当前日期和时间,或者你可以在调用unwind segue之前在这个视图控制器的属性中设置当前日期
答案 1 :(得分:0)
我认为保罗的方法可以检查 你真的不需要创建另一个数组。一种“快速”的方式。
func allChecked() -> Bool
{
// create an array with only the uncompleted items
let uncompletedArray = self.checkListItems.filter { $0.completed == false}
// if this array is empty all items are completed
return uncompletedArray.count == 0;
}