20 lines
382 B
Objective-C
20 lines
382 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 UIImageView *backImageView;
|
|
@property (weak, nonatomic) IBOutlet UIButton *addTimerBtn;
|
|
|
|
@end
|
|
|
|
NS_ASSUME_NONNULL_END
|