亲宝软件园·资讯

展开

IOS开发代码分享之设置UISearchBar的背景颜色 IOS开发代码分享之设置UISearchBar的背景颜色

人气:0
想了解IOS开发代码分享之设置UISearchBar的背景颜色的相关内容吗,在本文为您仔细讲解IOS开发代码分享之设置UISearchBar的背景颜色的相关知识和一些Code实例,欢迎阅读和指正,我们先划重点:IOS开发,代码分享,UISearchBar,背景颜色,下面大家一起来学习吧。

今天用到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;
}

 

加载全部内容

相关教程
猜你喜欢
用户评论