Bubble drag control integrate in storyboard :
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
- Download and drop
/ASBubbleDrag
folder in your project. - Congratulations!
-
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) { }
ASBubbleDrag is available under the MIT license. See the LICENSE file for more info.