美文网首页ios实用开发技巧
用UISearchController实现微信搜索效果

用UISearchController实现微信搜索效果

作者: biyuhuaping | 来源:发表于2017-12-14 13:49 被阅读454次

    最近需要做一个搜索效果和微信搜索页面很类似,我使用UISearchController尝试了很多办法,都不能默认显示searchResultController,经过翻墙查找海量资料,终于做成微信的搜索效果,需要设置的地方只有下面一个地方:

    #pragma mark - UISearchResultsUpdating
    //每输入一个字符都会执行一次
    - (void)updateSearchResultsForSearchController:(UISearchController *)searchController{
        searchController.searchResultsController.view.hidden = NO;
    }
    

    就这句,让 searchResultsController 一直显示:

    searchController.searchResultsController.view.hidden = NO;
    

    效果如图:


    SearchController iPhone 8P
    SearchController iPhone X

    为了方便需要的小伙伴,我把下载demo放在了GitHub上,如果喜欢请给我打call,star!么了个哒~

    相关文章

      网友评论

        本文标题:用UISearchController实现微信搜索效果

        本文链接:https://www.haomeiwen.com/subject/hshkwxtx.html