iOS实现一个简易日历代码

时间:2021-05-02

日历一般都是用UICollectionView进行开发的,相关demo也很多,这里就讲一个我最近写的玩的demo,由于时间原因没来得及加年历和周历,一个月历的小demo,随着月份天数的不同,自动改变日历的高。

代理部分:

? 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 @protocol KJCalendarDelegate <NSObject> /** 随着每个月的天数不一样而改变高度 @param height 日历高度 */ - (void)calendarViewHeightChange:(CGFloat)height; /** 当前展示的年和月,当类型是年历的时候,只返回年 @param year 年 @param month 月 */ - (void)currentShowYear:(NSInteger)year withMonth:(NSInteger)month; /** 选中的时间 @param solar 阳历 @param lunar 农历 */ - (void)selectSolarDate:(NSString *)solar withLunar:(NSString *)lunar; @end

这个当时创建文件的时候,没注意,KJCalendar写成了KJCanlendar,抱歉。。。

下面是可自定义的部分:

? 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 //======以下属性可自定义====== //背景颜色 @property (strong, nonatomic) UIColor *bgColor; //weekView背景色 默认clearcolor @property (strong, nonatomic) UIColor *weekColor; //选择状态下的背景颜色 @property (strong, nonatomic) UIColor *selectBgColor; //选择状态下的字体颜色 @property (strong, nonatomic) UIColor *selectTitleColor; //普通状态下公历字体颜色 @property (strong, nonatomic) UIColor *normalDateTitleColor; //普通状态下农历字体颜色 @property (strong, nonatomic) UIColor *normalLunerTitleColor; //今天的字体颜色 @property (strong, nonatomic) UIColor *todayTitleColor; //今天选择状态下的背景颜色 @property (strong, nonatomic) UIColor *todaySelectBgColor; //今天选择状态下的字体颜色 @property (strong, nonatomic) UIColor *todaySelectTitleColor; //距屏幕左右间隔,默认8 @property (assign, nonatomic) CGFloat screenInSpace; //每行(item)的高度,设置的高度不能大于宽度,宽度的来源是屏幕的宽减去左右间隔除以7得到 @property (assign, nonatomic) CGFloat rowHeight; //设置是否显示阴历 YES-显示 NO-隐藏 默认YES @property (assign, nonatomic) BOOL isShowLunar; //公历字体 默认system 13 @property (strong, nonatomic) UIFont *dateFont; //农历字体 默认system 8 @property (strong, nonatomic) UIFont *lunerFont; //选中时公历字体 默认 [UIFont boldSystemFontOfSize:13.0f]; @property (strong, nonatomic) UIFont *dateSelectFont; //选中时农历字体 默认 [UIFont boldSystemFontOfSize:8.0f]; @property (strong, nonatomic) UIFont *lunerSelectFont;

使用也很简单:

? 1 2 3 4 5 //高度是根据日历的月份天数决定的 self.calView = [[KJCanlendarView alloc] initWithY:0 withNavc:YES andLeastYear:0]; self.calView.kjDelegate = self; [self.calView showKJCalendarInCtrl:self];

每个属性都有默认值,需要改变赋值即可,当然啦,设置字体时,要调整背景圆圈的大小以及rouHeight的大小,具体的下面我给出demo,就不多说了,大家就随便看看,写的很随意,希望能帮到大家。

demo:KJCalendar.rar

效果图:

以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持服务器之家。

原文链接:http://www.jianshu.com/p/c0d798a4cc5d

声明:本页内容来源网络,仅供用户参考;我单位不保证亦不表示资料全面及准确无误,也不保证亦不表示这些资料为最新信息,如因任何原因,本网内容或者用户因倚赖本网内容造成任何损失或损害,我单位将不会负任何法律责任。如涉及版权问题,请提交至online#300.cn邮箱联系删除。

相关文章