在 xcode 标签中创建日期
首先,我想提前感谢您对我的帮助。
我想知道如何使用 Xcode 在标签上创建日期, 并且日期将遵循与 iPhone 中相同的日期。
谢谢
First of all I want to say thanks in advance for helping me.
I want to know how can I create a date on a label using Xcode,
and the date will follow the same date like in iphone.
Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
这是一种简单的方法
Here's one simple approach
创建文本日期很简单,但真正的问题是您想要创建日期文本的数据源是什么?
Creating the text date is simple, but the real question is what is your data source that you want to make the date text out of?
日期可以格式化并在标签中设置,如下所示。
The date can be formatted and set in label as below.
NSDateFormatter 处理字符串日期的格式。
试试这个,看看:
以下是 Apple 的文档:日期格式化程序
以下是日期格式列表:日期格式
这是解决方案斯威夫特
NSDateFormatter handle format of string dates.
Try this and see:
Here is document by Apple: Date Formatters
Here is list of date formats: Date Formats
Here is solution in Swift