改变UISearchBar背景色
-(void)CreateSearchBar
{
UISearchBar *searchView = [[UISearchBar alloc] initWithFrame:CGRectMake(0, 200, 320, 0)];
searchView.placeholder = @"查询";
[searchView sizeToFit];
[self.view addSubview:searchView];
searchView.backgroundImage = [self imageWithColor:[UIColor clearColor] size:searchView.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背景颜色的方法。通过创建并设置searchBar的背景图片为指定颜色,可以有效地改变其外观。该技巧适用于希望调整搜索框样式以匹配应用主题的开发者。
601

被折叠的 条评论
为什么被折叠?



