FSPagerView icon indicating copy to clipboard operation
FSPagerView copied to clipboard

FSPagerView is an elegant Screen Slide Library. It is extremely helpful for making Banner View、Product Show、Welcome/Guide Pages、Screen/ViewController Sliders.

Results 123 FSPagerView issues
Sort by recently updated
recently updated
newest added

.linear 模式下在在最后一页删除最后一个元素时,attributes的计算正确,但是短时间内执行了两次,最后一次正确的执行结果并没有被页面刷新,可能是动画效果导致的。 解决方式: 在FSPagerView文件下修改 line478 为 ``` @objc(reloadData) open func reloadData() { self.collectionViewLayout.needsReprepare = true UIView.animate(withDuration: 0, animations: { self.reloadData() }, completion: { _ in }) } ```

Hi, I am subclassing FSPagerViewTransformer as following: ` class CarouselPagerViewTransformer: FSPagerViewTransformer { init() { super.init(type: FSPagerViewTransformerType.ferrisWheel) } override func proposedInteritemSpacing() -> CGFloat { return 10.0 } override func applyTransform(to attributes:...

Assertion failure in -[AuraPura.CommunityPagerViewCell _preferredLayoutAttributesFittingAttributes:isAnimatingExistingView:], UICollectionViewCell.m:739 为了一个立方体动画, 我crash 了无数次

Calling selectItem immediately after reloadData will crash Thread 1: "Attempted to scroll the collection view to an out-of-bounds item (4) when there are only 0 items in section -1. Collection...

- increase deployment target to iOS 12 - increase pod library version to 0.9

in didSelectItemAt function set isSelected = false set isHighlight = false failed the cell always show a gray cover. I must change the state after a delay time

就是滚动了一半,两个Cell都显示了一半在界面上

I am showing the images in the present view controller. in some devices, the last image is getting aligned on the right side of the view.

如题,设置了.automaticSlidingInterval = 3,.isInfinite = true,然在想在cellForItemAt里同步pageControl,但不是滚动结束执行一次cellForItemAt,而是每滚动两次执行两次cellForItemAt。是我使用的姿势不对吗? `lazy var pagerView: FSPagerView = { let height = kAutoWidth(230) let pagerView = FSPagerView(frame: CGRect(x: 0, y: 0, width: self.width, height: height)) pagerView.dataSource = self...