-
Notifications
You must be signed in to change notification settings - Fork 14
/
TemplateInfo.plist
80 lines (80 loc) · 2.25 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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
<?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>Kind</key>
<string>Xcode.IDEFoundation.TextSubstitutionFileTemplateKind</string>
<key>Description</key>
<string>QMUI iOS 框架的基础类</string>
<key>Summary</key>
<string>QMUI iOS 框架的基础类</string>
<key>SortOrder</key>
<string>0</string>
<key>DefaultCompletionName</key>
<string>MyClass</string>
<key>Platforms</key>
<array>
<string>com.apple.platform.iphoneos</string>
</array>
<key>Options</key>
<array>
<dict>
<key>Identifier</key>
<string>productName</string>
<key>Required</key>
<true/>
<key>Name</key>
<string>Class:</string>
<key>Description</key>
<string>The name of the class to create</string>
<key>Type</key>
<string>text</string>
<key>NotPersisted</key>
<true/>
</dict>
<dict>
<key>Identifier</key>
<string>cocoaTouchSubclass</string>
<key>Required</key>
<string>YES</string>
<key>Name</key>
<string>Subclass of:</string>
<key>Description</key>
<string>What class to subclass in the new file</string>
<key>Type</key>
<string>class</string>
<key>Default</key>
<string>NSObject</string>
<key>FallbackHeader</key>
<string>#import <QMUIKit/QMUIKit.h></string>
<key>Values</key>
<array>
<string>QMUICommonViewController</string>
<string>QMUICommonTableViewController</string>
<string>QMUINavigationController</string>
<string>QMUITabBarViewController</string>
<string>QMUIPopupContainerView</string>
<string>QMUITableViewCell</string>
<string>UIView</string>
</array>
<key>Suffixes</key>
<dict>
<key>QMUICommonViewController</key>
<string>ViewController</string>
<key>QMUICommonTableViewController</key>
<string>TableViewController</string>
<key>QMUINavigationController</key>
<string>NavigationController</string>
<key>QMUITabBarViewController</key>
<string>TabBarViewController</string>
<key>QMUIPopupContainerView</key>
<string>PopupView</string>
<key>QMUITableViewCell</key>
<string>TableViewCell</string>
<key>UIView</key>
<string>View</string>
</dict>
</dict>
</array>
</dict>
</plist>