SetTableViewCell.h 859 B

123456789101112131415161718192021222324252627282930
  1. //
  2. // SetTableViewCell.h
  3. // BuguLive
  4. //
  5. // Created by GuoMs on 16/7/18.
  6. // Copyright © 2016年 xfg. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. @interface SetTableViewCell : UITableViewCell
  10. @property (strong, nonatomic) IBOutlet UILabel *setText;
  11. @property (strong, nonatomic) IBOutlet UILabel *loginBack;
  12. @property (strong, nonatomic) IBOutlet UILabel *memoryText;
  13. @property (strong, nonatomic) IBOutlet UIImageView *comeBackIMG;
  14. @property (weak, nonatomic) IBOutlet UISwitch *nobleOpenSwitch;
  15. @property (weak, nonatomic) IBOutlet UILabel *labOutLogin;
  16. @property(nonatomic, assign) NSInteger indexSection;
  17. @property(nonatomic, assign) NSInteger indexRow;
  18. @property (weak, nonatomic) IBOutlet UIView *line;
  19. - (void)configurationCellWithSection:(NSInteger)section row:(NSInteger)row distribution_module:(NSString *)distribution_module;
  20. @end