├── .gitignore ├── README.md ├── SCConstants.h ├── SCEvent.h ├── SCEvent.m ├── SCEventListenerProtocol.h ├── SCEvents.h ├── SCEvents.m ├── SCEvents.xcodeproj ├── project.pbxproj └── xcshareddata │ └── xcschemes │ └── SCEvents.xcscheme ├── SCEvents ├── Info.plist └── SCEventsFramework.h ├── SCEventsTests ├── Info.plist └── SCEventsTests.m └── module.modulemap /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mz2/SCEvents/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mz2/SCEvents/HEAD/README.md -------------------------------------------------------------------------------- /SCConstants.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mz2/SCEvents/HEAD/SCConstants.h -------------------------------------------------------------------------------- /SCEvent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mz2/SCEvents/HEAD/SCEvent.h -------------------------------------------------------------------------------- /SCEvent.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mz2/SCEvents/HEAD/SCEvent.m -------------------------------------------------------------------------------- /SCEventListenerProtocol.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mz2/SCEvents/HEAD/SCEventListenerProtocol.h -------------------------------------------------------------------------------- /SCEvents.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mz2/SCEvents/HEAD/SCEvents.h -------------------------------------------------------------------------------- /SCEvents.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mz2/SCEvents/HEAD/SCEvents.m -------------------------------------------------------------------------------- /SCEvents.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mz2/SCEvents/HEAD/SCEvents.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /SCEvents.xcodeproj/xcshareddata/xcschemes/SCEvents.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mz2/SCEvents/HEAD/SCEvents.xcodeproj/xcshareddata/xcschemes/SCEvents.xcscheme -------------------------------------------------------------------------------- /SCEvents/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mz2/SCEvents/HEAD/SCEvents/Info.plist -------------------------------------------------------------------------------- /SCEvents/SCEventsFramework.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mz2/SCEvents/HEAD/SCEvents/SCEventsFramework.h -------------------------------------------------------------------------------- /SCEventsTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mz2/SCEvents/HEAD/SCEventsTests/Info.plist -------------------------------------------------------------------------------- /SCEventsTests/SCEventsTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mz2/SCEvents/HEAD/SCEventsTests/SCEventsTests.m -------------------------------------------------------------------------------- /module.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mz2/SCEvents/HEAD/module.modulemap --------------------------------------------------------------------------------