Remove Border of UISearchBar in iOS7

前端 未结 10 1653
死守一世寂寞
死守一世寂寞 2020-12-24 10:46

I\'m trying to remove border of UISearchBar in iOS 7. In iOS 6 it\'s working fine. I created the UISearchBar programatically. I tried almost every thing from Stack Overflow

10条回答
  •  温柔的废话
    2020-12-24 11:21

    I found the solution: set the barTintColor of UISearchBar to clearColor

    topSearchBar.barTintColor = [UIColor clearColor];
    

提交回复
热议问题