├── .gitignore ├── LICENSE ├── README.md ├── Singleton.xcodeproj ├── project.pbxproj ├── project.xcworkspace │ ├── contents.xcworkspacedata │ └── xcuserdata │ │ └── hermespique.xcuserdatad │ │ └── UserInterfaceState.xcuserstate └── xcuserdata │ └── hermespique.xcuserdatad │ └── xcschemes │ ├── Singleton.xcscheme │ └── xcschememanagement.plist ├── Singleton ├── Info.plist ├── Singleton.h ├── SingletonA.swift ├── SingletonB.swift └── SingletonC.swift └── SingletonTests ├── Info.plist ├── SingletonATests.swift ├── SingletonBTests.swift └── SingletonCTests.swift /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpique/SwiftSingleton/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpique/SwiftSingleton/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpique/SwiftSingleton/HEAD/README.md -------------------------------------------------------------------------------- /Singleton.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpique/SwiftSingleton/HEAD/Singleton.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Singleton.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpique/SwiftSingleton/HEAD/Singleton.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Singleton.xcodeproj/project.xcworkspace/xcuserdata/hermespique.xcuserdatad/UserInterfaceState.xcuserstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpique/SwiftSingleton/HEAD/Singleton.xcodeproj/project.xcworkspace/xcuserdata/hermespique.xcuserdatad/UserInterfaceState.xcuserstate -------------------------------------------------------------------------------- /Singleton.xcodeproj/xcuserdata/hermespique.xcuserdatad/xcschemes/Singleton.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpique/SwiftSingleton/HEAD/Singleton.xcodeproj/xcuserdata/hermespique.xcuserdatad/xcschemes/Singleton.xcscheme -------------------------------------------------------------------------------- /Singleton.xcodeproj/xcuserdata/hermespique.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpique/SwiftSingleton/HEAD/Singleton.xcodeproj/xcuserdata/hermespique.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /Singleton/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpique/SwiftSingleton/HEAD/Singleton/Info.plist -------------------------------------------------------------------------------- /Singleton/Singleton.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpique/SwiftSingleton/HEAD/Singleton/Singleton.h -------------------------------------------------------------------------------- /Singleton/SingletonA.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpique/SwiftSingleton/HEAD/Singleton/SingletonA.swift -------------------------------------------------------------------------------- /Singleton/SingletonB.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpique/SwiftSingleton/HEAD/Singleton/SingletonB.swift -------------------------------------------------------------------------------- /Singleton/SingletonC.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpique/SwiftSingleton/HEAD/Singleton/SingletonC.swift -------------------------------------------------------------------------------- /SingletonTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpique/SwiftSingleton/HEAD/SingletonTests/Info.plist -------------------------------------------------------------------------------- /SingletonTests/SingletonATests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpique/SwiftSingleton/HEAD/SingletonTests/SingletonATests.swift -------------------------------------------------------------------------------- /SingletonTests/SingletonBTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpique/SwiftSingleton/HEAD/SingletonTests/SingletonBTests.swift -------------------------------------------------------------------------------- /SingletonTests/SingletonCTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpique/SwiftSingleton/HEAD/SingletonTests/SingletonCTests.swift --------------------------------------------------------------------------------