我在故事板B上定义了UIViewController A.UIViewController框架尺寸定义为470宽和100高。
我想从故事板A上的UIButton转到故事板B上的UIViewController A.
else if ([segue.identifier isEqualToString:@"ModalStoryboard"])
{
NSLog(@"Show Modal UIViewController");
RSStoryboardLink *storyboardLink = segue.destinationViewController;
storyboardLink.setStoryboardName = @"ModalStoryboard";
storyboardLink.setStoryboardScene = @"ModalStoryboard";
storyboardLink.transitioningDelegate = self;
}
该segue在IB中定义为以模态(当前上下文)和优选显式大小呈现。 segue工作和UIViewController被呈现,但它始终以全屏显示,而不是在IB中定义为 - 470 x 100的大小。它不是一个模态弹出视图。
如何使用segues在不同的故事板上显示模态UIViewController?