学习Swift有一个月了,动手写一个UIView吧。

所有源代码在最后,直接用就可以了,第一次写Swift,和C#,Java还是有区别的

(博客园可以考虑在代码插入中添加Swift的着色了)

1  函数准备。Swift的日历函数,随着版本的变化,变动很大。

    //MARK: - Calendar
//按照苹果的习惯,周日放在第一位
let weekdayForDisplay = ["周日","周一","周二","周三","周四","周五","周六"] //获取周 周日:1 - 周六:7
func getWeekDay(year:Int,month:Int,day:Int) ->Int{
let dateFormatter:NSDateFormatter = NSDateFormatter();
dateFormatter.dateFormat = "yyyy/MM/dd";
let date:NSDate? = dateFormatter.dateFromString(String(format:"%04d/%02d/%02d",year,month,day));
if date != nil {
let calendar:NSCalendar = NSCalendar.currentCalendar()
let dateComp:NSDateComponents = calendar.components(NSCalendarUnit.NSWeekdayCalendarUnit, fromDate: date!)
return dateComp.weekday;
}
return ;
} //这个月的最后一天
//先获得下个月的第一天,然后在此基础上减去24小时
//注意这里的时间Debug的时候是UTC
func getLastDay(var year:Int,var month:Int) -> Int?{
let dateFormatter:NSDateFormatter = NSDateFormatter();
dateFormatter.dateFormat = "yyyy/MM/dd";
if month == {
month =
year++
}
let targetDate:NSDate? = dateFormatter.dateFromString(String(format:"%04d/%02d/01",year,month+));
if targetDate != nil { let orgDate = NSDate(timeInterval:(**)*(-), sinceDate: targetDate!)
let str:String = dateFormatter.stringFromDate(orgDate)
return Int((str as NSString).componentsSeparatedByString("/").last!);
} return nil;
}

下面是NSDateCompents的一个坑,Swift 1 和 Swift 2 写法不一样

        let today = NSDate()
let calendar = NSCalendar(identifier: NSGregorianCalendar)
let comps:NSDateComponents = calendar!.components([NSCalendarUnit.Year,NSCalendarUnit.Month,NSCalendarUnit.Day], fromDate: today)

Swift 2 OptionSetType ,比较一下OC和Swift的写法

Objective-C

unsigned unitFlags = NSCalendarUnitYear
                   | NSCalendarUnitMonth
                   | NSCalendarUnitDay
                   | NSCalendarUnitWeekday
                   | NSCalendarUnitHour
                   | NSCalendarUnitMinute
                   | NSCalendarUnitSecond;

Swift
2.0

let unitFlags: NSCalendarUnit = [
.Year,
                                 
.Month,
                                 
.Day,
                                 
.Weekday,
                                 
.Hour,
                                 
.Minute,
                                 
.Second ]

Swift
1.2

let unitFlags: NSCalendarUnit =
.CalendarUnitYear
                              | .CalendarUnitMonth
                              | .CalendarUnitDay
                              | .CalendarUnitWeekday
                              | .CalendarUnitHour
                              | .CalendarUnitMinute
                              | .CalendarUnitSecond

Swift2.0 的语法和1.2有区别  
OptionSetType

2.接下来就是绘图,绘图就是各种被塞尔曲线

重点如下

如何居中

        let paragraph = NSMutableParagraphStyle()
        paragraph.alignment = NSTextAlignment.Center
       
let text  =  NSMutableAttributedString(string: weekdayForDisplay[i],attributes: [NSParagraphStyleAttributeName: paragraph])
        let CellRect = CGRect(x: leftside  , y:padding + mergin, width: WeekdayColumnWidth, height: RowHeight)
        text.drawInRect(CellRect) 红字粗体
        text.addAttribute(NSForegroundColorAttributeName, value: UIColor.redColor(),range:NSMakeRange(,text.length))
        text.addAttribute(NSFontAttributeName, value: UIFont.boldSystemFontOfSize(NSDefaultFontSize),range:NSMakeRange(,text.length))

3.接下来是如何捕获点击事件

由于是全手工绘制日历的格子,所以,就用OnTouchBegan事件的属性获得点击位置,根据位置得知被按下的区域隶属于哪个日子。

    //记录每天的格子的Rect
