GKPageScrollView icon indicating copy to clipboard operation
GKPageScrollView copied to clipboard

iOS类似微博、抖音、网易云等个人详情页滑动嵌套效果

Results 7 GKPageScrollView issues
Sort by recently updated
recently updated
newest added

dyld: Library not loaded: /usr/lib/swift/libswiftCoreGraphics.dylib Referenced from: /private/var/containers/Bundle/Application/D726642D-1384-4198-A320-36868387534E/xxx.app/Frameworks/GKPageScrollView.framework/GKPageScrollView Reason: image not found xcode14; iOS 12.0; 真机

![image](https://user-images.githubusercontent.com/12094766/190109991-f503feb9-ac05-4e70-b6c2-463b7077fbf0.png) 如图577行代码不够健全,在操作时offsetY的值能够变为-0.3 (测试-0.1~-0.5都会触发),然后进行滚动时,触发了KVO操作但TableView并不会去实际滚动,导致再次刷新这个判断又成立,然后继续滚动,再触发KVO,最终死循环。 bug原因:视网膜屏幕绘制精度问题 测试设备iPad OS 15.7

scrollToCriticalPoint, 方法有时不起作用

```shell GKPageScrollView tableView (GKPageScrollView.swift:609 [Inline: Swift runtime failure: Unexpectedly found nil while implicitly unwrapping an Optional value]) 1 GKPageScrollView tableView (GKPageScrollView.swift:609) 2 GKPageScrollView tableView (:0) 3 UIKitCore -[UITableView _createPreparedCellForGlobalRow:withIndexPath:willDisplay:] +...

作者你好, 在子控制器TableView中Cell中,键盘遮挡问题,应该怎么处理。

我们使用此控件中出现了问题,我们使用这个库仿写小红书的个人页面: 1.我们在这个页面滑动了之后,切换页面或者进入字页面,再次回到这个页面时,mainTableView的contentOffset.y自己发生了变化, 并且,currentListScrollView 在我这里是一个UIViewController,里面有一个collectionView,这个collectionView也发生了变化 我的解决办法,只能解决mainTableView的问题,但是collectionView不能解决 解决办法,在页面viewDidDisappear的时候记录下当前mainTableView 和 currentListScrollView 的contentOffset.y,再次进入页面在viewwillappear里面设置contentoffset,只有mainTableVIew 生效了,collectionVIew还是在顶点。 2.当currentListScroll里面的内容向上滑动时,不够当前屏幕大小时,不能向下滑动