STBMKViewC.h 705 B

12345678910111213141516171819202122232425
  1. //
  2. // STBMKViewC.h
  3. // BuguLive
  4. //
  5. // Created by 岳克奎 on 17/4/27.
  6. // Copyright © 2017年 xfg. All rights reserved.
  7. //
  8. #import "STBaseViewC.h"
  9. #import "STBMKView.h"
  10. #import "STSeachView.h"
  11. @class STBMKViewC;
  12. @protocol STBMKViewCDelegate <NSObject>
  13. @optional
  14. //给动态界面下发数据
  15. -(void)showUpdateLoactionInfoOfIndexPath;
  16. @end
  17. @interface STBMKViewC : STBaseViewC <STBMKViewDelegate,STTableViewBaseViewDelegate>
  18. @property(nonatomic,strong)STBMKView *stBMKView;
  19. @property(nonatomic,strong)STSeachView *stSeachView;
  20. @property(nonatomic,strong)UIBarButtonItem *rightBarButtonItem;
  21. @property (nonatomic,weak) id<STBMKViewCDelegate> delegate;
  22. @end