IOS中设置UISearchBar背景颜色的详细教程
今天小编跟大家分享一篇关于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背景颜色的详细教程了,想必都了解了吧,更多相关内容请继续关注爱站技术频道。