更改搜索栏范围背景颜色

时间:2018-02-21 11:09:21

标签: ios objective-c

更改搜索栏范围(所有/待定)背景颜色

请参考以下图片

enter image description here

1 个答案:

答案 0 :(得分:-1)

我有一个示例问题,我解决了以下代码。

CGSize imageSize = CGSizeMake(64, 64);
UIColor *fillColor = [UIColor whiteColor];
UIGraphicsBeginImageContextWithOptions(imageSize, YES, 0);
CGContextRef context = UIGraphicsGetCurrentContext();
[fillColor setFill];
CGContextFillRect(context, CGRectMake(0, 0, imageSize.width, imageSize.height));
UIImage *image = UIGraphicsGetImageFromCurrentImageContext();
UIGraphicsEndImageContext();

self.searchController.searchBar.scopeBarBackgroundImage = image;