Package org.robovm.apple.uikit
Interface UITextViewDelegate
- All Superinterfaces:
NSObjectProtocol,ObjCProtocol,UIScrollViewDelegate
- All Known Implementing Classes:
SLComposeServiceViewController,UITextViewDelegateAdapter
public interface UITextViewDelegate extends NSObjectProtocol, UIScrollViewDelegate
-
Method Summary
Modifier and Type Method Description voiddidBeginEditing(UITextView textView)voiddidChange(UITextView textView)voiddidChangeSelection(UITextView textView)voiddidEndEditing(UITextView textView)booleanshouldBeginEditing(UITextView textView)booleanshouldChangeCharacters(UITextView textView, NSRange range, String text)booleanshouldEndEditing(UITextView textView)booleanshouldInteractWithTextAttachment(UITextView textView, NSTextAttachment textAttachment, NSRange characterRange)Deprecated.Deprecated in iOS 10.0.booleanshouldInteractWithTextAttachment(UITextView textView, NSTextAttachment textAttachment, NSRange characterRange, UITextItemInteraction interaction)booleanshouldInteractWithURL(UITextView textView, NSURL URL, NSRange characterRange)Deprecated.Deprecated in iOS 10.0.booleanshouldInteractWithURL(UITextView textView, NSURL URL, NSRange characterRange, UITextItemInteraction interaction)Methods inherited from interface org.robovm.apple.uikit.UIScrollViewDelegate
didEndDecelerating, didEndDragging, didEndScrollingAnimation, didEndZooming, didScroll, didScrollToTop, didZoom, getViewForZooming, scrollViewDidChangeAdjustedContentInset, shouldScrollToTop, willBeginDecelerating, willBeginDragging, willBeginZooming, willEndDragging
-
Method Details
-
shouldBeginEditing
-
shouldEndEditing
-
didBeginEditing
-
didEndEditing
-
shouldChangeCharacters
-
didChange
-
didChangeSelection
-
shouldInteractWithURL
boolean shouldInteractWithURL(UITextView textView, NSURL URL, NSRange characterRange, UITextItemInteraction interaction)- Since:
- Available in iOS 10.0 and later.
-
shouldInteractWithTextAttachment
boolean shouldInteractWithTextAttachment(UITextView textView, NSTextAttachment textAttachment, NSRange characterRange, UITextItemInteraction interaction)- Since:
- Available in iOS 10.0 and later.
-
shouldInteractWithURL
Deprecated.Deprecated in iOS 10.0. Use textView:shouldInteractWithURL:inRange:interaction: -
shouldInteractWithTextAttachment
@Deprecated boolean shouldInteractWithTextAttachment(UITextView textView, NSTextAttachment textAttachment, NSRange characterRange)Deprecated.Deprecated in iOS 10.0. Use textView:shouldInteractWithTextAttachment:inRange:interaction:
-