runThor / HTSDCycleScrollView

一款基于SDScrollView的轮播图控件,对源码进行了修改,可切换为滚动时图片带有缩放效果的模式,可改变PageControl小圆点的样式
49 stars 9 forks source link

更新到iOS14后,图片偏移,且无法手动滑动 #5

Open xugj-gits opened 3 years ago

xugj-gits commented 3 years ago

更新到iOS14后,图片偏移,且无法手动滑动 ios

caobin666666 commented 3 years ago

是什么问题?请问你解决了吗

nevermore-imba commented 3 years ago
截屏2020-12-27 22 37 41

https://developer.apple.com/documentation/uikit/uiscrollview/1619432-ispagingenabled

Hurui123 commented 3 years ago

//适配ios14及以上缩放效果不能滚动问题 if (self.zoomType == YES) { self.mainView.pagingEnabled = NO; }else{ self.mainView.pagingEnabled = YES; } 用这个完美解决缩放效果和不缩放效果的轮播