ios中VRGCalendarView日历控件
2013-08-02 12:51 甘超波 阅读(3673) 评论(0) 编辑 收藏 举报
http://pan.baidu.com/share/link?shareid=4166002480&uk=923776187
官网 https://github.com/TjeerdVurig/Vurig-Calendar
#import <UIKit/UIKit.h> #import "VRGCalendarView.h" @interface ViewController : UIViewController<VRGCalendarViewDelegate> @end #import "ViewController.h" @interface ViewController () @end @implementation ViewController - (void)viewDidLoad { [super viewDidLoad]; VRGCalendarView *calendarView=[[VRGCalendarView alloc] init]; calendarView.delegate=self; [self.view addSubview:calendarView]; [calendarView release]; } - (void)didReceiveMemoryWarning { [super didReceiveMemoryWarning]; // Dispose of any resources that can be recreated. } #pragma mark -VRG delegate -(void)calendarView:(VRGCalendarView *)calendarView switchedToMonth:(int)month targetHeight:(float)targetHeight animated:(BOOL)animated{ NSLog(@" switch--->%zi",month); if (month==[[NSDate date] month]) { NSArray *dataArrary=@[@1,@5]; [calendarView markDates:dataArrary]; } } -(void)calendarView:(VRGCalendarView *)calendarView dateSelected:(NSDate *)date{ NSLog(@"select data-->%@",date); } @end
目前我正在专注NLP,请立刻加微信/QQ号 546611623, 免费送你原创《NLP高级执行师》高清视频