FourTableViewCell.h 1.0 KB

12345678910111213141516171819202122232425262728293031
  1. //
  2. // FourTableViewCell.h
  3. // BuguLive
  4. //
  5. // Created by fanwe2014 on 16/7/22.
  6. // Copyright © 2016年 xfg. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. @class FourTableViewCell;
  10. @protocol sentImgviewDelegate <NSObject>
  11. //传送图片的url
  12. - (void)getImgWithtag:(int)tag andCell:(FourTableViewCell *)myCell;
  13. @end
  14. @interface FourTableViewCell : UITableViewCell
  15. @property (nonatomic, weak) id <sentImgviewDelegate>delegate;
  16. @property (weak, nonatomic) IBOutlet UIImageView *headImgView1;
  17. @property (weak, nonatomic) IBOutlet UIImageView *headImgView2;
  18. @property (weak, nonatomic) IBOutlet UIImageView *headImgView3;
  19. @property (weak, nonatomic) IBOutlet UILabel *nameLabel;
  20. @property (weak, nonatomic) IBOutlet UILabel *nameLabel2;
  21. @property (weak, nonatomic) IBOutlet UILabel *nameLabel3;
  22. @property (weak, nonatomic) IBOutlet UIImageView *imgView;
  23. - (void)creatCellWithAuthentication:(int)authentication andHeadImgStr1:(NSString *)string1 andHeadImgStr2:(NSString *)string2 andHeadImgStr3:(NSString *)string3 andUrlStr:(NSString *)urlStr;
  24. @end