MPersonCenterCell.h 901 B

1234567891011121314151617181920212223242526
  1. //
  2. // MPersonCenterCell.h
  3. // BuguLive
  4. //
  5. // Created by 丁凯 on 2017/8/23.
  6. // Copyright © 2017年 xfg. All rights reserved.
  7. #import <UIKit/UIKit.h>
  8. @interface MPersonCenterCell : UITableViewCell
  9. @property (weak, nonatomic) IBOutlet UIImageView *leftImgView;
  10. @property (weak, nonatomic) IBOutlet UILabel *lefLabel;
  11. @property (weak, nonatomic) IBOutlet UILabel *rightLabel;
  12. @property (weak, nonatomic) IBOutlet UIImageView *rightImgView;
  13. @property (nonatomic,strong) UIView *lineView;
  14. @property (weak, nonatomic) IBOutlet NSLayoutConstraint *imgCenterConstraint;
  15. @property (weak, nonatomic) IBOutlet NSLayoutConstraint *viewLeftConstraint;
  16. @property (weak, nonatomic) IBOutlet NSLayoutConstraint *viewRightConstraint;
  17. - (void)creatCellWithImgStr:(NSString *)imgStr andLeftStr:(NSString *)leftStr andRightStr:(NSString *)rightStr andSection:(int)section;
  18. @end