美文网首页
iOS开发之修改UISearchBar的背景颜色

iOS开发之修改UISearchBar的背景颜色

作者: 朱晓晓的技术博客 | 来源:发表于2017-06-12 13:57 被阅读16次

原文链接:http://www.cnblogs.com/Walking-Jin/p/5754519.html

定义方法
/** 取消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;
}
调用
_searchBar.backgroundImage = [self imageWithColor:[UIColor clearColor] size:_searchBar.bounds.size];

相关文章

网友评论

      本文标题:iOS开发之修改UISearchBar的背景颜色

      本文链接:https://www.haomeiwen.com/subject/lcelqxtx.html