我相信,我失去了一些东西很简单,但我不能得到它的工作。
我会尝试更好地解释我在做什么,试图帮助别人,如果他们有同样的问题。
这是我的功能:
func tableView(tableView: UITableView, heightForRowAtIndexPath indexPath: NSIndexPath) -> CGFloat {
return (count * 40 + 75) as CGFloat
}
上述功能不起作用。 感谢给了我帮助,我发现,这是做它的方式:
func tableView(tableView: UITableView, heightForRowAtIndexPath indexPath: NSIndexPath) -> CGFloat {
return CGFloat(count * 40 + 75)
}
谢谢!