How to add a 1 pixel gray border around a UISearchBar TextField

后端 未结 6 2381
攒了一身酷
攒了一身酷 2021-02-19 14:21

I\'m trying to figure out how to add a 1 pixel stroke gray border to my UISearchBar in my app. The Facebook Messenger app accomplishes this quite well. (see pic below).

6条回答
  •  说谎
    说谎 (楼主)
    2021-02-19 14:42

    try this

    self.poundsTxt.layer.borderColor = [[UIColor whiteColor]CGColor];
    self.poundsTxt.layer.borderWidth=2.0;
    

    import Quartz Core Framework Reference into your project and add import to your ViewController.m to work borderColor and borderWidth.

提交回复
热议问题