iOS9升级似乎打破了我所有的自定义tableviewcell.它们只显示具有正确高度的tableviewcell,但缺少所有内部元素.
该布局在iOS 8和iOS 7设备上运行良好.
然而,当它出现在设备上时,只显示背景颜色.
func tableView(tableView: UITableView, cellForRowAtIndexPath indexPath: NSIndexPath) -> UITableViewCell {
let cell = tableView.dequeueReusableCellWithIdentifier("DummyCell", forIndexPath: indexPath) as! DummyCell
cell.label.text = "DummyLabel"
return cell
}
Run Code Online (Sandbox Code Playgroud)
有没有人遇到与ios 9类似的问题?