STSeachView.h 309 B

12345678910111213141516
  1. //
  2. // STSeachView.h
  3. // BuguLive
  4. //
  5. // Created by 岳克奎 on 17/4/27.
  6. // Copyright © 2017年 xfg. All rights reserved.
  7. //
  8. #import "STBaseView.h"
  9. @protocol STSeachViewDelegate <NSObject>
  10. @optional
  11. @end
  12. @interface STSeachView : STBaseView
  13. @property(nonatomic,weak) id<STSeachViewDelegate>delegate;
  14. @end