├── .gitignore ├── LICENSE ├── MABlockClosure.h ├── MABlockClosure.m ├── Makefile ├── README.markdown ├── iPhoneTest ├── MainWindow.xib ├── iPhoneTest-Info.plist └── iPhoneTest.xcodeproj │ └── project.pbxproj └── main.m /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeash/MABlockClosure/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeash/MABlockClosure/HEAD/LICENSE -------------------------------------------------------------------------------- /MABlockClosure.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeash/MABlockClosure/HEAD/MABlockClosure.h -------------------------------------------------------------------------------- /MABlockClosure.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeash/MABlockClosure/HEAD/MABlockClosure.m -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeash/MABlockClosure/HEAD/Makefile -------------------------------------------------------------------------------- /README.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeash/MABlockClosure/HEAD/README.markdown -------------------------------------------------------------------------------- /iPhoneTest/MainWindow.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeash/MABlockClosure/HEAD/iPhoneTest/MainWindow.xib -------------------------------------------------------------------------------- /iPhoneTest/iPhoneTest-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeash/MABlockClosure/HEAD/iPhoneTest/iPhoneTest-Info.plist -------------------------------------------------------------------------------- /iPhoneTest/iPhoneTest.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeash/MABlockClosure/HEAD/iPhoneTest/iPhoneTest.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeash/MABlockClosure/HEAD/main.m --------------------------------------------------------------------------------