dito010 / JPNavigationController

This library provides an fullScreen pop and push gesture for UINavigationController with customize UINavigationBar for each single support.
http://www.jianshu.com/p/88bc827f0692
MIT License
362 stars 74 forks source link

左滑push下一个vc的手势失效情况求解 #9

Closed DarrenXman closed 7 years ago

DarrenXman commented 7 years ago

ViewController.m的viewDidLoad里 self.tableView.contentInset = UIEdgeInsetsMake(headerHeight, -40, 0, 40); 左边距大雨-40左滑push失效,不太清楚到底为什么会这样,难道contentInset影响手势响应?请教大神

dito010 commented 7 years ago

是的,是因为你水平插入了一个额外滚动距离导致水平滑动手势被 UITableView 实例拦截了,如果是这种情况,你可能需要自己继承 UITableView 并实现 hitTest 方法来应对了。希望能帮到你。