var DayRect = [Int:CGRect]() override func touchesBegan(touches: Set<UITouch>, withEvent event: UIEvent?) {
let SignleTouch = touches.first!
let Touchpoint = SignleTouch.locationInView(self)
let pick = getDayByTouchPoint(Touchpoint)
print("TouchPoint : X = \(Touchpoint.x) Y = \(Touchpoint.y) Day: \(pick)") if pick != {self.PickedDay = pick }
} //根据触摸点获取日期
func getDayByTouchPoint(touchpoint:CGPoint) -> Int {
for day in DayRect{
if day..contains(touchpoint){
return day.
}
}
return
}

最终效果如下图,可以实现点击选择日期。整个代码,8个小时可以完成。

现在的问题是,如果选择的日子变化了,我不知道怎么告诉上层的 ViewController,SelectDateChanged。

如果可以的话,最好能够出现 ActionConnection,可以拖曳连线,将Action和代码绑定。谁知道怎么做吗?

//
// CalendarView.swift
// PlanAndTarget
//
// Created by scs on 15/10/13.
// Copyright © 2015年 scs. All rights reserved.
// import UIKit @IBDesignable
class CalendarView: UIView {
//MARK: - Inspectable
@IBInspectable
var CurrentYear : Int = {
didSet{
if self.CurrentYear < {
self.CurrentYear =
}
setNeedsDisplay()
}
} @IBInspectable
var CurrentMonth : Int = {
didSet{
if self.CurrentMonth < || self.CurrentMonth > {
self.CurrentMonth =
}
setNeedsDisplay()
}
} @IBInspectable
var padding : CGFloat = {
didSet{
if (self.padding > ) {
self.padding =
}
setNeedsDisplay()
}
} @IBInspectable
var mergin : CGFloat = {
didSet{
if (self.mergin > ) {
self.mergin =
}
setNeedsDisplay()
}
} @IBInspectable
var RowHeight : CGFloat = {
didSet{
if (self.RowHeight > ) {
self.RowHeight =
}
setNeedsDisplay()
}
} @IBInspectable
var PickedDay : Int = {
didSet{
if (self.PickedDay < ){
self.PickedDay =
}
let lastDay = getLastDay( CurrentYear, month: CurrentMonth)
if (self.PickedDay > lastDay!){
self.PickedDay = lastDay!
}
setNeedsDisplay()
}
} //MARK: - Calendar
//按照苹果的习惯,周日放在第一位
let weekdayForDisplay = ["周日","周一","周二","周三","周四","周五","周六"] //获取周 周日:1 - 周六:7
func getWeekDay(year:Int,month:Int,day:Int) ->Int{
let dateFormatter:NSDateFormatter = NSDateFormatter();
dateFormatter.dateFormat = "yyyy/MM/dd";
let date:NSDate? = dateFormatter.dateFromString(String(format:"%04d/%02d/%02d",year,month,day));
if date != nil {
let calendar:NSCalendar = NSCalendar.currentCalendar()
let dateComp:NSDateComponents = calendar.components(NSCalendarUnit.NSWeekdayCalendarUnit, fromDate: date!)
return dateComp.weekday;
}
return ;
} //这个月的最后一天
//先获得下个月的第一天,然后在此基础上减去24小时
//注意这里的时间Debug的时候是UTC
func getLastDay(var year:Int,var month:Int) -> Int?{
let dateFormatter:NSDateFormatter = NSDateFormatter();
dateFormatter.dateFormat = "yyyy/MM/dd";
if month == {
month =
year++
}
let targetDate:NSDate? = dateFormatter.dateFromString(String(format:"%04d/%02d/01",year,month+));
if targetDate != nil { let orgDate = NSDate(timeInterval:(**)*(-), sinceDate: targetDate!)
let str:String = dateFormatter.stringFromDate(orgDate)
return Int((str as NSString).componentsSeparatedByString("/").last!);
} return nil;
} //MARK: - Event
//记录每天的格子的Rect
var DayRect = [Int:CGRect]() override func touchesBegan(touches: Set<UITouch>, withEvent event: UIEvent?) {
let SignleTouch = touches.first!
let Touchpoint = SignleTouch.locationInView(self)
let pick = getDayByTouchPoint(Touchpoint)
print("TouchPoint : X = \(Touchpoint.x) Y = \(Touchpoint.y) Day: \(pick)") if pick != {self.PickedDay = pick }
} //根据触摸点获取日期
func getDayByTouchPoint(touchpoint:CGPoint) -> Int {
for day in DayRect{
if day..contains(touchpoint){
return day.
}
}
return
} // Only override drawRect: if you perform custom drawing.
// An empty implementation adversely affects performance during animation.
override func drawRect(rect: CGRect) { let paragraph = NSMutableParagraphStyle()
paragraph.alignment = NSTextAlignment.Center
//查资料可知默认字体为12
let NSDefaultFontSize : CGFloat = ; //绘制表头
let UseableWidth :CGFloat = rect.width - (padding + mergin) * ;
let WeekdayColumnWidth : CGFloat = UseableWidth /
var leftside : CGFloat = padding + mergin
for i in ...{
let text = NSMutableAttributedString(string: weekdayForDisplay[i],attributes: [NSParagraphStyleAttributeName: paragraph])
let CellRect = CGRect(x: leftside , y:padding + mergin, width: WeekdayColumnWidth, height: RowHeight)
text.drawInRect(CellRect)
leftside += WeekdayColumnWidth
} //绘制当月每天
var rowCount = ;
leftside = padding + mergin
let today = NSDate()
let calendar = NSCalendar(identifier: NSGregorianCalendar)
let comps:NSDateComponents = calendar!.components([NSCalendarUnit.Year,NSCalendarUnit.Month,NSCalendarUnit.Day], fromDate: today) //Clear
DayRect.removeAll() for day in ...getLastDay(CurrentYear,month:CurrentMonth)!{
let weekday = getWeekDay(CurrentYear, month: CurrentMonth, day: day)
let text = NSMutableAttributedString(string: String(day), attributes: [NSParagraphStyleAttributeName: paragraph])
let LeftTopX = leftside + CGFloat(weekday - ) * WeekdayColumnWidth
let LeftTopY = padding + mergin + RowHeight * CGFloat(rowCount)
let CellRect :CGRect = CGRect(x: LeftTopX, y: LeftTopY, width: WeekdayColumnWidth, height: RowHeight)
if (PickedDay == day){
//选中的日子,UI效果
let PickRectPath = UIBezierPath(roundedRect: CellRect, cornerRadius: RowHeight/)
UIColor.blueColor().colorWithAlphaComponent(0.3).setFill()
PickRectPath.fill()
} if (comps.year == CurrentYear && comps.month == CurrentMonth && comps.day == day){
text.addAttribute(NSForegroundColorAttributeName, value: UIColor.redColor(),range:NSMakeRange(,text.length))
text.addAttribute(NSFontAttributeName, value: UIFont.boldSystemFontOfSize(NSDefaultFontSize),range:NSMakeRange(,text.length))
} text.drawInRect(CellRect)
DayRect[day] = CellRect
//绘制了周日之后,需要新的一行
if weekday == { rowCount++ }
} //绘制外框
let path : UIBezierPath = UIBezierPath(rect: CGRect(x: padding, y: padding, width: rect.width - padding * , height: padding + mergin + RowHeight * CGFloat(rowCount - ) + ))
path.stroke() //path = UIBezierPath(rect: CGRect(x: padding + mergin, y: padding + mergin, width: rect.width - (padding + mergin) * 2 , height: rect.height - (padding + mergin) * 2))
//path.stroke() print("LastDay Of 2015/10 : \(getLastDay(CurrentYear, month: CurrentMonth))" )
print("2015/10/18 : \(weekdayForDisplay[getWeekDay(CurrentYear, month: CurrentMonth, day: 18) - 1] )" )
print("Calendar Size Height: \(rect.height) Width: \(rect.width)" )
} }

