18 lines
349 B
Objective-C
18 lines
349 B
Objective-C
//
|
|
// CustomModeSetCell.h
|
|
// Ifish
|
|
//
|
|
// Created by Minghao Xue on 2018/4/22.
|
|
// Copyright © 2018年 lianlian. All rights reserved.
|
|
//
|
|
|
|
#import <UIKit/UIKit.h>
|
|
|
|
@interface CustomModeSetCell : UITableViewCell
|
|
|
|
@property (weak, nonatomic) IBOutlet UILabel *customModeTitleLbl;
|
|
|
|
@property (weak, nonatomic) IBOutlet UIButton *switchControl;
|
|
|
|
@end
|