Open mubashirhussain opened 5 years ago
Having the same issue, was this solved?
Had the same issue with CosmosView
instance embedded into UICollectionViewCell
and RTL content semantics.
My workaround to bypass this issue is to wrap view configuration code into async update with GCD.
if RTL {
DispatchQueue.main.async {
self.ratingView.rating = stars
}
} else {
ratingView.rating = stars
}
Aforementioned hack, schedules ratingView
aka CosmosView
is being updated after collection view methods did their job. Looks like race condition issue.
Please consider submitting the following information (if relevant):
Half of the rows displayed are correct but the other half created from the reused cell is not correct.