1 Star 0 Fork 1

ShrekerNil/QLCodeSnippets

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
OCCategory_QLDateFormatter_Implementation.codesnippet 1.35 KB
一键复制 编辑 原始数据 按行查看 历史
Shreker 提交于 2016-07-27 09:50 . Import Sources...
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
<key>IDECodeSnippetCompletionPrefix</key>
<string>OCCategory_QLDateFormatter_Implementation</string>
<key>IDECodeSnippetCompletionScopes</key>
<array>
<string>TopLevel</string>
</array>
<key>IDECodeSnippetContents</key>
<string>#import "NSDateFormatter+QLDateFormatter.h"
@implementation NSDateFormatter (QLDateFormatter)
+ (instancetype)dateFormatter {
return [[self alloc] init];
}
+ (instancetype)dateFormatterWithFormat:(NSString *)dateFormat {
NSDateFormatter *dateFormatter = [[self alloc] init];
dateFormatter.dateFormat = dateFormat;
return dateFormatter;
}
+ (instancetype)defaultDateFormatter {
return [self dateFormatterWithFormat:@"yyyy-MM-dd HH:mm:ss"];
}
@end</string>
<key>IDECodeSnippetIdentifier</key>
<string>B60CDE02-97FB-488F-B086-7CF8E4FEFB50</string>
<key>IDECodeSnippetLanguage</key>
<string>Xcode.SourceCodeLanguage.Objective-C</string>
<key>IDECodeSnippetSummary</key>
<string>Category on NSDateFormatter of Implementation</string>
<key>IDECodeSnippetTitle</key>
<string>OCCategory_QLDateFormatter_Implementation</string>
<key>IDECodeSnippetUserSnippet</key>
<true/>
<key>IDECodeSnippetVersion</key>
<integer>2</integer>
</dict>
</plist>
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/ShrekerNil/QLCodeSnippets.git
git@gitee.com:ShrekerNil/QLCodeSnippets.git
ShrekerNil
QLCodeSnippets
QLCodeSnippets
master

搜索帮助