1 | import { TextViewBase as TextViewBaseCommon } from './text-view-common';
|
2 | export declare class TextView extends TextViewBaseCommon {
|
3 | nativeViewProtected: UITextView;
|
4 | nativeTextViewProtected: UITextView;
|
5 | private _delegate;
|
6 | _isShowingHint: boolean;
|
7 | _isEditing: boolean;
|
8 | private _hintColor;
|
9 | private _textColor;
|
10 | createNativeView(): UITextView;
|
11 | initNativeView(): void;
|
12 | disposeNativeView(): void;
|
13 | get ios(): UITextView;
|
14 | textViewShouldBeginEditing(textView: UITextView): boolean;
|
15 | textViewDidBeginEditing(textView: UITextView): void;
|
16 | textViewDidEndEditing(textView: UITextView): void;
|
17 | textViewDidChange(textView: UITextView): void;
|
18 | textViewShouldChangeTextInRangeReplacementText(textView: UITextView, range: NSRange, replacementString: string): boolean;
|
19 | scrollViewDidScroll(sv: UIScrollView): void;
|
20 | _refreshHintState(hint: string, text: string): void;
|
21 | private _refreshColor;
|
22 | showHint(hint: string): void;
|
23 | showText(): void;
|
24 | }
|