gitextract_aqb3k6nd/ ├── .gitignore ├── .travis.yml ├── CONTRIBUTING.md ├── Examples/ │ ├── Clock-OSX/ │ │ ├── AppDelegate.h │ │ ├── AppDelegate.m │ │ ├── Base.lproj/ │ │ │ └── MainMenu.xib │ │ ├── Clock-OSX-Info.plist │ │ ├── Clock-OSX-Prefix.pch │ │ ├── ClockView.h │ │ ├── ClockView.m │ │ ├── Images.xcassets/ │ │ │ └── AppIcon.appiconset/ │ │ │ └── Contents.json │ │ ├── en.lproj/ │ │ │ ├── Credits.rtf │ │ │ └── InfoPlist.strings │ │ └── main.m │ ├── Clock-iOS/ │ │ ├── AppDelegate.h │ │ ├── AppDelegate.m │ │ ├── Base.lproj/ │ │ │ ├── Main_iPad.storyboard │ │ │ └── Main_iPhone.storyboard │ │ ├── Clock-iOS-Info.plist │ │ ├── Clock-iOS-Prefix.pch │ │ ├── Clock.h │ │ ├── Clock.m │ │ ├── ClockLayer.h │ │ ├── ClockLayer.m │ │ ├── ClockView.h │ │ ├── ClockView.m │ │ ├── Images.xcassets/ │ │ │ ├── AppIcon.appiconset/ │ │ │ │ └── Contents.json │ │ │ └── LaunchImage.launchimage/ │ │ │ └── Contents.json │ │ ├── ViewController.h │ │ ├── ViewController.m │ │ ├── en.lproj/ │ │ │ └── InfoPlist.strings │ │ └── main.m │ └── Examples.xcodeproj/ │ └── project.pbxproj ├── FBKVOController/ │ ├── FBKVOController.h │ ├── FBKVOController.m │ ├── Info.plist │ ├── KVOController.h │ ├── NSObject+FBKVOController.h │ └── NSObject+FBKVOController.m ├── FBKVOController.xcodeproj/ │ ├── project.pbxproj │ ├── project.xcworkspace/ │ │ └── contents.xcworkspacedata │ └── xcshareddata/ │ └── xcschemes/ │ ├── FBKVOController-OSX-Dynamic.xcscheme │ ├── FBKVOController-iOS-Dynamic.xcscheme │ ├── FBKVOController-tvOS-Dynamic.xcscheme │ ├── FBKVOController-watchOS-Dynamic.xcscheme │ └── FBKVOController.xcscheme ├── FBKVOController.xcworkspace/ │ └── contents.xcworkspacedata ├── FBKVOControllerTests/ │ ├── FBKVOControllerTests-Info.plist │ ├── FBKVOControllerTests.m │ ├── FBKVOTesting.h │ ├── FBKVOTesting.m │ └── en.lproj/ │ └── InfoPlist.strings ├── KVOController.podspec ├── LICENSE ├── PATENTS ├── Podfile ├── README.md ├── Rakefile └── codecov.yml