我试图在单元格中加载UIVIew
。
我的单元格包含UIImageView
(灰色)
但是当尝试使用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!
}
具有我的单元格的框架,并且说明已落后
UIView
我的单元格中需要UIControls
,因为我在另一个单元格中加载len(df.col_name.value_counts()) > 0
有什么问题?
谢谢。