forked from QMUI/QMUI_iOS_CodeSnippets
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathQM_tableViewCell_initWithStyle.codesnippet
33 lines (33 loc) · 1.15 KB
/
QM_tableViewCell_initWithStyle.codesnippet
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
<?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>initWithStyleForCell</string>
<key>IDECodeSnippetCompletionScopes</key>
<array>
<string>ClassImplementation</string>
</array>
<key>IDECodeSnippetContents</key>
<string>- (instancetype)initWithStyle:(UITableViewCellStyle)style reuseIdentifier:(NSString *)reuseIdentifier {
if (self = [super initWithStyle:style reuseIdentifier:reuseIdentifier]) {
<#code#>
}
return self;
}</string>
<key>IDECodeSnippetIdentifier</key>
<string>BF5695D8-5243-4DC2-8153-82B8858295AC</string>
<key>IDECodeSnippetLanguage</key>
<string>Xcode.SourceCodeLanguage.Objective-C</string>
<key>IDECodeSnippetPlatformFamily</key>
<string>iphoneos</string>
<key>IDECodeSnippetSummary</key>
<string>UITableViewCell的默认初始化方法</string>
<key>IDECodeSnippetTitle</key>
<string>initWithStyle:reuseIdentifier:</string>
<key>IDECodeSnippetUserSnippet</key>
<true/>
<key>IDECodeSnippetVersion</key>
<integer>2</integer>
</dict>
</plist>