JXAddressBookCell.h 1.1 KB

1234567891011121314151617181920212223242526272829303132333435363738
  1. //
  2. // JXAddressBookCell.h
  3. // shiku_im
  4. //
  5. // Created by p on 2018/8/30.
  6. // Copyright © 2018年 Reese. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. #import "QCheckBox.h"
  10. #import "JXAddressBook.h"
  11. @class JXAddressBookCell;
  12. @protocol JXAddressBookCellDelegate <NSObject>
  13. - (void)addressBookCell:(JXAddressBookCell *)abCell checkBoxSelectIndexNum:(NSInteger)indexNum isSelect:(BOOL)isSelect;
  14. - (void)addressBookCell:(JXAddressBookCell *)abCell addBtnAction:(JXAddressBook *)addressBook;
  15. @end
  16. @interface JXAddressBookCell : UITableViewCell <QCheckBoxDelegate>
  17. @property (nonatomic, strong) JXImageView *headImage;
  18. @property (nonatomic, strong) UILabel *name;
  19. @property (nonatomic, strong) UILabel *nickName;
  20. @property (nonatomic, strong) QCheckBox *checkBox;
  21. @property (nonatomic, strong) UIButton *addBtn;
  22. @property (nonatomic, assign) NSInteger index;
  23. @property (nonatomic, assign) BOOL isShowSelect;
  24. @property (nonatomic, strong) UIView *lineView;
  25. @property (nonatomic, weak) id<JXAddressBookCellDelegate>delegate;
  26. @property (nonatomic, strong) JXAddressBook *addressBook;
  27. @property (nonatomic, assign) BOOL isInvite;
  28. @end