// // MonthPickerViewController.h // RedAnt ERP Mobile // // Created by Ray on 8/18/15. // Copyright (c) 2015 United Software Applications, Inc. All rights reserved. // #import #import "SRMonthPicker.h" @class MonthPickerViewController; @protocol MonthPickerViewControllerDelegate -(void) MPValueChanged:(NSString *)value indexPath :(NSIndexPath*) indexPath; @end @interface MonthPickerViewController : UIViewController @property (strong, nonatomic) IBOutlet SRMonthPicker *monthPicker; @property (nonatomic, weak) id delegate; @property (strong, nonatomic) IBOutlet UILabel *label; @property (strong, nonatomic) NSDate* current_date; @property (strong,nonatomic) NSIndexPath* updatePosition; @end