JXReadListCell.h 424 B

1234567891011121314151617181920
  1. //
  2. // JXReadListCell.h
  3. // shiku_im
  4. //
  5. // Created by p on 2017/9/2.
  6. // Copyright © 2017年 Reese. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. @interface JXReadListCell : UITableViewCell
  10. @property (nonatomic, assign) int index;
  11. @property (nonatomic, assign) NSObject* delegate;
  12. @property (nonatomic, assign) SEL didTouch;
  13. @property (nonatomic, strong) roomData *room;
  14. - (void) setData:(JXUserObject *)obj;
  15. @end