STTableSearchCell.h 719 B

1234567891011121314151617181920212223
  1. //
  2. // STTableSearchCell.h
  3. // BuguLive
  4. //
  5. // Created by 岳克奎 on 17/5/3.
  6. // Copyright © 2017年 xfg. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. #import "STTableBaseCell.h"
  10. @class STTableSearchCell;
  11. @protocol STTableSearchCellDelegate <NSObject>
  12. @optional
  13. //STTableSearchCel外传,解决cell自身m文件做不了的事
  14. //关键字搜索,需要API
  15. -(void)showSTTableSearchCell:(STTableSearchCell *)stTableSearchCell;
  16. @end
  17. @interface STTableSearchCell : STTableBaseCell <UISearchBarDelegate>
  18. @property (strong,nonatomic) UITableView *tableView;
  19. @property (weak, nonatomic) IBOutlet UISearchBar *secrchBar;
  20. @property (weak, nonatomic) id<STTableSearchCellDelegate>delegate;
  21. @end