I have a custom class written for a custom segue animation. I am trying to custom animate a tap gesture. In my storyboard I have a Navigation Controller, the main view, and then two other views. Ive connected the gesture to the other view, and defined the custom class for the segue to use but I get the error below. I have another segue using just Push that works fine. Any ideas on what im doing wrong?

This is my class:

- (void) perform {

    UIViewController *src = (UIViewController *) self.sourceViewController;
    UIViewController *dst = (UIViewController *) self.destinationViewController;

    [UIView transitionWithView:src.navigationController.view duration:0.8
                       options:UIViewAnimationOptionTransitionFlipFromBottom
                    animations:^{
                        [src.navigationController pushViewController:dst animated:NO];
                    }
                    completion:NULL];

}

Error:

2012-02-20 16:04:45.889 IdeaStarters[2755:fe03] -[__NSCFDictionary setView:]: unrecognized selector sent to instance 0x6a40010
2012-02-20 16:04:45.891 IdeaStarters[2755:fe03] *** Terminating app due to uncaught exception 'NSInvalidArgumentException', reason: '-[__NSCFDictionary setView:]: unrecognized selector sent to instance 0x6a40010'
*** First throw call stack:
(0x13ba052 0x154bd0a 0x13bbced 0x1320f00 0x1320ce2 0x4fc3e 0x922f40 0x922eeb 0x50268 0x93dd60 0x3f8c54 0x3f8c8f 0x13bbe1a 0x1325821 0x22f46e 0xd6e2c 0xd73a9 0xd75cb 0xd7941 0xe947d 0xe966f 0xe993b 0xea3df 0xea561 0x2064ca 0x50301 0x13bbe72 0x1d6492d 0x1d6e827 0x1cf4fa7 0x1cf6ea6 0x1cf6580 0x138e9ce 0x1325670 0x12f14f6 0x12f0db4 0x12f0ccb 0x12a3879 0x12a393e 0x11a9b 0x2abd 0x2a25 0x1)
terminate called throwing an exception(lldb) 
link|improve this question

Looks like my code:) Please post your complete .h and .m files. This works fine for me. We need to figure out what you may be doing differently. Does setView in the error message relate to anything else in your view controllers? – T.J. Feb 20 at 22:18
I'm assuming you defined the seque's class and style in the storyboard seque. After that I would probably just check to see if I could straight transition to the other view w/ perform segue with identifier just to make sure you can hit it. – DJPlayer Feb 20 at 23:24
Turns out the viewcontroller was corrupt or something, I recreated the entire view, and everything works fine now. I have no idea what was causing this but everything was set exactly as my other seques and works prefect. – atrljoe Feb 20 at 23:45
feedback

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.