LogShareDelegate.h 429 B

1234567891011121314151617
  1. //
  2. // LogShareDelegate.h
  3. // IBOSSmini
  4. //
  5. // Created by guan hong hou on 2017/6/15.
  6. // Copyright © 2017年 elongtian. All rights reserved.
  7. //
  8. #import <Foundation/Foundation.h>
  9. @class LogShareTableViewCell;
  10. @protocol LogShareDelegate <NSObject>
  11. @optional
  12. -(void)showDetail:(int)index;
  13. -(void)selectListItem:(NSArray *)sarray;
  14. -(void) btnCheckPressed:(LogShareTableViewCell *)cell;
  15. - (void)reShareData:(NSArray *)sarray;
  16. @end