TDSearchBar.m 2.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071
  1. //
  2. // TDSearchBar.m
  3. // TheoryNetwork
  4. //
  5. // Created by tederen on 2019/9/23.
  6. // Copyright © 2019 tederen. All rights reserved.
  7. //
  8. #import "TDSearchBar.h"
  9. @implementation TDSearchBar
  10. - (instancetype)initWithFrame:(CGRect)frame
  11. {
  12. self = [super initWithFrame:frame];
  13. if (self) {
  14. self.backgroundImage = [UIImage new];
  15. self.placeholder = @" 搜索";
  16. self.layer.cornerRadius = 18.f;
  17. self.layer.borderWidth = 0.5;
  18. self.layer.borderColor = [UIColor hexStringToColor:@"d8d8d8"].CGColor;
  19. UIImage *searchIcon = [UIImage imageNamed:@"sousuo"];
  20. [self setImage:searchIcon forSearchBarIcon:UISearchBarIconSearch state:UIControlStateNormal];
  21. for (UIView *view in self.subviews.lastObject.subviews.lastObject.subviews) {
  22. if([view isKindOfClass:NSClassFromString(@"UISearchBarTextField")]) {
  23. UITextField *textField = (UITextField *)view;
  24. //设置输入框的背景颜色
  25. textField.clipsToBounds = YES;
  26. //设置输入字体颜色
  27. textField.textColor = kColorFromRGB(0x999999);
  28. //设置默认文字颜色
  29. textField.font = [UIFont fontWithName:@"PingFang-SC-Regular" size:12];
  30. }
  31. }
  32. UIImage* clearImg = [UtilsTools imageWithColor:[UIColor clearColor] andHeight:20.f];
  33. [self setSearchFieldBackgroundImage:clearImg forState:UIControlStateNormal];
  34. }
  35. return self;
  36. }
  37. - (instancetype)init
  38. {
  39. self = [super init];
  40. if (self) {
  41. self.backgroundImage = [UIImage new];
  42. self.placeholder = @" 搜索";
  43. self.layer.cornerRadius = 5.f;
  44. self.layer.borderWidth = 0.5;
  45. self.layer.borderColor = [UIColor hexStringToColor:@"d8d8d8"].CGColor;
  46. UIImage *searchIcon = [UIImage imageNamed:@"sousuo"];
  47. [self setImage:searchIcon forSearchBarIcon:UISearchBarIconSearch state:UIControlStateNormal];
  48. for (UIView *view in self.subviews.lastObject.subviews.lastObject.subviews) {
  49. if([view isKindOfClass:NSClassFromString(@"UISearchBarTextField")]) {
  50. UITextField *textField = (UITextField *)view;
  51. //设置输入框的背景颜色
  52. textField.clipsToBounds = YES;
  53. //设置输入字体颜色
  54. textField.textColor = kColorFromRGB(0x333333);
  55. //设置默认文字颜色
  56. textField.font = [UIFont fontWithName:@"PingFang-SC-Regular" size:14];
  57. }
  58. }
  59. UIImage* clearImg = [UtilsTools imageWithColor:[UIColor clearColor] andHeight:20.f];
  60. [self setSearchFieldBackgroundImage:clearImg forState:UIControlStateNormal];
  61. }
  62. return self;
  63. }
  64. @end