| 123456789101112131415161718192021222324252627282930 |
- //
- // SetTableViewCell.h
- // BuguLive
- //
- // Created by GuoMs on 16/7/18.
- // Copyright © 2016年 xfg. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- @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
|