MonthPickerViewController.h 795 B

12345678910111213141516171819202122232425262728
  1. //
  2. // MonthPickerViewController.h
  3. // RedAnt ERP Mobile
  4. //
  5. // Created by Ray on 8/18/15.
  6. // Copyright (c) 2015 United Software Applications, Inc. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. #import "SRMonthPicker.h"
  10. @class MonthPickerViewController;
  11. @protocol MonthPickerViewControllerDelegate <NSObject>
  12. -(void) MPValueChanged:(NSString *)value indexPath :(NSIndexPath*) indexPath;
  13. @end
  14. @interface MonthPickerViewController : UIViewController<SRMonthPickerDelegate>
  15. @property (strong, nonatomic) IBOutlet SRMonthPicker *monthPicker;
  16. @property (nonatomic, weak) id<MonthPickerViewControllerDelegate> delegate;
  17. @property (strong, nonatomic) IBOutlet UILabel *label;
  18. @property (strong, nonatomic) NSDate* current_date;
  19. @property (strong,nonatomic) NSIndexPath* updatePosition;
  20. @end