首页 > 系统 > iOS > 正文

IOS中设置UISearchBar背景颜色的详细教程

2020-02-19 15:55:33
字体:
来源:转载
供稿:网友

  今天小编跟大家分享一篇关于IOS中设置UISearchBar背景颜色的详细教程,感兴趣的朋友跟小编一起来了解一下吧!

  修改背景色方法如下:

  mySearchBar.backgroundColor = RGBACOLOR(249,249,249,1);

  mySearchBar.backgroundImage = [self imageWithColor:[UIColor clearColor] size:mySearchBar.bounds.size];

  //取消searchbar背景色

  - (UIImage *)imageWithColor:(UIColor *)color size:(CGSize)size

  {

  CGRect rect = CGRectMake(0, 0, size.width, size.height);

  UIGraphicsBeginImageContext(rect.size);

  CGContextRef context = UIGraphicsGetCurrentContext();

  CGContextSetFillColorWithColor(context, [color CGColor]);

  CGContextFillRect(context, rect);

  UIImage *image = UIGraphicsGetImageFromCurrentImageContext();

  UIGraphicsEndImageContext();

  return image;

  }

  以上就是关于IOS中设置UISearchBar背景颜色的详细教程了,想必都了解了吧,更多相关内容请继续关注武林技术频道。

发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表