作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我在 Xamarin.Ios 中使用 UISearchController 并且一切正常,但是当我开始输入时,SearchResultUpdating 方法没有覆盖也没有触发。它有时有效,有时无效,但现在它根本无效。
这是 SearchResultsUpdating 类:
class SearchResult : UISearchResultsUpdating
{
public event Action<string> UpdateSearchResults = delegate { };
public override void UpdateSearchResultsForSearchController(UISearchController searchController)
{
this.UpdateSearchResults(searchController.SearchBar.Text);
}
}
这是我使用它的时候:
var searchresult = new SearchResult();
searchresult.UpdateSearchResults += searchResultsController.Search;
var searchController = new UISearchController(searchResultsController) { SearchResultsUpdater = searchresult };
最佳答案
searchController
设置为 global variable
。如果你这样做,它不会释放并保留在它的生命周期中,并在 UISearchResultsUpdating
引用这个Demo
关于ios - 在 UISearchController 中未调用 SearchResultsUpdating,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/46769598/
有人可以审查我的代码吗?我正在尝试使用 MapKit 获取本地搜索结果。我使用了这个教程:https://www.thorntech.com/2016/01/how-to-search-for-loc
我在 Xamarin.Ios 中使用 UISearchController 并且一切正常,但是当我开始输入时,SearchResultUpdating 方法没有覆盖也没有触发。它有时有效,有时无效,但
我是一名优秀的程序员,十分优秀!