0

I've a search bar. When I clicked on the text field the search bar slide down on 40pt average.

How I can dismiss it?

I find this answer, and tried to implement those tip, but unfortunately it's doesn't work for me. However this line: self.extendedLayoutIncludesOpaqueBars = true partially help me. But through time when I clicked on the text field the search bar is disappears(

Have you any idea to sort out this issue?

Community
  • 1
  • 1
Roman Romanenko
  • 670
  • 7
  • 24

1 Answers1

0

Try to set,

   self.automaticallyAdjustsScrollViewInsets = NO;

in your viewdidload.

Update :

try

  self.extendedLayoutIncludesOpaqueBars = true
  self.searchController.hidesNavigationBarDuringPresentation = false  

or only

 self.searchController.hidesNavigationBarDuringPresentation = false  
Ketan Parmar
  • 26,610
  • 9
  • 47
  • 70