国产探花免费观看_亚洲丰满少妇自慰呻吟_97日韩有码在线_资源在线日韩欧美_一区二区精品毛片,辰东完美世界有声小说,欢乐颂第一季,yy玄幻小说排行榜完本

首頁 > 學(xué)院 > 開發(fā)設(shè)計 > 正文

iOs自定義UIView日歷的實(shí)現(xiàn)Swift2.1

2019-11-14 18:09:21
字體:
供稿:網(wǎng)友

學(xué)習(xí)Swift有一個月了,動手寫一個UIView吧。

所有源代碼在最后,直接用就可以了,第一次寫Swift,和C#,java還是有區(qū)別的

(博客園可以考慮在代碼插入中添加Swift的著色了)

1  函數(shù)準(zhǔn)備。Swift的日歷函數(shù),隨著版本的變化,變動很大。

 

    //MARK: - Calendar    //按照蘋果的習(xí)慣,周日放在第一位    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 0;    }        //這個月的最后一天    //先獲得下個月的第一天,然后在此基礎(chǔ)上減去24小時    //注意這里的時間Debug的時候是UTC    func getLastDay(var year:Int,var month:Int) -> Int?{        let dateFormatter:NSDateFormatter = NSDateFormatter();        dateFormatter.dateFormat = "yyyy/MM/dd";        if month == 12 {            month = 0            year++        }        let targetDate:NSDate? = dateFormatter.dateFromString(String(format:"%04d/%02d/01",year,month+1));        if targetDate != nil {                        let orgDate = NSDate(timeInterval:(24*60*60)*(-1), 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;

Swift2.0

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

Swift1.2

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

 

 

Swift2.0 的語法和1.2有區(qū)別  OptionSetType

 

2.接下來就是繪圖,繪圖就是各種被塞爾曲線

重點(diǎn)如下

 

如何居中        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(0,text.length))        text.addAttribute(NSFontAttributeName, value: UIFont.boldSystemFontOfSize(NSDefaultFontSize),range:NSMakeRange(0,text.length))

 

3.接下來是如何捕獲點(diǎn)擊事件

由于是全手工繪制日歷的格子,所以,就用OnTouchBegan事件的屬性獲得點(diǎn)擊位置,根據(jù)位置得知被按下的區(qū)域隸屬于哪個日子。

    //記錄每天的格子的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 != 0 {self.PickedDay = pick }    }        //根據(jù)觸摸點(diǎn)獲取日期    func getDayByTouchPoint(touchpoint:CGPoint) -> Int {        for day in DayRect{            if day.1.contains(touchpoint){                return day.0            }        }        return 0    }

 

最終效果如下圖,可以實(shí)現(xiàn)點(diǎn)擊選擇日期。整個代碼,8個小時可以完成。

現(xiàn)在的問題是,如果選擇的日子變化了,我不知道怎么告訴上層的 ViewController,SelectDateChanged。

如果可以的話,最好能夠出現(xiàn) ActionConnection,可以拖曳連線,將Action和代碼綁定。誰知道怎么做嗎?

////  CalendarView.swift//  PlanAndTarget////  Created by  scs on 15/10/13.//  Copyright © 2015年  scs. All rights reserved.//import UIKit@IBDesignableclass CalendarView: UIView {    //MARK: - Inspectable    @IBInspectable    var CurrentYear : Int = 2015{        didSet{            if self.CurrentYear < 0 {                self.CurrentYear = 2015            }            setNeedsDisplay()        }    }        @IBInspectable    var CurrentMonth : Int = 10 {        didSet{            if self.CurrentMonth < 0 || self.CurrentMonth > 12 {                self.CurrentMonth = 1            }            setNeedsDisplay()        }    }        @IBInspectable    var padding : CGFloat = 4 {        didSet{            if (self.padding > 50 ) {                self.padding = 50            }            setNeedsDisplay()        }    }        @IBInspectable    var mergin : CGFloat = 4 {        didSet{            if (self.mergin > 50 ) {                self.mergin = 50            }            setNeedsDisplay()        }    }        @IBInspectable    var RowHeight : CGFloat = 20{        didSet{            if (self.RowHeight > 100 ) {                self.RowHeight = 100            }            setNeedsDisplay()        }    }        @IBInspectable    var PickedDay : Int = 1 {        didSet{            if (self.PickedDay < 0){                self.PickedDay = 1            }            let lastDay = getLastDay( CurrentYear, month: CurrentMonth)            if (self.PickedDay > lastDay!){                self.PickedDay = lastDay!            }            setNeedsDisplay()        }    }                    //MARK: - Calendar    //按照蘋果的習(xí)慣,周日放在第一位    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 0;    }        //這個月的最后一天    //先獲得下個月的第一天,然后在此基礎(chǔ)上減去24小時    //注意這里的時間Debug的時候是UTC    func getLastDay(var year:Int,var month:Int) -> Int?{        let dateFormatter:NSDateFormatter = NSDateFormatter();        dateFormatter.dateFormat = "yyyy/MM/dd";        if month == 12 {            month = 0            year++        }        let targetDate:NSDate? = dateFormatter.dateFromString(String(format:"%04d/%02d/01",year,month+1));        if targetDate != nil {                        let orgDate = NSDate(timeInterval:(24*60*60)*(-1), 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 != 0 {self.PickedDay = pick }    }        //根據(jù)觸摸點(diǎn)獲取日期    func getDayByTouchPoint(touchpoint:CGPoint) -> Int {        for day in DayRect{            if day.1.contains(touchpoint){                return day.0            }        }        return 0    }            // 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        //查資料可知默認(rèn)字體為12        let NSDefaultFontSize : CGFloat = 12;                //繪制表頭        let UseableWidth :CGFloat = rect.width - (padding + mergin) * 2;        let WeekdayColumnWidth : CGFloat = UseableWidth / 7        var leftside  : CGFloat = padding + mergin        for i in 0...6{            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        }                //繪制當(dāng)月每天        var rowCount = 1;        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 1...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 - 1) * 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/2)                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(0,text.length))                text.addAttribute(NSFontAttributeName, value: UIFont.boldSystemFontOfSize(NSDefaultFontSize),range:NSMakeRange(0,text.length))            }                                    text.drawInRect(CellRect)            DayRect[day] = CellRect            //繪制了周日之后,需要新的一行            if weekday == 7 { rowCount++ }        }                //繪制外框        let path : UIBezierPath = UIBezierPath(rect: CGRect(x: padding, y: padding, width: rect.width - padding * 2 , height: padding + mergin + RowHeight * CGFloat(rowCount - 1) + 10 ))        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)" )    }            }

 


發(fā)表評論 共有條評論
用戶名: 密碼:
驗(yàn)證碼: 匿名發(fā)表
主站蜘蛛池模板: 长春市| 连平县| 陇南市| 汉中市| 邵武市| 东乡县| 霞浦县| 化州市| 文登市| 宁明县| 晋宁县| 平原县| 尼木县| 大连市| 阳春市| 上思县| 新巴尔虎右旗| 洛阳市| 蓬溪县| 印江| 鸡西市| 政和县| 屏南县| 娄烦县| 应用必备| 蛟河市| 蓬安县| 汝城县| 兴文县| 敦化市| 恭城| 涪陵区| 宝清县| 伊川县| 黄龙县| 玛沁县| 右玉县| 柳林县| 盐山县| 青龙| 措勤县|