iOS 11 SearchBar in NavigationBar

后端 未结 8 1848
陌清茗
陌清茗 2020-12-12 12:44

With iOS 11 Apple has redesigned the UISearchBar by making the corners rounder and the height bigger. Adding a UISearchBar to the navigationBar is pretty simple by just sett

8条回答
  •  醉梦人生
    2020-12-12 13:21

    You can change the height of UISearchBar in iOS 11 by adding a constraint of height 44:

    if #available(iOS 11.0, *) {
        searchBar.heightAnchor.constraint(equalToConstant: 44.0).isActive = true
    }
    

提交回复
热议问题