Customize search bar

前端 未结 5 706
花落未央
花落未央 2020-12-20 06:51

I am designing a search bar. I need the search bar to look like one in the image. Tried few ways but no changes. Help much appreciated.

5条回答
  •  星月不相逢
    2020-12-20 07:00

    if let textfield = searchBar.value(forKey: "searchField") as? UITextField {
                    textfield.textColor = UIColor.blue
                    if let backgroundview = textfield.subviews.first {
                        // Background color
                        backgroundview.backgroundColor = UIColor.white
                        // Rounded corner
                        backgroundview.layer.cornerRadius = 14;
                        backgroundview.clipsToBounds = true;
                    }
                }
    

提交回复
热议问题