You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
32 lines
911 B
32 lines
911 B
1 year ago
|
//
|
||
|
// NewWSettingTableViewCell.h
|
||
|
// tongxin
|
||
|
//
|
||
|
// Created by Apple on 2019/10/17.
|
||
|
// Copyright © 2019年 xTT. All rights reserved.
|
||
|
//
|
||
|
|
||
|
#import <Foundation/Foundation.h>
|
||
|
#import <UIKit/UIKit.h>
|
||
|
|
||
|
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
|