| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137 |
- /*
- Copyright (C) 2012-2015 Simon Rice
-
- Permission is hereby granted, free of charge, to any person obtaining a copy
- of this software and associated documentation files (the "Software"), to deal
- in the Software without restriction, including without limitation the rights
- to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
- copies of the Software, and to permit persons to whom the Software is
- furnished to do so, subject to the following conditions:
-
- The above copyright notice and this permission notice shall be included in
- all copies or substantial portions of the Software.
-
- THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
- IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
- FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
- AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
- LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
- OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
- THE SOFTWARE.
- */
- #import <UIKit/UIKit.h>
- #ifndef IBInspectable
- #define IBInspectable
- #endif
- @class SRMonthPicker;
- /**
- Defines a set of optional methods you can use to receive change-related
- messages for SRMonthPicker objects. All of the methods in this protocol are
- optional. Typically, the delegate implements other optional methods to
- respond to new selections.
- */
- @protocol SRMonthPickerDelegate <NSObject>
- @optional
- /**
- Tells the delegate that a specified date is about to be selected.
- @param monthPicker A month picker object informing the delegate about the
- impending selection.
- */
- - (void)monthPickerWillChangeDate:(SRMonthPicker *)monthPicker;
- /**
- Tells the delegate that a specified date has been selected.
- @param monthPicker A month picker object informing the delegate about the
- committed selection.
- */
- - (void)monthPickerDidChangeDate:(SRMonthPicker *)monthPicker;
- @end
- /**
- The SRMonthPicker class implements an object that uses multiple rotating
- wheels to allow users to select a month and year. This is similar to both
- iOS's UIDatePicker set to Date-only mode without the day element and Mobile
- Safari's picker view that appears for an `<input type="month" />` tag.
- Unlike UIDatePicker, SRMonthPicker does inherit from UIPickerView. It does
- use both UIPickerViewDataSource and UIPickerViewDelegate, but presents a
- monthPickerDelegate property.
- */
- @interface SRMonthPicker : UIPickerView<UIPickerViewDataSource, UIPickerViewDelegate>
- /**
- The designated delegate for the month picker.
- @warning **Important:** The delegate property is already used internally for
- UIPickerView's delegate - **please don't read from or assign to it**!
- */
- @property (nonatomic, weak) id<SRMonthPickerDelegate> monthPickerDelegate;
- /**
- The date represented by the month picker.
-
- The day component is ignored when written, and set to 1 when read.
- */
- @property (nonatomic, strong) IBInspectable NSDate* date;
- /// The calendar currently being used
- @property (nonatomic, strong, readonly) NSCalendar *calendar;
-
- /// The minimum year that a month picker can show.
- @property (nonatomic) IBInspectable NSInteger minimumYear;
- /// The maximum year that a month picker can show.
- @property (nonatomic) IBInspectable NSInteger maximumYear;
- /// A Boolean value that determines whether the year is shown first.
- @property (nonatomic) IBInspectable BOOL yearFirst;
- /// A Boolean value that determines whether the month wraps
- @property (nonatomic) IBInspectable BOOL wrapMonths;
- /// A Boolean value that determines whether the current month & year are coloured.
- @property (nonatomic) BOOL enableColourRow;
- /// en-US alias for `enableColourRow`.
- @property (nonatomic, getter = enableColourRow, setter = setEnableColourRow:) IBInspectable BOOL enableColorRow;
- /// Font to be used for all rows. Default: System Bold, size 24.
- @property (nonatomic, strong) UIFont *font;
- /// Colour to be used for all "non coloured" rows. Default: Black.
- @property (nonatomic, strong) UIColor *fontColour;
- /// en-US alias for `fontColour`.
- @property (nonatomic, strong, getter = fontColour, setter = setFontColour:) IBInspectable UIColor *fontColor;
- /**
- Designated initialiser.
- Initializes and returns a newly allocated month picker with the current calendar,
- month & year.
- */
- -(id)init;
- /**
- Initializes and returns a newly allocated month picker with the specified
- date and current calendar.
- @param date The date to be represented by the month picker - the day
- component will be ignored.
- */
- -(id)initWithDate:(NSDate *)date;
- /**
- Initializes and returns a newly allocated month picker with the specified
- date and current calendar.
- @param date The date to be represented by the month picker - the day
- component will be ignored.
- @param calendar The calendar to used by the date.
- */
- -(id)initWithDate:(NSDate *)date calendar:(NSCalendar *)calendar;
- @end
|