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