19 lines
317 B
Objective-C
19 lines
317 B
Objective-C
//
|
|
// PlusTableViewCell.h
|
|
// Ifish
|
|
//
|
|
// Created by Alex on 2019/4/28.
|
|
// Copyright © 2019 lianlian. All rights reserved.
|
|
//
|
|
|
|
#import <UIKit/UIKit.h>
|
|
|
|
NS_ASSUME_NONNULL_BEGIN
|
|
|
|
@interface PlusTableViewCell : UITableViewCell
|
|
@property (weak, nonatomic) IBOutlet UIButton *addTimerBtn;
|
|
|
|
@end
|
|
|
|
NS_ASSUME_NONNULL_END
|