如何在UITableViewController中设计空单元格

时间:2015-04-27 06:52:54

标签: ios uitableview swift

我有UITableViewController和动态表。在原型单元格中我添​​加图像。如何做那个图像也在空单元格中显示?这对我的应用程序设计很重要。

override func tableView(tableView: UITableView, cellForRowAtIndexPath indexPath: NSIndexPath) -> TableViewCell
    {
        let cell = tableView.dequeueReusableCellWithIdentifier("CellidQ", forIndexPath: indexPath) as! TableViewCell
            var quest  = quests[indexPath.row]
            cell.questTextView.text=quest.text
            cell.tag=indexPath.row
            cell.delegate=self
                cell.questTextView.editable=false
                cell.questTextView.userInteractionEnabled=false
        cell.questTextView.delegate=self
        cell.questTextView.tag=indexPath.row
        return cell
    }

1 个答案:

答案 0 :(得分:0)

对我来说,你首先必须创建一个继承自tableviewcell类的新的cocoa touch类。 在那里你可以创建图像或按钮...来自定义它。 然后将此类名设置为原型单元格。

在您的cellForRowAtIndexPath中,您可以调用并加载自定义单元格。 像这样

Same Origin Policy violation