Xcode 模板<<日期>>格式
我正在制作一个自定义 Xcode 模板,并且想更改 <
的格式化方式。
例如:
// Created by «FULLUSERNAME» on «DATE».
// Copyright «YEAR» «ORGANIZATIONNAME». All rights reserved.
如果文件是今天创建的,则将填写为:
// Created by SooDesuNe on 2/24/2010.
// Copyright 2010 MyOrganization. All rights reserved.
以任何“全数字”格式格式化的日期可能会导致很多混乱,因为 ISO 和 JIS 书写相同日期的方式是 24/2/2010。该月的 24 日天气晴朗,但该月的前 12 天不太清晰。
我希望 x-code 填充 <
,如下所示:
// Created by SooDesuNe on 24-Feb-2010.
// Copyright 2010 MyOrganization. All rights reserved.
因为这样没有歧义。有人知道如何更改日期格式吗?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
你可以在系统偏好设置中更改你的时间显示的短格式,然后重新启动xcode,默认的日期格式将被更改
You can just change your short format of your time displaying in system preferences., then restart xcode, the default date format will be changed
如果您想显示默认的日期和用户名,您可以在
___FILEBASENAME___.swift
文件中添加这两行,这将显示用户创建的文件名和当前日期。
但是,如果您想添加标题,您可以添加以下行
结果将是:-
If you want to show the default Date and User name you can add these two lines in your
___FILEBASENAME___.swift
fileThis will show the File name and created by the User and Current date.
However if you want to add the header you can add the below line
Result will be:-