├── .gitignore ├── LICENSE ├── README.md ├── SwiftCodeSnippets.xcodeproj ├── project.pbxproj ├── project.xcworkspace │ └── contents.xcworkspacedata └── xcshareddata │ └── xcschemes │ └── SwiftCodeSnippets.xcscheme └── SwiftCodeSnippets ├── Info.plist ├── NSObject_Extension.swift ├── SwiftCodeSnippets-Bridging-Header.h └── SwiftCodeSnippetsManager.swift /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeEagle/SwiftCodeSnippets/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeEagle/SwiftCodeSnippets/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeEagle/SwiftCodeSnippets/HEAD/README.md -------------------------------------------------------------------------------- /SwiftCodeSnippets.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeEagle/SwiftCodeSnippets/HEAD/SwiftCodeSnippets.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /SwiftCodeSnippets.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeEagle/SwiftCodeSnippets/HEAD/SwiftCodeSnippets.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /SwiftCodeSnippets.xcodeproj/xcshareddata/xcschemes/SwiftCodeSnippets.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeEagle/SwiftCodeSnippets/HEAD/SwiftCodeSnippets.xcodeproj/xcshareddata/xcschemes/SwiftCodeSnippets.xcscheme -------------------------------------------------------------------------------- /SwiftCodeSnippets/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeEagle/SwiftCodeSnippets/HEAD/SwiftCodeSnippets/Info.plist -------------------------------------------------------------------------------- /SwiftCodeSnippets/NSObject_Extension.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeEagle/SwiftCodeSnippets/HEAD/SwiftCodeSnippets/NSObject_Extension.swift -------------------------------------------------------------------------------- /SwiftCodeSnippets/SwiftCodeSnippets-Bridging-Header.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeEagle/SwiftCodeSnippets/HEAD/SwiftCodeSnippets/SwiftCodeSnippets-Bridging-Header.h -------------------------------------------------------------------------------- /SwiftCodeSnippets/SwiftCodeSnippetsManager.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeEagle/SwiftCodeSnippets/HEAD/SwiftCodeSnippets/SwiftCodeSnippetsManager.swift --------------------------------------------------------------------------------