UIView陷入细胞的麻烦

时间:2016-09-28 03:11:02

标签: ios uitableview uiview uiimageview

我试图在单元格中加载UIVIew。 我的单元格包含UIImageView(灰色)

enter image description here

但是当尝试使用UIView的同一帧加载UIImageView时,我的override func viewDidLoad() { super.viewDidLoad() self.tableView.estimatedRowHeight = 409 self.tableView.sectionHeaderHeight = 257 } override func tableView(tableView: UITableView, cellForRowAtIndexPath indexPath: NSIndexPath) -> UITableViewCell { let cell = self.tableView.dequeueReusableCellWithIdentifier("cellPublicacion") as? PerfilTableViewCell //cell?.autoresizesSubviews = false let post = publicacionesArray[indexPath.row] cell?.avartarImage.image = avatar cell?.nombreLabel.text = NSUserDefaults.standardUserDefaults().valueForKey("NOMBRE") as? String cell?.fechaLabel.text = post.fecha cell?.comentariosLabel.text = "\(post.comentarios.count) comentarios" cell?.likesLabel.text = "\(post.likes.count) likes" cell?.tag = indexPath.row let imageView = UIImageView() imageView.frame = (cell?.generalView.frame)! cell?.generalView.addSubview(imageView) imageView.imageFromUrl(post.imageThum) return cell! } 具有我的单元格的框架,并且说明已落后

enter image description here

UIView

我的单元格中需要UIControls,因为我在另一个单元格中加载len(df.col_name.value_counts()) > 0

enter image description here

有什么问题?

谢谢。

0 个答案:

没有答案