()
| 119 | } |
| 120 | |
| 121 | initNativeView() { |
| 122 | super.initNativeView(); |
| 123 | |
| 124 | this._delegate = UITextViewDelegateImpl.initWithOwner(new WeakRef(this)); |
| 125 | this.nativeTextViewProtected.delegate = this._delegate; |
| 126 | this._setDefaultPaddings(this.nativeTextViewProtected.textContainerInset); |
| 127 | } |
| 128 | |
| 129 | disposeNativeView() { |
| 130 | this._delegate = null; |
nothing calls this directly
no test coverage detected