Package apple.uikit

Class UIPercentDrivenInteractiveTransition

    • Constructor Detail

      • UIPercentDrivenInteractiveTransition

        protected UIPercentDrivenInteractiveTransition​(org.moe.natj.general.Pointer peer)
    • Method Detail

      • accessInstanceVariablesDirectly

        public static boolean accessInstanceVariablesDirectly()
      • allocWithZone

        public static java.lang.Object allocWithZone​(org.moe.natj.general.ptr.VoidPtr zone)
      • automaticallyNotifiesObserversForKey

        public static boolean automaticallyNotifiesObserversForKey​(java.lang.String key)
      • cancelPreviousPerformRequestsWithTarget

        public static void cancelPreviousPerformRequestsWithTarget​(java.lang.Object aTarget)
      • cancelPreviousPerformRequestsWithTargetSelectorObject

        public static void cancelPreviousPerformRequestsWithTargetSelectorObject​(java.lang.Object aTarget,
                                                                                 org.moe.natj.objc.SEL aSelector,
                                                                                 java.lang.Object anArgument)
      • classFallbacksForKeyedArchiver

        public static NSArray<java.lang.String> classFallbacksForKeyedArchiver()
      • classForKeyedUnarchiver

        public static org.moe.natj.objc.Class classForKeyedUnarchiver()
      • debugDescription_static

        public static java.lang.String debugDescription_static()
      • description_static

        public static java.lang.String description_static()
      • hash_static

        public static long hash_static()
      • instanceMethodSignatureForSelector

        public static NSMethodSignature instanceMethodSignatureForSelector​(org.moe.natj.objc.SEL aSelector)
      • instancesRespondToSelector

        public static boolean instancesRespondToSelector​(org.moe.natj.objc.SEL aSelector)
      • isSubclassOfClass

        public static boolean isSubclassOfClass​(org.moe.natj.objc.Class aClass)
      • keyPathsForValuesAffectingValueForKey

        public static NSSet<java.lang.String> keyPathsForValuesAffectingValueForKey​(java.lang.String key)
      • new_objc

        public static java.lang.Object new_objc()
      • resolveClassMethod

        public static boolean resolveClassMethod​(org.moe.natj.objc.SEL sel)
      • resolveInstanceMethod

        public static boolean resolveInstanceMethod​(org.moe.natj.objc.SEL sel)
      • setVersion_static

        public static void setVersion_static​(long aVersion)
      • superclass_static

        public static org.moe.natj.objc.Class superclass_static()
      • version_static

        public static long version_static()
      • cancelInteractiveTransition

        public void cancelInteractiveTransition()
      • duration

        public double duration()
        This is the non-interactive duration that was returned when the animators transitionDuration: method was called when the transition started.
      • finishInteractiveTransition

        public void finishInteractiveTransition()
      • pauseInteractiveTransition

        public void pauseInteractiveTransition()
        Use this method to pause a running interruptible animator. This will ensure that all blocks provided by a transition coordinator's notifyWhenInteractionChangesUsingBlock: method are executed when a transition moves in and out of an interactive mode.
      • percentComplete

        public double percentComplete()
        The last percentComplete value specified by updateInteractiveTransition:
      • setCompletionCurve

        public void setCompletionCurve​(long value)
        When the interactive part of the transition has completed, this property can be set to indicate a different animation curve. It defaults to UIViewAnimationCurveEaseInOut. Note that during the interactive portion of the animation the timing curve is linear.
      • setCompletionSpeed

        public void setCompletionSpeed​(double value)
        completionSpeed defaults to 1.0 which corresponds to a completion duration of (1 - percentComplete)*duration. It must be greater than 0.0. The actual completion is inversely proportional to the completionSpeed. This can be set before cancelInteractiveTransition or finishInteractiveTransition is called in order to speed up or slow down the non interactive part of the transition.
      • setTimingCurve

        public void setTimingCurve​(UITimingCurveProvider value)
        For an interruptible animator, one can specify a different timing curve provider to use when the transition is continued. This property is ignored if the animated transitioning object does not vend an interruptible animator.
      • setWantsInteractiveStart

        public void setWantsInteractiveStart​(boolean value)
        Set this to NO in order to start an interruptible transition non interactively. By default this is YES, which is consistent with the behavior before 10.0.
      • timingCurve

        public UITimingCurveProvider timingCurve()
        For an interruptible animator, one can specify a different timing curve provider to use when the transition is continued. This property is ignored if the animated transitioning object does not vend an interruptible animator.
      • updateInteractiveTransition

        public void updateInteractiveTransition​(double percentComplete)
        These methods should be called by the gesture recognizer or some other logic to drive the interaction. This style of interaction controller should only be used with an animator that implements a CA style transition in the animator's animateTransition: method. If this type of interaction controller is specified, the animateTransition: method must ensure to call the UIViewControllerTransitionParameters completeTransition: method. The other interactive methods on UIViewControllerContextTransitioning should NOT be called. If there is an interruptible animator, these methods will either scrub or continue the transition in the forward or reverse directions.
      • wantsInteractiveStart

        public boolean wantsInteractiveStart()
        Description copied from interface: UIViewControllerInteractiveTransitioning
        In 10.0, if an object conforming to UIViewControllerAnimatedTransitioning is known to be interruptible, it is possible to start it as if it was not interactive and then interrupt the transition and interact with it. In this case, implement this method and return NO. If an interactor does not implement this method, YES is assumed.
        Specified by:
        wantsInteractiveStart in interface UIViewControllerInteractiveTransitioning