Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Better Installation section #2

Merged
merged 1 commit into from
Sep 13, 2016
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
25 changes: 18 additions & 7 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,16 +6,27 @@ Bubble drag control integrate in storyboard :
![alt tag](https://github.com/scamps88/ASBubbleDrag/blob/master/README/animated.gif)


### installation :
## Installation

- Just copy the ASBubbleDrag folder to your project
#### CocoaPods
You can use [CocoaPods](http://cocoapods.org/) to install `ASBubbleDrag` by adding it to your `Podfile`:

- Or, if you are using CocoaPod, add the followind line to your Podfile (adding the use_frameworks! flag at the end) :
```swift
```ruby
platform :ios, '8.0'
use_frameworks!
pod 'ASBubbleDrag', :git => 'https://github.com/scamps88/ASBubbleDrag.git'
use_frameworks!
```
```

To get the full benefits import `ASBubbleDrag` wherever you import UIKit

``` swift
import UIKit
import ASBubbleDrag
```

#### Manually
1. Download and drop ```/ASBubbleDrag```folder in your project.
2. Congratulations!

### implementation :

Expand Down