text changed

This commit is contained in:
kspearrin 2018-09-24 14:57:28 -04:00
parent bc79f22e22
commit 2870b8331e

View file

@ -169,9 +169,9 @@ namespace Bit.iOS.Autofill
_controller = controller; _controller = controller;
} }
public override void OnEditingStopped(UISearchBar searchBar) public override void TextChanged(UISearchBar searchBar, string searchText)
{ {
base.OnEditingStopped(searchBar); System.Diagnostics.Debug.WriteLine("search text: " + searchText);
} }
} }
} }