UISearchController searchBar frame only resizes on first click

后端 未结 2 781
长情又很酷
长情又很酷 2020-12-21 15:37

I have just implemented a UISearchController in a regular UIViewController, and I have a kind of weird issue.

I have a UIView that is adapted exactly to the size I w

2条回答
  •  失恋的感觉
    2020-12-21 16:39

    UISearchController's view behaviour is weird indeed, but there is a simple workaround.

    • Use an additional container view
    • put UISearchController's view inside
    • set UISearchController's view autoresizing mask to UIViewAutoresizingFlexibleWidth | UIViewAutoresizingFlexibleHeight
    • set UISearchController's frame to container's view bounds

    At this point UISearchController.view won't resize beyond container.bounds.

提交回复
热议问题