adminCell.h 686 B

1234567891011121314151617181920212223242526272829
  1. #import <UIKit/UIKit.h>
  2. @class fansModel;
  3. @protocol adminCellDelegate <NSObject>
  4. - (void)delateAdminUser:(fansModel *)model;
  5. @end
  6. @interface adminCell : UITableViewCell
  7. @property (weak, nonatomic) IBOutlet UIButton *iconBTN;
  8. @property (weak, nonatomic) IBOutlet UILabel *nameL;
  9. @property (weak, nonatomic) IBOutlet UILabel *signatureL;
  10. @property (weak, nonatomic) IBOutlet UIImageView *sexL;
  11. @property (weak, nonatomic) IBOutlet UIImageView *levelL;
  12. @property (weak, nonatomic) IBOutlet UIButton *rightBtn;
  13. @property(nonatomic,weak)id <adminCellDelegate> delegate;
  14. @property(nonatomic,strong)fansModel *model;
  15. +(adminCell *)cellWithTableView:(UITableView *)tableView;
  16. @end