STSeachView.m 636 B

12345678910111213141516171819202122232425262728293031
  1. //
  2. // STSeachView.m
  3. // BuguLive
  4. //
  5. // Created by 岳克奎 on 17/4/27.
  6. // Copyright © 2017年 xfg. All rights reserved.
  7. //
  8. #import "STSeachView.h"
  9. @implementation STSeachView
  10. /*
  11. // Only override drawRect: if you perform custom drawing.
  12. // An empty implementation adversely affects performance during animation.
  13. - (void)drawRect:(CGRect)rect {
  14. // Drawing code
  15. }
  16. */
  17. -(instancetype)initWithCoder:(NSCoder *)aDecoder{
  18. if (self = [super initWithCoder:aDecoder]) {
  19. }
  20. return self;
  21. }
  22. -(void)awakeFromNib{
  23. [super awakeFromNib];
  24. }
  25. -(void)setDelegate:(id<STSeachViewDelegate>)delegate{
  26. _delegate = delegate;
  27. }
  28. @end