John-Lluch / SWRevealViewController

A UIViewController subclass for presenting side view controllers inspired on the FaceBook and Wunderlist apps, done right !
Other
4.52k stars 989 forks source link

Property 'performBlock' not found on object of type 'SWRevealViewControllerSegueSetController *' #382

Open sagar-vaholiya opened 9 years ago

sagar-vaholiya commented 9 years ago

}

Manueldjz commented 9 years ago

any solution...?

andres25 commented 9 years ago

found any way to fix it? im having the same issue right now

afpinedac commented 8 years ago

user this method

` - (void)prepareForSegue:(UIStoryboardSegue *)segue sender:(id)sender {

if([segue isKindOfClass:[SWRevealViewControllerSegueSetController class] ]){

    UIViewController *dvc = [segue destinationViewController];        

    UINavigationController *navCtrl = (UINavigationController *) self.revealViewController.frontViewController;

    [navCtrl setViewControllers:@[dvc] animated:NO];

    [self.revealViewController setFrontViewPosition:FrontViewPositionLeft animated:YES];
}

}`