洞察探索如何利用兼容微信生态的小程序容器,实现跨平台开发,助力金融和车联网行业的数字化转型。
513
2022-10-29
DayPeriodFormatter 一个日期本地化(早上,下午,晚上等)的格式化程序
DayPeriodFormatter
import Foundationimport DayPeriodFormatterlet formatter = DayPeriodFormatter()let dateComponents = DateComponents(hour: 9, minute: 41)formatter.string(from: dateComponents) // "morning"// Over 150+ locales supportedformatter.locale = Locale(identifier: "ja")formatter.string(from: dateComponents) // "朝"
Requirements
Swift 4.0+
Installation
Swift Package Manager
Add the DayPeriodFormatter package to your target dependencies in Package.swift:
import PackageDescriptionlet package = Package( name: "YourProject", dependencies: [ .package( url: "https://github.com/FormatterKit/DayPeriodFormatter", from: "1.1.1" ), ])
Then run the swift build command to build your project.
License
MIT
Contact
Mattt (@mattt)
版权声明:本文内容由网络用户投稿,版权归原作者所有,本站不拥有其著作权,亦不承担相应法律责任。如果您发现本站中有涉嫌抄袭或描述失实的内容,请联系我们jiasou666@gmail.com 处理,核实后本网站将在24小时内删除侵权内容。
发表评论
暂时没有评论,来抢沙发吧~