ASBubbleDrag
Bubble drag control integrate in storyboard :
Installation
CocoaPods
You can use CocoaPods to install ASBubbleDrag by adding it to your Podfile:
platform :ios, '8.0'
use_frameworks!
    pod 'ASBubbleDrag', :git => 'https://github.com/scamps88/ASBubbleDrag.git'
To get the full benefits import ASBubbleDrag wherever you import UIKit
import UIKit
import ASBubbleDrag
Manually
- Download and drop 
/ASBubbleDragfolder in your project. - Congratulations!
 
implementation :
-  
to implement ASBubbleMenu, first create a UIView and add it to your UIViewController in storyboard; then set the class as ASBubbleDrag :

 -  
then attach it to an iboutlet
@IBOutlet var bubbleDragView : ASBubbleDrag!
 -  
and populate it with an array of UIImage
self.bubbleDragView.populate(icons)
 -  
the ASBubbleDragDelegate protocol will return the index selected :
self.bubbleDragView.delegate = self func ASBubbleDragSelectedMenuItemAtIndex(index: NSInteger) { }
 
licence :
ASBubbleDrag is available under the MIT license. See the LICENSE file for more info.
