// // NewWSettingTableViewCell.h // tongxin // // Created by Apple on 2019/10/17. // Copyright © 2019年 xTT. All rights reserved. // #import #import NS_ASSUME_NONNULL_BEGIN typedef void (^BlockCellBtnClick) (id sender, id blockCell); @interface NewWSettingTableViewCell : UITableViewCell @property (copy, nonatomic) BlockCellBtnClick cellBack; @property (weak, nonatomic) IBOutlet UIView *backView; @property (weak, nonatomic) IBOutlet UILabel *aTitleLabel; @property (weak, nonatomic) IBOutlet UISwitch *switchBtn; @property (weak, nonatomic) IBOutlet UILabel *aDetailLabel; @property (weak, nonatomic) IBOutlet UIImageView *enterInfoIconView; -(void)setTitle:(NSString*)title AndDetail:(NSString*)detail RoShowSwitch:(BOOL)isShow; ///设置圆角 (0: 无 , 1: 上2个 ,2: 下2个) - (void)setBackViewCornerWithType:(int)type; @end NS_ASSUME_NONNULL_END