// // SetTableViewCell.h // BuguLive // // Created by GuoMs on 16/7/18. // Copyright © 2016年 xfg. All rights reserved. // #import @interface SetTableViewCell : UITableViewCell @property (strong, nonatomic) IBOutlet UILabel *setText; @property (strong, nonatomic) IBOutlet UILabel *loginBack; @property (strong, nonatomic) IBOutlet UILabel *memoryText; @property (strong, nonatomic) IBOutlet UIImageView *comeBackIMG; @property (weak, nonatomic) IBOutlet UISwitch *nobleOpenSwitch; @property (weak, nonatomic) IBOutlet UILabel *labOutLogin; @property(nonatomic, assign) NSInteger indexSection; @property(nonatomic, assign) NSInteger indexRow; @property (weak, nonatomic) IBOutlet UIView *line; - (void)configurationCellWithSection:(NSInteger)section row:(NSInteger)row distribution_module:(NSString *)distribution_module; @end