美文网首页
无标题文章

无标题文章

作者: 我有个天像跟你聊聊 | 来源:发表于2017-11-05 16:34 被阅读0次

    如何去掉searchBar的背景色

    //取消searchbar背景色

    [self imageWithColor:[UIColor clearColor] size:_searchBar.bounds.size];

    - (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;

    }

    相关文章

      网友评论

          本文标题:无标题文章

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