美文网首页
swift 日期格式

swift 日期格式

作者: 我会回来的 | 来源:发表于2022-10-24 10:48 被阅读0次

字符串转变格式: 

func getNotifacationCellTime(str: String) -> String {

    lettimeFormatter =DateFormatter()

    timeFormatter.dateFormat="yyyyMMddHHmmss+HHmm"

    ///传入字符串要和dateFormat 格式保持一致 

    lettimeDate = timeFormatter.date(from: str)

    timeFormatter.dateFormat="yyyy/MM/dd HH:mm"

    letcurrentTime = timeFormatter.string(from: timeDate!asDate)asString

    returncurrentTime

}

获取当前时间:

/// 注意日期格式的大小写 

func getTimesstamp() -> String {

    letdate =NSDate()

    lettimeFormatter =DateFormatter()

    timeFormatter.dateFormat="yyyyMMddHHmmssZ"

    timeFormatter.timeZone=NSTimeZone(name:"UTC+9")asTimeZone?

    letcurrentTime = timeFormatter.string(from: dateasDate)asString

    returncurrentTime

}

相关文章

  • swift 日期格式

    字符串转变格式: func getNotifacationCellTime(str: String) -> Str...

  • 学习笔记:swift——自动日期格式

  • iOS-Swift中Date -VS- Objective-C

    最近Swift项目开发中,涉及到了日期时间的处理,需求是这样的,需要把一个日期格式类型的字符串,转换为Date类型...

  • 日期格式

    date9.===>16feb2018yymmdd10.===>2018-04-22yymmddn8.===>20...

  • 日期格式

  • 日期格式

    日期格式 日期格式清单 从 A 到 Z 和从 a 到 z 的字母是解释的字符。所有其他字符都是复制的字符。虽然从 ...

  • 日期格式

    select 发展工号 工号, 入网时间 时间, acc_nbr 号码, 套餐, 融合, 折算, 状态 from ...

  • 日期格式

    Not all browsers support the same date formats. The best ...

  • swift 脚本

    swift脚本无论是.sh 格式,还是.swift格式,都需要以#!/usr/bin/env swift开头,来指...

  • 常用正则速查

    日期 //日期格式yyyyPatternsDict.date_y= /^(\d{4})$/;//日期格式yyyy-...

网友评论

      本文标题:swift 日期格式

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