fix(listview): delegate handling removed from unloaded (#10138)

This commit is contained in:
Brian Clow
2022-12-18 11:07:11 -07:00
committed by GitHub
parent 47231145ac
commit 04c3d9a979

View File

@@ -287,11 +287,6 @@ export class ListView extends ListViewBase {
this.ios.delegate = this._delegate;
}
public onUnloaded() {
this.ios.delegate = null;
super.onUnloaded();
}
// @ts-ignore
get ios(): UITableView {
return this.nativeViewProtected;