OSX 日历组件:Calendar-OSX

jopen 9年前

Calendar-OSX 是用于 OSX 的日历组件,灵感来自于 iOS 上一些免费的替代品。

Description

MLCalendarView is a date selector component which is represented as a month calendar. This component extracted from the ModerLook-OSX package for easier standalone use.

The component uses the system Language & Region settings, so it will display the month and day names regarding to the system settings. Also it lays out the days according to the first day of week system setting.

Usage

To use the component in your project you need to copy all the files in the MLCalendar group to your project.

MLCalendarView is derived from NSViewController and can be used as any other view.

The component contains the following properties to change the default colors used by the calendar.

@property (nonatomic, copy) NSColor* backgroundColor;  @property (nonatomic, copy) NSColor* textColor;  @property (nonatomic, copy) NSColor* selectionColor;  @property (nonatomic, copy) NSColor* todayMarkerColor;  @property (nonatomic, copy) NSColor* dayMarkerColor;

And the following two properties to set the selected date and the currently displayed month.

@property (nonatomic, strong) NSDate* date;  @property (nonatomic, strong) NSDate* selectedDate;

Also, there is a delegate for the calendar, which is used to send a message when the selected date changed.

@protocol MLCalendarViewDelegate <NSObject>  - (void) didSelectDate:(NSDate*)selectedDate; @end


OSX 日历组件:Calendar-OSX

项目主页:http://www.open-open.com/lib/view/home/1426234218717