循环定时器

This commit is contained in:
kai60
2022-05-16 10:41:03 +08:00
parent 146e89a310
commit 0ab0c4fa08
20 changed files with 2390 additions and 231 deletions
@@ -0,0 +1,19 @@
//
// CycleTimerCell.h
// Ifish
//
// Created by 祝发冬 on 2022/5/15.
// Copyright © 2022 lianlian. All rights reserved.
//
#import <UIKit/UIKit.h>
NS_ASSUME_NONNULL_BEGIN
@interface CycleTimerCell : UITableViewCell
@property (weak, nonatomic) IBOutlet UILabel *openTilmeLabel;
@property (weak, nonatomic) IBOutlet UILabel *closeTimeLabel;
@property (nonatomic,weak) id model;
@end
NS_ASSUME_NONNULL_END