iCarousel
iCarousel copied to clipboard
iCarousel UIView does not show scrolling animation of top most view
Hello Team,
I am facing an issue of scrolling of ICarousel view while doing iCarouselTypeRotary type of animation. I have to show a HTML text in a view so We are using a textview for showing html by making an Attributed text(Attached screen shot). When i write that code to show html in textview in viewForItemAtIndex function then it shows scrolling issue (PFA video). I need to show HTML text in UITextview so please let me know how we can implement that in iCarousel. I am working on Xcode 8.3.2. Whenever i remove that HTML showing text then it animates perfectly.
Thankyou
I know that this is a very old issue, but it might help someone in the future. I've noticed that I got this issue while using attributedText in the main queue. So I was able to bypass this, by using "dispatch_async(dispatch_get_global_queue(DISPATCH_QUEUE_PRIORITY_DEFAULT, 0), ^(void){})".