-
Notifications
You must be signed in to change notification settings - Fork 0
/
9B764C5B-ECE8-48EB-BE0D-EC1F16CA8FCC.codesnippet
36 lines (35 loc) · 1.28 KB
/
9B764C5B-ECE8-48EB-BE0D-EC1F16CA8FCC.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
34
35
36
<?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>tempView</string>
<key>IDECodeSnippetCompletionScopes</key>
<array>
<string>All</string>
</array>
<key>IDECodeSnippetContents</key>
<string> let tempView1 = UIButton.regular(size: 18, textColor: .white, text: "我是测试按钮")
tempView1.backgroundColor = .gray
self.view.addSubview(tempView1)
tempView1.snp.makeConstraints { (make) in
make.center.equalToSuperview()
make.size.equalTo(100)
}
tempView1.rx.controlEvent(.touchUpInside).subscribe(onNext: {[weak self] (_) in guard let self = self else { return }
<#??#>
}).disposed(by: rx.disposeBag)</string>
<key>IDECodeSnippetIdentifier</key>
<string>9B764C5B-ECE8-48EB-BE0D-EC1F16CA8FCC</string>
<key>IDECodeSnippetLanguage</key>
<string>Xcode.SourceCodeLanguage.Swift</string>
<key>IDECodeSnippetSummary</key>
<string>tempView</string>
<key>IDECodeSnippetTitle</key>
<string>tempView</string>
<key>IDECodeSnippetUserSnippet</key>
<true/>
<key>IDECodeSnippetVersion</key>
<integer>2</integer>
</dict>
</plist>