Skip to content

Commit

Permalink
fix: add missing objc attribute for swift4
Browse files Browse the repository at this point in the history
  • Loading branch information
krzysztofzablocki committed Oct 9, 2017
1 parent 67c29cb commit b70daa7
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion LifetimeTracker.podspec
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Pod::Spec.new do |s|
s.name = "LifetimeTracker"
s.version = "1.0.6"
s.version = "1.0.7"
s.summary = "Framework to visually warn you when retain cycle / leak happens."
s.description = <<-DESC
Mini framework that can surface retain cycle issues sooner.
Expand Down
2 changes: 1 addition & 1 deletion Sources/DashboardView/DashboardViewController.swift
Original file line number Diff line number Diff line change
Expand Up @@ -121,7 +121,7 @@ final class DashboardViewController: UIViewController {
self.view.addGestureRecognizer(panGestureRecognizer)
}

func toolbarPanned(_ gestureRecognizer: UIPanGestureRecognizer) {
@objc func toolbarPanned(_ gestureRecognizer: UIPanGestureRecognizer) {
switch gestureRecognizer.state {
case .began:
originalOffset = dragOffset
Expand Down

0 comments on commit b70daa7

Please sign in to comment.