STBMKView.h 439 B

1234567891011121314151617181920
  1. //
  2. // STBMKView.h
  3. // BuguLive
  4. //
  5. // Created by 岳克奎 on 17/4/27.
  6. // Copyright © 2017年 xfg. All rights reserved.
  7. //
  8. #import "STTableBaseView.h"
  9. #import "STTableDoubleLabCell.h"
  10. #import "STTableSearchCell.h"
  11. #import "STTableLeftRightLabCell.h"
  12. @protocol STBMKViewDelegate <NSObject>
  13. @optional
  14. @end
  15. @interface STBMKView : STTableBaseView <STTableSearchCellDelegate>
  16. @property(nonatomic,weak) id<STBMKViewDelegate>delegate;
  17. @end