25 lines
622 B
Objective-C
25 lines
622 B
Objective-C
//
|
|
// SetTimerCell.h
|
|
// Ifish
|
|
//
|
|
// Created by Alex on 2019/5/1.
|
|
// Copyright © 2019 lianlian. All rights reserved.
|
|
//
|
|
|
|
#import <UIKit/UIKit.h>
|
|
|
|
NS_ASSUME_NONNULL_BEGIN
|
|
|
|
@interface SetTimerCell : UITableViewCell
|
|
|
|
@property (weak, nonatomic) IBOutlet UIImageView *backImageView;
|
|
@property (weak, nonatomic) IBOutlet UIButton *switchBtn;
|
|
@property (weak, nonatomic) IBOutlet UILabel *titleLabel;
|
|
@property (weak, nonatomic) IBOutlet UILabel *timerLabel;
|
|
|
|
- (void)configTitleLabel:(NSString *)title timer:(NSString *)timeStr switchStatus:(BOOL)status;
|
|
@property (nonatomic, strong) id model;
|
|
@end
|
|
|
|
NS_ASSUME_NONNULL_END
|