mirror of
https://github.com/wnagrodzki/XcodeToolkit.git
synced 2025-05-03 11:31:32 +02:00
44 lines
1.2 KiB
XML
44 lines
1.2 KiB
XML
<?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>mvpp</string>
|
|
<key>IDECodeSnippetCompletionScopes</key>
|
|
<array>
|
|
<string>All</string>
|
|
<string>TopLevel</string>
|
|
</array>
|
|
<key>IDECodeSnippetContents</key>
|
|
<string>protocol <#T##Name###>Presenter: AnyObject {
|
|
|
|
var userInterface: <#T##Name###>UserInterface? { get set }
|
|
|
|
func userInterfaceDidLoad()
|
|
}
|
|
|
|
final class <#T##Name###>PresenterImpl {
|
|
|
|
weak var userInterface: <#T##Name###>UserInterface?
|
|
}
|
|
|
|
extension <#T##Name###>PresenterImpl: <#T##Name###>Presenter {
|
|
|
|
func userInterfaceDidLoad() {
|
|
|
|
}
|
|
}</string>
|
|
<key>IDECodeSnippetIdentifier</key>
|
|
<string>DAC161C7-E876-4103-ADB1-5412D24DC03F</string>
|
|
<key>IDECodeSnippetLanguage</key>
|
|
<string>Xcode.SourceCodeLanguage.Swift</string>
|
|
<key>IDECodeSnippetSummary</key>
|
|
<string></string>
|
|
<key>IDECodeSnippetTitle</key>
|
|
<string>MVP Presenter</string>
|
|
<key>IDECodeSnippetUserSnippet</key>
|
|
<true/>
|
|
<key>IDECodeSnippetVersion</key>
|
|
<integer>0</integer>
|
|
</dict>
|
|
</plist>
|