forked from n-b/Xcode-Snippets
-
Notifications
You must be signed in to change notification settings - Fork 6
/
animblock.codesnippet
29 lines (29 loc) · 968 Bytes
/
animblock.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
<?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>animblock</string>
<key>IDECodeSnippetCompletionScopes</key>
<array>
<string>CodeBlock</string>
</array>
<key>IDECodeSnippetContents</key>
<string> [UIView animateWithDuration:<#secs#> animations:^{
<#code#>
} completion:^(BOOL finished) {
}];</string>
<key>IDECodeSnippetIdentifier</key>
<string>A858B244-50CD-40EE-AA15-BCE28179F6DB</string>
<key>IDECodeSnippetLanguage</key>
<string>Xcode.SourceCodeLanguage.Objective-C</string>
<key>IDECodeSnippetSummary</key>
<string>Use a block to animate values [objc]</string>
<key>IDECodeSnippetTitle</key>
<string>Animation Block</string>
<key>IDECodeSnippetUserSnippet</key>
<true/>
<key>IDECodeSnippetVersion</key>
<integer>2</integer>
</dict>
</plist>