UISearchController一个小坑

1)如果不设置:self.definesPresentationContext = YES;那么如果设置了hidesNavigationBarDuringPresentation为YES,在进入编辑模式的时候会导致searchBar看不见(偏移-64)。如果设置了hidesNavigationBarDuringPresentation为NO,在进入编辑模式会导致高度为64的空白区域出现(导航栏未渲染出来)。

 (2)如果设置:self.definesPresentationContext = YES;在设置hidesNavigationBarDuringPresentation为YES,进入编辑模式会正常显示和使用。如果设置了hidesNavigationBarDuringPresentation为NO,在进入编辑模式会导致搜索框向下偏移64.


参考链接:http://blog.csdn.net/boyuanguiren/article/details/50724154

你可能感兴趣的:(UISearchController一个小坑)