Open alanf opened 8 years ago
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; } } ();
becomes