我有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
}
答案 0 :(得分:0)
对我来说,你首先必须创建一个继承自tableviewcell类的新的cocoa touch类。 在那里你可以创建图像或按钮...来自定义它。 然后将此类名设置为原型单元格。
在您的cellForRowAtIndexPath中,您可以调用并加载自定义单元格。 像这样
Same Origin Policy violation