From dc19dd41b64a1a65240fc5948333b86db50804c5 Mon Sep 17 00:00:00 2001 From: "Hedden, Kyle Matthew" Date: Mon, 25 Feb 2019 16:06:04 -0500 Subject: [PATCH] add pitfall comment to MVMCoreViewControllerAnimatedTransitioning protocol --- .../MVMCoreViewControllerAnimatedTransitioning.h | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/MVMCore/MVMCore/PresentationHandling/MVMCoreViewControllerAnimatedTransitioning.h b/MVMCore/MVMCore/PresentationHandling/MVMCoreViewControllerAnimatedTransitioning.h index c5fc952..701e6c0 100644 --- a/MVMCore/MVMCore/PresentationHandling/MVMCoreViewControllerAnimatedTransitioning.h +++ b/MVMCore/MVMCore/PresentationHandling/MVMCoreViewControllerAnimatedTransitioning.h @@ -12,6 +12,10 @@ @required +/** Property that notifies the navigation controller if the transition was cancelled. + * + * This property must be KVO compliant (i.e. in Swift add '\@objc dynamic')! + */ @property (nonatomic) BOOL interactiveTransitionCanceled; @end