Popularity
1.7
Stable
Activity
0.0
Stable
47
5
10

Code Quality Rank: L3
Programming language: Swift
License: MIT License
Tags: UI    

ASBubbleDrag alternatives and similar libraries

Based on the "UI" category.
Alternatively, view ASBubbleDrag alternatives based on common mentions on social networks and blogs.

Do you think we are missing an alternative of ASBubbleDrag or a related project?

Add another 'UI' Library

README

ASBubbleDrag

Bubble drag control integrate in storyboard :

alt tag

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

  1. Download and drop /ASBubbleDragfolder in your project.
  2. Congratulations!

implementation :

  • to implement ASBubbleMenu, first create a UIView and add it to your UIViewController in storyboard; then set the class as ASBubbleDrag : alt tag
  • 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.


*Note that all licence references and agreements mentioned in the ASBubbleDrag README section above are relevant to that project's source code only.