├── .gitignore ├── LICENSE ├── MSWeakTimer-SampleProject ├── MSWeakTimer-SampleProject.xcodeproj │ └── project.pbxproj ├── MSWeakTimer-SampleProject │ ├── Classes │ │ ├── MSSampleViewController.h │ │ ├── MSSampleViewController.m │ │ └── MSSampleViewController.xib │ ├── Default-568h@2x.png │ ├── Default.png │ ├── Default@2x.png │ ├── MSAppDelegate.h │ ├── MSAppDelegate.m │ ├── MSWeakTimer-SampleProject-Info.plist │ ├── MSWeakTimer-SampleProject-Prefix.pch │ ├── en.lproj │ │ └── InfoPlist.strings │ └── main.m ├── MSWeakTimer-SampleProjectTests │ ├── MSWeakTimer-SampleProjectTests-Info.plist │ ├── MSWeakTimer_SampleProjectTests.h │ ├── MSWeakTimer_SampleProjectTests.m │ └── en.lproj │ │ └── InfoPlist.strings └── MSWeakTimer │ └── MSWeakTimer-Prefix.pch ├── MSWeakTimer.podspec ├── MSWeakTimer.xcodeproj ├── project.pbxproj └── xcshareddata │ └── xcschemes │ └── MSWeakTimer.xcscheme ├── MSWeakTimer ├── Info.plist ├── MSWeakTimer.h └── MSWeakTimer.m └── README.md /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindsnacks/MSWeakTimer/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindsnacks/MSWeakTimer/HEAD/LICENSE -------------------------------------------------------------------------------- /MSWeakTimer-SampleProject/MSWeakTimer-SampleProject.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindsnacks/MSWeakTimer/HEAD/MSWeakTimer-SampleProject/MSWeakTimer-SampleProject.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /MSWeakTimer-SampleProject/MSWeakTimer-SampleProject/Classes/MSSampleViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindsnacks/MSWeakTimer/HEAD/MSWeakTimer-SampleProject/MSWeakTimer-SampleProject/Classes/MSSampleViewController.h -------------------------------------------------------------------------------- /MSWeakTimer-SampleProject/MSWeakTimer-SampleProject/Classes/MSSampleViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindsnacks/MSWeakTimer/HEAD/MSWeakTimer-SampleProject/MSWeakTimer-SampleProject/Classes/MSSampleViewController.m -------------------------------------------------------------------------------- /MSWeakTimer-SampleProject/MSWeakTimer-SampleProject/Classes/MSSampleViewController.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindsnacks/MSWeakTimer/HEAD/MSWeakTimer-SampleProject/MSWeakTimer-SampleProject/Classes/MSSampleViewController.xib -------------------------------------------------------------------------------- /MSWeakTimer-SampleProject/MSWeakTimer-SampleProject/Default-568h@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindsnacks/MSWeakTimer/HEAD/MSWeakTimer-SampleProject/MSWeakTimer-SampleProject/Default-568h@2x.png -------------------------------------------------------------------------------- /MSWeakTimer-SampleProject/MSWeakTimer-SampleProject/Default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindsnacks/MSWeakTimer/HEAD/MSWeakTimer-SampleProject/MSWeakTimer-SampleProject/Default.png -------------------------------------------------------------------------------- /MSWeakTimer-SampleProject/MSWeakTimer-SampleProject/Default@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindsnacks/MSWeakTimer/HEAD/MSWeakTimer-SampleProject/MSWeakTimer-SampleProject/Default@2x.png -------------------------------------------------------------------------------- /MSWeakTimer-SampleProject/MSWeakTimer-SampleProject/MSAppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindsnacks/MSWeakTimer/HEAD/MSWeakTimer-SampleProject/MSWeakTimer-SampleProject/MSAppDelegate.h -------------------------------------------------------------------------------- /MSWeakTimer-SampleProject/MSWeakTimer-SampleProject/MSAppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindsnacks/MSWeakTimer/HEAD/MSWeakTimer-SampleProject/MSWeakTimer-SampleProject/MSAppDelegate.m -------------------------------------------------------------------------------- /MSWeakTimer-SampleProject/MSWeakTimer-SampleProject/MSWeakTimer-SampleProject-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindsnacks/MSWeakTimer/HEAD/MSWeakTimer-SampleProject/MSWeakTimer-SampleProject/MSWeakTimer-SampleProject-Info.plist -------------------------------------------------------------------------------- /MSWeakTimer-SampleProject/MSWeakTimer-SampleProject/MSWeakTimer-SampleProject-Prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindsnacks/MSWeakTimer/HEAD/MSWeakTimer-SampleProject/MSWeakTimer-SampleProject/MSWeakTimer-SampleProject-Prefix.pch -------------------------------------------------------------------------------- /MSWeakTimer-SampleProject/MSWeakTimer-SampleProject/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /MSWeakTimer-SampleProject/MSWeakTimer-SampleProject/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindsnacks/MSWeakTimer/HEAD/MSWeakTimer-SampleProject/MSWeakTimer-SampleProject/main.m -------------------------------------------------------------------------------- /MSWeakTimer-SampleProject/MSWeakTimer-SampleProjectTests/MSWeakTimer-SampleProjectTests-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindsnacks/MSWeakTimer/HEAD/MSWeakTimer-SampleProject/MSWeakTimer-SampleProjectTests/MSWeakTimer-SampleProjectTests-Info.plist -------------------------------------------------------------------------------- /MSWeakTimer-SampleProject/MSWeakTimer-SampleProjectTests/MSWeakTimer_SampleProjectTests.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindsnacks/MSWeakTimer/HEAD/MSWeakTimer-SampleProject/MSWeakTimer-SampleProjectTests/MSWeakTimer_SampleProjectTests.h -------------------------------------------------------------------------------- /MSWeakTimer-SampleProject/MSWeakTimer-SampleProjectTests/MSWeakTimer_SampleProjectTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindsnacks/MSWeakTimer/HEAD/MSWeakTimer-SampleProject/MSWeakTimer-SampleProjectTests/MSWeakTimer_SampleProjectTests.m -------------------------------------------------------------------------------- /MSWeakTimer-SampleProject/MSWeakTimer-SampleProjectTests/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /MSWeakTimer-SampleProject/MSWeakTimer/MSWeakTimer-Prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindsnacks/MSWeakTimer/HEAD/MSWeakTimer-SampleProject/MSWeakTimer/MSWeakTimer-Prefix.pch -------------------------------------------------------------------------------- /MSWeakTimer.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindsnacks/MSWeakTimer/HEAD/MSWeakTimer.podspec -------------------------------------------------------------------------------- /MSWeakTimer.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindsnacks/MSWeakTimer/HEAD/MSWeakTimer.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /MSWeakTimer.xcodeproj/xcshareddata/xcschemes/MSWeakTimer.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindsnacks/MSWeakTimer/HEAD/MSWeakTimer.xcodeproj/xcshareddata/xcschemes/MSWeakTimer.xcscheme -------------------------------------------------------------------------------- /MSWeakTimer/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindsnacks/MSWeakTimer/HEAD/MSWeakTimer/Info.plist -------------------------------------------------------------------------------- /MSWeakTimer/MSWeakTimer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindsnacks/MSWeakTimer/HEAD/MSWeakTimer/MSWeakTimer.h -------------------------------------------------------------------------------- /MSWeakTimer/MSWeakTimer.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindsnacks/MSWeakTimer/HEAD/MSWeakTimer/MSWeakTimer.m -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindsnacks/MSWeakTimer/HEAD/README.md --------------------------------------------------------------------------------