birthdayView.h 548 B

123456789101112131415161718192021222324
  1. //
  2. // birthdayView.h
  3. // BuguLive
  4. //
  5. // Created by fanwe2014 on 16/7/19.
  6. // Copyright © 2016年 xfg. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. @protocol LZDateDelegate <NSObject>
  10. @optional
  11. - (void)confrmCallBack:(NSInteger)Year month:(NSInteger)month day:(NSInteger)day andtag:(int)tagIndex;
  12. @end
  13. @interface birthdayView : UIView
  14. {
  15. int _yearNum;
  16. }
  17. @property (nonatomic, weak) id<LZDateDelegate> delegate;
  18. - (id)initWithDelegate:(id<LZDateDelegate>)delegate year:(NSUInteger)year month:(NSUInteger)month day:(NSUInteger)day;
  19. @end