iOs 自定义UIView 日历的实现 Swift2.1的更多相关文章

  1. IOS自定义UIView

    IOS中一般会用到几种方式自定义UIView 1.继承之UIView的存代码的自定义View 2.使用xib和代码一起使用的自定义View 3.存xib的自定义View(不需要业务处理的那种) 本文主 ...

  2. OpenGL ES: iOS 自定义 UIView 响应屏幕旋转

    iOS下使用OpenGL 如果使用GLKit View 那么不用担心屏幕旋转的问题,说明如下: If you change the size, scale factor, or drawable pr ...

  3. IOS xib和代码自定义UIView

    https://www.jianshu.com/p/1bcc29653085 总结的比较好 iOS开发中,我们常常将一块View封装起来,以便于统一管理内部的子控件. 下面就来说说自定义View的封装 ...

  4. 【iOS自定义键盘及键盘切换】详解

    [iOS自定义键盘]详解 实现效果展示: 一.实现的协议方法代码 #import <UIKit/UIKit.h> //创建自定义键盘协议 @protocol XFG_KeyBoardDel ...

  5. iOS自定义的UISwitch按钮

    UISwitch开关控件 开关代替了点选框.开关是到目前为止用起来最简单的控件,不过仍然可以作一定程度的定制化. 一.创建 UISwitch* mySwitch = [[ UISwitchalloc] ...

  6. iOS 自定义layer的两种方式

    在iOS中,你能看得见摸得着的东西基本都是UIView,比如一个按钮,一个标签,一个文本输入框,这些都是UIView: 其实UIView之所以能显示在屏幕上,完全是因为它内部的一个图层 在创建UIVi ...

  7. iOS自定义组与组之间的距离以及视图

    iOS自定义组与组之间的距离以及视图 //头视图高度 - (CGFloat)tableView:(UITableView *)tableView heightForHeaderInSection:(N ...

  8. iOS 自定义转场动画

    代码地址如下:http://www.demodashi.com/demo/12955.html 一.总效果 本文记录分享下自定义转场动画的实现方法,具体到动画效果:新浪微博图集浏览转场效果.手势过渡动 ...

  9. iOS 自定义转场动画浅谈

    代码地址如下:http://www.demodashi.com/demo/11612.html 路漫漫其修远兮,吾将上下而求索 前记 想研究自定义转场动画很久了,时间就像海绵,挤一挤还是有的,花了差不 ...

随机推荐

  1. 实战使用Axure设计App,使用WebStorm开发(1) – 用Axure描述需求

    系列文章 实战使用Axure设计App,使用WebStorm开发(1) – 用Axure描述需求  实战使用Axure设计App,使用WebStorm开发(2) – 创建 Ionic 项目   实战使 ...

  2. AngularJS快速入门指南20:快速参考

    thead>tr>th, table.reference>tbody>tr>th, table.reference>tfoot>tr>th, table ...

  3. linux下进程间通信

    信号 信号是进程间相互传递消息的一种方法,只是用来通知某进程发生了什么事件,并不给进程传递任何数据. #include <sys/types.h> #include <unistd. ...

  4. Spring Trasnaction管理(3)- 事务嵌套

    问题导读 Spring 如何管理嵌套的事务 Spring事务传播机制 Nested 和 RequireNew 有何区别 事务传播机制 事务的传播机制应该都比较熟悉 在日常开发中会遇到需要事务嵌套的情况 ...

  5. Redis学习笔记~是时候为Redis实现一个仓储了,RedisRepository来了

    回到目录 之前写了不少关于仓储的文章,所以,自己习惯把自己叫仓储大叔,上次写的XMLRepository得到了大家的好评,也有不少朋友给我发email,进行一些知识的探讨,今天主要来实现一个Redis ...

  6. javaweb学习总结—Apache的DBUtils框架学习

    注明: 本文转载自http://www.cnblogs.com/xdp-gacl/p/4007225.html 一.commons-dbutils简介 commons-dbutils 是 Apache ...

  7. 批处理集锦——(4)2>nul和1>nul是什么意思?

    >nul 是屏蔽操作成功显示的信息,但是出错还是会显示(即1>nul) 2>nul 是屏蔽操作失败显示的信息,如果成功依旧显示. >nul 2>nul 就是正确的错误的一 ...

  8. DOM_02之查找及元素操作

    1.查找之按节点间关系查找周围元素: 2.查找之HTML属性:①按id查找:var elem=document.getElementById("id"):找到一个元素,必须docu ...

  9. 《PHP Manual》阅读笔记1

    1.phpinfo() 从 PHP 获取系统信息. 2.$_SERVER 只是 PHP 自动全局化的变量之一.它包含了 web 服务器提供的所有信息,被称为超全局变量. 3.htmlspecialch ...

  10. Enterprise Solution 2.3

    1. 登陆窗体和主界面增加语言选项,同时可记住用户登陆的语言和数据库. 2. 主界面的树功能可记住上次打开的模块菜单. 3. 修复主界面菜单生成问题和导航图区上下文菜单生成问题. 4. 增加自动更新功 ...