search

Home  >  Q&A  >  body text

ios - UISearchBar如何自定义

UISearchBar如何定义背景和cancal按钮的背景还有那个输入文字后文字输入框右边的删除按钮 而且要适配ios7

还有ios7下的搜索文字输入框的圆角要怎么修改?

大家讲道理大家讲道理2771 days ago276

reply all(2)I'll reply

  • 天蓬老师

    天蓬老师2017-04-17 12:02:00

    //隐藏背景
    [self.searchBar setBackgroundImage:[UIImage new]];
    [self.searchBar setTranslucent:YES];
    

    reply
    0
  • 怪我咯

    怪我咯2017-04-17 12:02:00

    Check out the UISearchBar documentation Customizing Appearance
    https://developer.apple.com/library/ios/documentation/uikit/reference/UISearchBar_Class/Reference.html#//apple_ref/occ/instm/UISearchBar/ backgroundImageForBarPosition:barMetrics:

    Basically, you will be able to solve your problems after reading this

    reply
    0
  • Cancelreply