I inserted a UIView with a image inside a Cell View like tha image bellow.
What i tried:
DispatchQueue.main.async {
self.hideProfileDescriptionView.addSubview(self.hidedescriptionLogo)
self.hideProfileDescriptionView.bringSubview(toFront:
self.hidedescriptionLogo)
self.cellDescriptionView.addSubview(self.hideProfileDescriptionView)
}
In the First time I call the UIVIewController, the image does not display, but in the second time I call UIViewController the image appears. How can I solve that.
Thanks
I realized that all cell content was not being displayed, so i discovered a flag that i did put on the code and i did disable that. Solved.