Skip to content

Commit

Permalink
public key added
Browse files Browse the repository at this point in the history
  • Loading branch information
ahmetkgunay committed May 2, 2017
1 parent c31fdf3 commit 28e4ae4
Show file tree
Hide file tree
Showing 7 changed files with 9 additions and 9 deletions.
2 changes: 1 addition & 1 deletion AKGPushAnimator.podspec
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Pod::Spec.new do |s|
s.name = "AKGPushAnimator"
s.version = '1.0.0'
s.version = '1.0.2'
s.summary = "Easy to use, Interactive Push Animator like Instagram app"
s.description = <<-DESC
Easily Push and Pop ViewController like Instagram App with Interaction written in pure Swift 3
Expand Down
4 changes: 2 additions & 2 deletions AKGPushAnimator/AKGInteractionAnimator.swift
Original file line number Diff line number Diff line change
Expand Up @@ -12,9 +12,9 @@ public class AKGInteractionAnimator: UIPercentDrivenInteractiveTransition {

var navigationController: UINavigationController!
var shouldCompleteTransition = false
var transitionInProgress = false
public var transitionInProgress = false

func attachToViewController(_ viewController: UIViewController) {
public func attachToViewController(_ viewController: UIViewController) {
navigationController = viewController.navigationController
addGestureRecognizer(viewController.view)
}
Expand Down
2 changes: 1 addition & 1 deletion AKGPushAnimator/AKGPushAnimator.swift
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ import UIKit

public class AKGPushAnimator: NSObject, UIViewControllerAnimatedTransitioning {

var isReverseTransition = false
public var isReverseTransition = false

// MARK: Variables with Getters

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,9 +12,9 @@ public class AKGInteractionAnimator: UIPercentDrivenInteractiveTransition {

var navigationController: UINavigationController!
var shouldCompleteTransition = false
var transitionInProgress = false
public var transitionInProgress = false

func attachToViewController(_ viewController: UIViewController) {
public func attachToViewController(_ viewController: UIViewController) {
navigationController = viewController.navigationController
addGestureRecognizer(viewController.view)
}
Expand Down
2 changes: 1 addition & 1 deletion AKGPushAnimatorDemo/AKGPushAnimator/AKGPushAnimator.swift
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ import UIKit

public class AKGPushAnimator: NSObject, UIViewControllerAnimatedTransitioning {

var isReverseTransition = false
public var isReverseTransition = false

// MARK: Variables with Getters

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ struct AKGPushAnimatorConstants {

struct Common {
static let duration = 0.27;
static let dismissPosition : CGFloat = -100;
static let dismissPosition : CGFloat = -50;
}

struct Push {
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ AKGPushAnimator is available through [CocoaPods](http://cocoapods.org). To insta
it, simply add the following line to your Podfile:

```ruby
pod 'AKGPushAnimator', '~> 1.0.0'
pod 'AKGPushAnimator', '~> 1.0.2'
```

## Author
Expand Down

0 comments on commit 28e4ae4

Please sign in to comment.