修改UISearchBar 背景

title: 修改UISearchBar 背景
date: 2015-08-23 11:07:53
categories: IOS

tags: uisearchbar

小小程序猿
我的博客:http://daycoding.com

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/Users/coolwxb/Documents/博客/blog/source/_posts/Masonry 使用复习总结.markdown
{
    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;
}

你可能感兴趣的:(修改UISearchBar 背景)