You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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.
The text was updated successfully, but these errors were encountered: