自定义单元格始终位于分段控制器视图中的tableView之上

时间:2016-02-17 01:32:55

标签: swift tableview uisegmentedcontrol custom-cell

我有一个分段控制器,显示3个不同的tableViews,Case 2创建一个自定义单元格。我已经在Case 2中显示了自定义单元格,但新单元格出现在tableView的底部。

如何让自定义单元格始终显示在tableView的顶部?

@available(iOS 2.0, *)
func tableView(tableView: UITableView, cellForRowAtIndexPath indexPath: NSIndexPath) -> UITableViewCell
{
    let myCell = tableView.dequeueReusableCellWithIdentifier("myCell", forIndexPath: indexPath)

    switch(mySegmentedControl.selectedSegmentIndex)

    {

    case 0:
        myCell.textLabel!.text = globalList[indexPath.row]
        break

    case 1:
        myCell.textLabel!.text = friendsList[indexPath.row]
        break


    case 2:

    // *** I want to add a Cell here with a "Add Item" IBAction ---------------------

        if(indexPath.row == meList.count) {

            myCell.textLabel?.text = "+ Add Item"
            // add new row here
            /* OR add new button here as cell's subview  */
            // set frame of your button
            // set target and selector method of button
            // [cell addSubView: addButton]

        }
        else {

            myCell.textLabel?.text = meList[indexPath.row]
        }   

    default:
        break

    }

    return myCell

}

1 个答案:

答案 0 :(得分:0)

我认为你需要做的就是检查indexPath.row == 0并将按钮添加到该单元格。否则,将单元格配置为正常,但indexPath会偏移我的。

if(indexPath.row == 0) {
    myCell.textLabel?.text = "+ Add Item"
    // add new row here
    /* OR add new button here as cell's subview  */
    // set frame of your button
    // set target and selector method of button
    // [cell addSubView: addButton]

} else {
    myCell.textLabel?.text = meList[indexPath.row - 1]
}