iOS开发>学无止境

 

searchBar.backgroundImage = [self imageWithColor:[UIColor clearColor] size:searchBar.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;

}

本内容来自: 超越昨天(学无止境) - http://www.cnblogs.com/xvewuzhijing/
原文地址:https://www.cnblogs.com/xvewuzhijing/p/4917693.html