本文介绍了ios swift开发之日历插件开发示例,分享给大家,具体如下:
效果图
0x01 如何获取目前日期
关于日期,苹果给出了 date 类,初始化一个 date 类
1
|
let date = date()
|
打印出来就是当前系统的日期和时间
那么如何单独获得当前年份,月份呢?
1
2
3
4
5
6
7
|
var date: [ int ] = []
let calendar: calendar = calendar(identifier: .gregorian)
var comps: datecomponents = datecomponents()
comps = calendar.datecomponents([.year, .month, .day], from: date())
date.append(comps.year!)
date.append(comps.month!)
date.append(comps.day!)
|
苹果提供一个 calendar 的类,其初始化参数 identifier 是选择日历类型,calendar 中有一个 component 存放一些与日历有关的参数(如:day, month, year, weekday 等等,详见文档),于是date[0],date[1],date[2]分别为当前的 year, month 和 day
0x02 如何获取所需月份的相关信息
写一个日历插件,首先要考虑的是当前月份第一天是周几,每个月有多少天,如何获取?
直接上代码
1
2
3
4
5
6
7
8
9
10
|
func getcountofdaysinmonth(year: int , month: int ) -> (count: int , week: int ) {
let dateformatter = dateformatter()
dateformatter.dateformat = "yyyy-mm"
let date = dateformatter.date(from: string(year)+ "-" +string(month))
let calendar: calendar = calendar(identifier: .gregorian)
let range = calendar.range(of: .day, in: .month, for : date!)
let week = calendar.component(.weekday, from: date!)
return ((range?.count)!, week)
}
|
dateformatter 可以提供一个日期的格式,自定义说明符如下
1
2
3
4
5
6
7
8
9
|
eeee: 代表一天的全名,比如monday.使用1-3个e就代表简写,比如mon.
mmmm: 代表一个月的全名,比如july.使用1-3个m就代表简写,比如jul.
dd: 代表一个月里的几号,比如07或者30.
yyyy: 代表4个数字表示的年份,比如2016.
hh: 代表2个数字表示的小时,比如08或17.
mm: 代表2个数字表示的分钟,比如01或59.
ss: 代表2个数字表示的秒,比如2016.
zzz: 代表3个字母表示的时区,比如gtm(格林尼治标准时间,gmt+8为北京所在的时区,俗称东八区)
ggg: bc或者ad, 即公元前或者公元
|
calendar.range(of: .day, in: .month, for: date!) 这是 calendar 的一个方法, of是一个小component,in是一个大component,可以给出小component在大component的范围,range.count就是这个月的天数;
weekday给出某一天是星期几,若只给出月份,则为该月第一天为周几
0x03 日历的开发
这里我们选择使用 collectionview,首先向storyboard中拖入一个collectionview,然后在viewcontroller中添加collectionview的协议
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
extension viewcontroller: uicollectionviewdelegate, uicollectionviewdatasource {
// 返回section的数量
func numberofsections(in collectionview: uicollectionview) -> int {
return 0
}
// 返回item的数量
func collectionview(_ collectionview: uicollectionview, numberofitemsinsection section: int ) -> int {
return 0
}
// 返回cell
func collectionview(_ collectionview: uicollectionview, cellforitemat indexpath: indexpath) -> uicollectionviewcell {
let cell = collectionview.dequeuereusablecell(withreuseidentifier: "dateitem" , for : indexpath) as! datecollectionviewcell
return cell
}
}
|
这三个函数是必须写上的,numberofsections返回section的数量,numberofiteminsection返回section中item的数量,cellforitemat返回一个cell
最需要注意的是,在viewcontroller中的viewdidload函数中,必须添加如下
1
2
3
4
5
6
7
|
override func viewdidload() {
super.viewdidload()
// do any additional setup after loading the view, typically from a nib.
// 这两句话很重要!!!
calendarcollectionview.datasource = self
calendarcollectionview.delegate = self
}
|
这里我们设置两个section,第一个存放“一二三四五六日”,第二个存放日期
那么item数量就要分类考虑,section为1时为7,section为2时呢?为了简化,我们就return 42个。
那么cell也需要分类考虑
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
35
36
|
extension viewcontroller: uicollectionviewdelegate, uicollectionviewdatasource {
// 返回section的数量
func numberofsections(in collectionview: uicollectionview) -> int {
return 2
}
// 返回item的数量
func collectionview(_ collectionview: uicollectionview, numberofitemsinsection section: int ) -> int {
if section == 0 {
return weekarray.count
} else {
return 42
}
}
// 返回cell
func collectionview(_ collectionview: uicollectionview, cellforitemat indexpath: indexpath) -> uicollectionviewcell {
let cell = collectionview.dequeuereusablecell(withreuseidentifier: "dateitem" , for : indexpath) as! datecollectionviewcell
if indexpath.section == 0 {
cell.textlabel.text = weekarray[indexpath.row]
} else {
var daysarray: [string] = []
// 第一天之前的空白区域
for number in 0..<firstdayofmonth-1 {
daysarray.append( "" )
}
for number in firstdayofmonth-1...firstdayofmonth+numberofthemonth-2 {
daysarray.append(string(number-firstdayofmonth+2))
}
// 最后一天后的空白区域
for number in firstdayofmonth+numberofthemonth-2...41 {
daysarray.append( "" )
}
cell.textlabel.text = daysarray[indexpath.row]
}
return cell
}
}
|
显示上个月和下个月只需在按钮的action中month-1,再判断一下month是否在1...12范围内。以上一个月为例
1
2
3
4
5
6
7
8
9
10
11
12
|
@ibaction func lastmonth(_ sender: uibutton) {
if month == 1 {
year -= 1
month = 12
} else {
month -= 1
}
datedisplaylabel.text = string(year)+ "-" +string(month)
firstdayofmonth = date.getcountofdaysinmonth(year: year, month: month).week
numberofthemonth = date.getcountofdaysinmonth(year: year, month: month).count
calendarcollectionview.reloaddata()
}
|
以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持服务器之家。
原文链接:http://www.jianshu.com/p/92db9b345e7b?utm_source=tuicool&utm_medium=referral