Created
April 19, 2017 15:37
-
-
Save adamkaplan/ee23edc8652e0e75f491378d018ae2f3 to your computer and use it in GitHub Desktop.
Xcode Snippets. Drag and drop into Xcode to use.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?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>IDECodeSnippetCompletionScopes</key> | |
<array> | |
<string>All</string> | |
</array> | |
<key>IDECodeSnippetContents</key> | |
<string>#pragma clang diagnostic push | |
#pragma clang diagnostic ignored "<#warning#>" | |
<#code#> | |
#pragma clang diagnostic pop | |
</string> | |
<key>IDECodeSnippetIdentifier</key> | |
<string>A90ABB84-CFD4-4BB9-97D3-5702487CDF64</string> | |
<key>IDECodeSnippetLanguage</key> | |
<string>Xcode.SourceCodeLanguage.Objective-C</string> | |
<key>IDECodeSnippetTitle</key> | |
<string>Ignore Clang Warning</string> | |
<key>IDECodeSnippetUserSnippet</key> | |
<true/> | |
<key>IDECodeSnippetVersion</key> | |
<integer>0</integer> | |
</dict> | |
</plist> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment