I'm developing a application using ECSliding framework. Everything was going well until I add a UItableViewController
as the topViewController
. I'm facing an error while trying to scroll the static table view. I could identify where is the problem but I don't know how to solve it. If I delete the command bellow (declared at viewDidLoad
method), my UITableView
starts to scroll normally.
[self.view addGestureRecognizer:self.slidingViewController.panGesture];
Code used to set the UITableViewController as the topViewController
self.topViewController = [self.storyboard instantiateViewControllerWithIdentifier:@"Driver"];
topViewController
is a property from the ECSlidingViewController
I have found another similar question on another post, but there, the guy was using a UINavigationController
as the topViewController
.
Please let me know if someone can give me a hand.
thanks, Marcos.