在Swift中以编程方式创建UITableViewCell

时间:2014-11-24 11:00:59

标签: ios uitableview swift

我正在尝试为UITableView创建一个自定义单元格,但我遇到了一些困难。

首先,我无法使用Interface Builder,因为我遇到了a variation on this bug in Xcode。每次我在Interface Builder中单击一个元素时,该视图中的所有内容都会获得零的高度和宽度,并在视图外部重新定位。此外,我想学习如何以编程方式进行此操作。

其次我正在为我的项目使用Swift语言。 I have been trying to follow this demonstration,尽我所能将Objective C代码转换为Swift,但每当遇到问题时,我最终都会陷入困境。我认为这是因为我没有正确地转换代码。

第三个I found this video但是尽管相当难以遵循(许多代码只是复制和粘贴而没有太多解释它的作用或原因),它仍然最终使用Interface Builder来更改各个部分。

我有一个基本UITableView设置正常。我只是希望能够在该表视图中添加自定义单元格。

  • 这可以使用纯编程完成,还是需要使用Interface Builder?

  • 有人能指出我正确的方向或帮助我在Swift中以编程方式创建自定义单元格吗?

非常感谢。

2 个答案:

答案 0 :(得分:8)

一般来说:在纯编程中一切皆有可能; - )

  1. 为tableView单元格创建自定义类,并设置所有元素,属性和可视布局。实施所需的方法init(style,reuseidentifier)

  2. UITableViewController的自定义类中,使用registerClass(forCellReuseIdentifier)

  3. 注册自定义单元格类
  4. 为自定义tableViewController

  5. 设置委托和数据源

    最后,您在cellForRowAtIndexPath

    中创建单元格
    func tableView(tableView: UITableView, cellForRowAtIndexPath indexPath: NSIndexPath) -> UITableViewCell {
        let cell = tableView.dequeueReusableCellWithIdentifier("myReuseIdentifier", forIndexPath: indexPath) as MyCustomTableViewCell 
    
        // configure the cell using its properties
    
        return cell
    }
    

    这应该是基本步骤。

答案 1 :(得分:7)

如果您正在寻找更多代码,以下是我创建的自定义单元格的示例:

//  File: vDataEntryCell.swift
import UIKit

class vDataEntryCell: UITableViewCell
{

//-----------------
// MARK: PROPERTIES
//-----------------

//Locals
var textField : UITextField = UITextField()

//-----------------
// MARK: VIEW FUNCTIONS
//-----------------

///------------
//Method: Init with Style
//Purpose:
//Notes: This will NOT get called unless you call "registerClass, forCellReuseIdentifier" on your tableview
///------------
override init(style: UITableViewCellStyle, reuseIdentifier: String!)
{
    //First Call Super
    super.init(style: style, reuseIdentifier: reuseIdentifier)

    //Initialize Text Field
    self.textField = UITextField(frame: CGRect(x: 119.00, y: 9, width: 216.00, height: 31.00));

    //Add TextField to SubView
    self.addSubview(self.textField)
}


///------------
//Method: Init with Coder
//Purpose:
//Notes: This function is apparently required; gets called by default if you don't call "registerClass, forCellReuseIdentifier" on your tableview
///------------
required init(coder aDecoder: NSCoder)
{
    //Just Call Super
    super.init(coder: aDecoder)
}
}

然后在我的UITableViewController类中,我执行了以下操作:

//  File: vcESDEnterCityState.swift
import UIKit

class vcESDEnterCityState: UITableViewController
{

//-----------------
// MARK: VC FUNCTIONS
//-----------------


///------------
//Method: View Will Appear
//Purpose:
//Notes:
///------------
override func viewWillAppear(animated: Bool)
{
    //First Call Super
    super.viewWillAppear(animated)

    //Register the Custom DataCell
    tvCityStateForm.registerClass(vDataEntryCell.classForCoder(), forCellReuseIdentifier: "cell")
}

//-----------------
// MARK: UITABLEVIEW DELEGATES
//-----------------

///------------
//Method: Cell for Row at Index Path of TableView
//Purpose:
//Notes:
///------------
override func tableView(tableView: UITableView, cellForRowAtIndexPath indexPath: NSIndexPath) -> UITableViewCell
{
    //Get Reference to Cell
    var cell : vDataEntryCell = self.tableView.dequeueReusableCellWithIdentifier("cell") as vDataEntryCell

    //...Do Stuff

    //Return Cell
    return cell
}

}