美文网首页
Swift获取次日凌晨的时间戳

Swift获取次日凌晨的时间戳

作者: 向日葵的夏天_summer | 来源:发表于2019-03-12 11:39 被阅读0次
    let calendar = NSCalendar.current
    var componts = calendar.dateComponents([.weekday, .year, .month, .day], from: Date())
    componts.day = componts.day! + 1
      
    let tomorrowInterval = calendar.date(from: componts)?.timeIntervalSince1970
    

    相关文章

      网友评论

          本文标题:Swift获取次日凌晨的时间戳

          本文链接:https://www.haomeiwen.com/subject/kpygpqtx.html