You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 

25 lines
400 B

//
// CalendarView.h
// CalendarDemo
//
// Created by RYX on 2019/1/9.
// Copyright © 2019 tuobu. All rights reserved.
//
#import <UIKit/UIKit.h>
@interface CalendarView : UIView
@property (nonatomic ,strong) NSArray *signDate;
- (void)signIn:(NSDate *)date;
@property (nonatomic ,strong) void(^selectTimeDate)(NSString *time);
@property (nonatomic ,strong) void(^signIn)(void);
@end