├── BackgroundTimer.xcodeproj ├── project.pbxproj └── xcuserdata │ └── mikeash.xcuserdatad │ ├── xcbreakpoints │ └── Breakpoints.xcbkptlist │ └── xcschemes │ ├── BackgroundTimer.xcscheme │ └── xcschememanagement.plist ├── BackgroundTimer_Prefix.pch ├── LICENSE └── Source ├── BackgroundResizingArray.h ├── BackgroundResizingArray.m ├── MABGTimer.h ├── MABGTimer.m └── main.m /BackgroundTimer.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeash/MABGTimer/HEAD/BackgroundTimer.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /BackgroundTimer.xcodeproj/xcuserdata/mikeash.xcuserdatad/xcbreakpoints/Breakpoints.xcbkptlist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeash/MABGTimer/HEAD/BackgroundTimer.xcodeproj/xcuserdata/mikeash.xcuserdatad/xcbreakpoints/Breakpoints.xcbkptlist -------------------------------------------------------------------------------- /BackgroundTimer.xcodeproj/xcuserdata/mikeash.xcuserdatad/xcschemes/BackgroundTimer.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeash/MABGTimer/HEAD/BackgroundTimer.xcodeproj/xcuserdata/mikeash.xcuserdatad/xcschemes/BackgroundTimer.xcscheme -------------------------------------------------------------------------------- /BackgroundTimer.xcodeproj/xcuserdata/mikeash.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeash/MABGTimer/HEAD/BackgroundTimer.xcodeproj/xcuserdata/mikeash.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /BackgroundTimer_Prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeash/MABGTimer/HEAD/BackgroundTimer_Prefix.pch -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeash/MABGTimer/HEAD/LICENSE -------------------------------------------------------------------------------- /Source/BackgroundResizingArray.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeash/MABGTimer/HEAD/Source/BackgroundResizingArray.h -------------------------------------------------------------------------------- /Source/BackgroundResizingArray.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeash/MABGTimer/HEAD/Source/BackgroundResizingArray.m -------------------------------------------------------------------------------- /Source/MABGTimer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeash/MABGTimer/HEAD/Source/MABGTimer.h -------------------------------------------------------------------------------- /Source/MABGTimer.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeash/MABGTimer/HEAD/Source/MABGTimer.m -------------------------------------------------------------------------------- /Source/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeash/MABGTimer/HEAD/Source/main.m --------------------------------------------------------------------------------