自定义的日历视图 CLWeeklyCalendarView
- 授权协议: MIT
- 开发语言: Objective-C
- 操作系统: iOS
- 软件首页: https://github.com/clisuper/CLWeeklyCalendarView
- 软件文档: https://github.com/clisuper/CLWeeklyCalendarView
软件介绍
CLWeeklyCalendarView是一款能够自定义的日历视图。支持点击日期的delegate方法,支持多种属性修改。日历以周为周期,双击空白的地方能够定位到当天日期,支持左右滚动。
初始化:
//Initialize
-(CLWeeklyCalendarView *)calendarView
{
if(!_calendarView){
_calendarView = [[CLWeeklyCalendarView alloc] initWithFrame:CGRectMake(0, 0, self.view.bounds.size.width, 100)];
_calendarView.delegate = self;
}
return _calendarView;
}
//Add it into parentView
[self.view addSubview:self.calendarView];
perl进阶
Randal L.Schwartz、brian d.foy、Tom Phoenix / 韩雷 / 人民邮电出版社 / 2015-10-1 / 69
本书是Learning Perl一书的进阶。学完本书之后,您可以使用Perl语言的特性编写从简单脚本到大型程序在内的所有程序,正是Perl语言的这些特性使其成为通用的编程语言。本书为读者深入介绍了模块、复杂的数据结构以及面向对象编程等知识。 本书每章的篇幅都短小精悍,读者可以在一到两个小时内读完,每章末尾的练习有助于您巩固在本章所学的知识。如果您已掌握了Learning Perl中的内容并渴......一起来看看 《perl进阶》 这本书的介绍吧!
