我试图在底部获得一个新行,例如"插入新单元格"当用户点击编辑按钮时,在UITableView中左侧有加号按钮,当用户点击完成按钮时消失。现在我在表格视图的最后一行获得加号按钮,但我无法动态添加新行。任何人都可以帮助我做什么,或者他们有更好的方法来做这件事吗?
我在堆栈溢出Using insert rows in a UITableView上找到了这个答案 但我没有得到
NSMutableArray* paths = [[NSMutableArray alloc] init];
这句话是为了什么。
这是我的代码
override func tableView(tableView: UITableView, numberOfRowsInSection section: Int) -> Int {
if self.tableView.editing == true {
return nameArray.count + 1
}
else
{
return nameArray.count
}
}
override func tableView(tableView: UITableView, cellForRowAtIndexPath indexPath: NSIndexPath) -> UITableViewCell
{
let cell = tableView.dequeueReusableCellWithIdentifier("Cell", forIndexPath: indexPath) as UITableViewCell
if indexPath.row >= nameArray.count
{
cell.textLabel?.text = "insert new row"
}
else
{
cell.textLabel?.text = nameArray[indexPath.row]
}
cell.showsReorderControl = true
return cell
}
override func tableView(tableView: UITableView, commitEditingStyle editingStyle: UITableViewCellEditingStyle, forRowAtIndexPath indexPath: NSIndexPath) {
if editingStyle == .Delete {
nameArray.removeAtIndex(indexPath.row)
tableView.deleteRowsAtIndexPaths([indexPath], withRowAnimation: .Fade)
}
else if editingStyle == .Insert{
self.performSegueWithIdentifier("insertNameSegue", sender:nil)
}
}
override func setEditing(editing: Bool, animated: Bool) {
super.setEditing(true, animated: true)
self.tableView.setEditing(true, animated: true)
tableView.reloadData()
}
答案 0 :(得分:0)
这是目标C:
NSMutableArray* paths = [[NSMutableArray alloc] init];
对于Swift,你应该使用Array
var paths = Array<NSIndexPath>()
paths.append(NSIndexPath(10, 0))
...