forked from reidmain/Xcode-File-Templates
-
Notifications
You must be signed in to change notification settings - Fork 0
/
TemplateInfo.plist
61 lines (61 loc) · 1.58 KB
/
TemplateInfo.plist
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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
<?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>AllowedTypes</key>
<array>
<string>public.c-header</string>
</array>
<key>Description</key>
<string>An Objective-C protocol header file.</string>
<key>Kind</key>
<string>Xcode.IDEKit.TextSubstitutionFileTemplateKind</string>
<key>MainTemplateFile</key>
<string>___FILEBASENAME___.h</string>
<key>Options</key>
<array>
<dict>
<key>Identifier</key>
<string>classPrefix</string>
<key>Type</key>
<string>text</string>
<key>Required</key>
<string>YES</string>
<key>Name</key>
<string>Protocol Prefix</string>
<key>Description</key>
<string>The prefix of the protocol.</string>
</dict>
<dict>
<key>Identifier</key>
<string>protocolName</string>
<key>Type</key>
<string>text</string>
<key>Required</key>
<string>YES</string>
<key>NotPersisted</key>
<string>YES</string>
<key>Name</key>
<string>Protocol Name</string>
<key>Description</key>
<string>The name of the protocol.</string>
</dict>
<dict>
<key>Default</key>
<string>___VARIABLE_classPrefix:identifier______VARIABLE_protocolName:identifier___</string>
<key>Identifier</key>
<string>productName</string>
<key>Type</key>
<string>static</string>
</dict>
</array>
<key>Platforms</key>
<array>
<string>com.apple.platform.iphoneos</string>
</array>
<key>SortOrder</key>
<string>1</string>
<key>Summary</key>
<string>An Objective-C protocol header file.</string>
</dict>
</plist>