Class UITextDropPerformer


  • public final class UITextDropPerformer
    extends java.lang.Object
    • Field Summary

      Fields 
      Modifier and Type Field Description
      static long Delegate
      The delegate will be responsible for performing the drop, and the default data loading provided by the text droppable view will not be invoked.
      static long View
      The text droppable view will handle the drop.
    • Method Summary

      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    • Field Detail

      • View

        public static final long View
        The text droppable view will handle the drop. This is the default behavior. Note: `-textDroppableView:willPerformDrop:` will be called, if it is implemented, but it is not required.
        See Also:
        Constant Field Values
      • Delegate

        public static final long Delegate
        The delegate will be responsible for performing the drop, and the default data loading provided by the text droppable view will not be invoked. The delegate must implement `-textDroppableView:willPerformDrop:`, with custom code to start loading data. If it does not, then the text droppable view will handle the drop, as if `UITextDropPerformerView` was specified.
        See Also:
        Constant Field Values