无标题文章

2017-11-05  本文已影响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;

}

上一篇下一篇

猜你喜欢

热点阅读