我的TableViewCell有问题
我的故事板中有两种类型的单元格.
当我滚动时,文本在某些单元格中重叠.我尝试了一切,但我不知道该怎么办.非常感谢你的帮助
public func tableView(tableView: UITableView,cellForRowAtIndexPath indexPath: NSIndexPath) -> UITableViewCell { var storeNew = systemsBlog.getStore(listNews[indexPath.row].getIdStore()) var newNotice = listNews[indexPath.row] let cell = tableView.dequeueReusableCellWithIdentifier("TimelineCell",forIndexPath: indexPath) as? TimelineCell cell!.nameLabel.text = storeNew.getName() cell!.postLabel?.text = newNotice.getText() cell!.postLabel?.numberOfLines = 0 cell!.dateLabel.text = newNotice.getDate() cell!.typeImageView?.tag = indexPath.row; return cell! } class TimelineCell : UITableViewCell { @IBOutlet var nameLabel : UILabel! @IBOutlet var postLabel : UILabel? @IBOutlet var dateLabel : UILabel! override func awakeFromNib() { postLabel?.font = UIFont(name: "Roboto-Thin",size: 14) } override func layoutSubviews() { super.layoutSubviews() }