I have a custom transition from controller A to B, it's just defined like this
@implementation Mycustomsegue
-(void)perform {
[[self sourceViewController] presentViewController:[self destinationViewController] animated:NO completion:^{
}];
}
@end
Now, when unwinding from B to A, it looks like a modal dismissal of controller B. How can I remove this? I don't want any animation or I want to control it.