-
Notifications
You must be signed in to change notification settings - Fork 175
Open
Description
UIViewController *const modalToDismiss = ^UIViewController *{
switch (container.presentationStyle) {
case MQCardOnFileLinkingFlowViewPresentationStyleModal:
return self.currentModalViewController;
case MQCardOnFileLinkingFlowViewPresentationStyleFullScreen:
return (self.currentModalViewController != self.fullScreenNavigationController) ? self.fullScreenNavigationController : nil;
}
}();
becomes
UIViewController *const modalToDismiss = ^UIViewController *
{
switch (container.presentationStyle) {
case MQCardOnFileLinkingFlowViewPresentationStyleModal:
return self.currentModalViewController;
case MQCardOnFileLinkingFlowViewPresentationStyleFullScreen:
return (self.currentModalViewController != self.fullScreenNavigationController) ? self.fullScreenNavigationController : nil;
}
}
();
Metadata
Metadata
Assignees
Labels
No labels