码迷,mamicode.com
首页 > 移动开发 > 详细

iOS开发-取消UISearchBar背景色

时间:2015-10-28 17:14:12      阅读:170      评论:0      收藏:0      [点我收藏+]

标签:

 

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;

}

 

iOS开发-取消UISearchBar背景色

标签:

原文地址:http://www.cnblogs.com/xvewuzhijing/p/4917693.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!