iOS 开发实用技术导航
NSHipster 中文版
http://nshipster.cn/
cocos2d 开源 2D 游戏引擎
http://www.cocos2d-iphone.org/
CocoaPods
http://cocoapods.org/
Google Analytics for Mobile 统计解决方案
http://code.google.com/mobile/analytics/
WWDC
https://developer.apple.com/wwdc/
Design Guides and Resources
https://developer.apple.com/design/
Transcripts of WWDC sessions
http://asciiwwdc.com
Cocoa with Love
http://cocoawithlove.com/
Cocoa Dev Central
http://cocoadevcentral.com/
NSHipster
http://nshipster.com/
Style Guides
Google Objective-C Style Guide
NYTimes Objective-C Style Guide
Useful Tools and Services
Charles Web Debugging Proxy
Smore
newkengsir
V2EX  ›  iDev

10Clock

  •  
  •   newkengsir · Sep 21, 2016 · 2470 views
    This topic created in 3531 days ago, the information mentioned may be changed or developed.

    效果图

    demo download

    Usage The control itsself is TenClock. Add that to your view hierarchy, and constrain it to be square (thats kindof important). to set times, do:

    self.tenClock.startDate = NSDate()
    self.tenClock.endDate = NSDate. //sometime later
    

    make the date today. then, to get updates for when the date changes, adopt the protocol TenClockDelegate and observe:

    import TenClock
    class ViewController: UIViewController, TenClockDelegate {
        func timesChanged(clock:TenClock, startDate:NSDate,  endDate:NSDate  ) -> (){
            print("start at: \(startDate), end at: \(endDate)")
            self.beginTimeLabel.text = dateFormatter.stringFromDate(startDate)
            self.endTimeLabel.text = dateFormatter.stringFromDate(endDate)
        }
        // ...
    
    No Comments Yet
    About   ·   Help   ·   Advertise   ·   Blog   ·   API   ·   FAQ   ·   Solana   ·   2960 Online   Highest 6679   ·     Select Language
    创意工作者们的社区
    World is powered by solitude
    VERSION: 3.9.8.5 · 24ms · UTC 05:35 · PVG 13:35 · LAX 22:35 · JFK 01:35
    ♥ Do have faith in what you're doing.