2015-04-02 83 views
0

我想传递一个值来更新tableview单元格。问题是我无法获得价值。在实现代码如下单元代码是:麻烦传递tableview单元格值来删除单元格

override func tableView(tableView: UITableView, cellForRowAtIndexPath indexPath: NSIndexPath) -> UITableViewCell { 
    let cell = tableView.dequeueReusableCellWithIdentifier("Cell", forIndexPath: indexPath) as UITableViewCell; 

    // Gets staff name and puts it in the cell title 
    var sectionTitle:String = aventurasUnicas.objectAtIndex(indexPath.section) as String 
    var sectionStaff:Array = porAventura[sectionTitle]! 
    let staffNic:String = sectionStaff[indexPath.row] as String 
    cell.textLabel?.text = staffNic 

    // Gets the subtitle 
    var subtituloAventura:String = "\(sectionTitle).\(staffNic)" as String 
    var sectionStaff2:Array = subtituloTabla[subtituloAventura]! 
    let staffNic2:String = sectionStaff2[0] as String 
    cell.detailTextLabel?.text = staffNic2 

    cell.accessoryType = UITableViewCellAccessoryType.DetailButton 
    return cell 
    } 

而且我坚持的代码是:

override func tableView(tableView: UITableView?, commitEditingStyle editingStyle: UITableViewCellEditingStyle, forRowAtIndexPath indexPath: NSIndexPath?) { 
    if (editingStyle == UITableViewCellEditingStyle.Delete) { 
     // I AM STUCK HERE 
    } 
} 

我想要得到的staffNic该计划的一个部分。感谢您的帮助

回答

0

为什么不走这条路 - 你得到它的方式是你设置的方式:

let sectionTitle:String = aventurasUnicas.objectAtIndex(indexPath.section) as String 
let sectionStaff:Array = porAventura[sectionTitle]! 
//the text of the deleted row based on your datasource 
let staffNic = sectionStaff[indexPath.row] as String 

或者把它作为细胞的文字:

let cell = tableView.cellForRowAtIndexPath(indexPath)! 
let staffNic = cell.textLabel!.text! 
+0

非常感谢。它像这样工作:let cell = tableView?.cellForRowAtIndexPath(indexPath!) 让staffNic = cell?.textLabel?.text as String! – 2015-04-02 15:06:25