JXWhoCanSeeCell.h 821 B

12345678910111213141516171819202122232425262728
  1. //
  2. // JXWhoCanSeeCell.h
  3. // shiku_im
  4. //
  5. // Created by p on 2018/6/27.
  6. // Copyright © 2018年 Reese. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. @class JXWhoCanSeeCell;
  10. @protocol JXWhoCanSeeCellDelegate <NSObject>
  11. - (void)whoCanSeeCell:(JXWhoCanSeeCell *)whoCanSeeCell selectAction:(NSInteger)index;
  12. - (void)whoCanSeeCell:(JXWhoCanSeeCell *)whoCanSeeCell editBtnAction:(NSInteger)index;
  13. @end
  14. @interface JXWhoCanSeeCell : UITableViewCell
  15. @property (nonatomic, strong) UIButton *contentBtn;
  16. @property (nonatomic, strong) UIImageView *selImageView;
  17. @property (nonatomic, strong) JXLabel *title;
  18. @property (nonatomic, strong) JXLabel *userNames;
  19. @property (nonatomic, strong) UIButton *editBtn;
  20. @property (nonatomic, weak) id<JXWhoCanSeeCellDelegate>delegate;
  21. @property (nonatomic, assign) NSInteger index;
  22. @end