An open-source menu control for iOS utilizing UICollectionView layout.
SFSCollectionMenu is an open-source control for a UICollectionView-based menu. SFSCollectionMenu is designed for iOS 7, and is ARC-compliant. It works by utilizing a delegate pattern to allow you, the developer, the implement it easily and add your own code to customize its appearance and behavior. SFSCollectionMenuController's designated initializer is -initWithDelegate, as the delegate is required for operation.
####To use:
- Add SFSCollectionMenuController.h/.m, SFSCircleLayout.h/.m, and SFSMenuCell.h/.m to your project
- Import SFSCollectionMenuController.h to your controller
- Adhere to the SFSCollectionMenuDelegate protocol
- Create an instance of the menu controller by [[SFSCollectionMenuController alloc] initWithDelegate:self], or whatever object you designate as the delegate
- Implement the required methods, and any optional methods you wish
- Call -showMenu on your instance of SFSCollectionMenuController
####To do
- Add support for Accessibility, which will be required delegate methods
- Create CocoaPod

