File tree Expand file tree Collapse file tree 4 files changed +5
-5
lines changed
Example/TrueTransition.xcworkspace/xcuserdata/shlesberg.xcuserdatad Expand file tree Collapse file tree 4 files changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -12,11 +12,11 @@ public protocol Transition {
1212
1313//TODO: make options to present non animated or smth
1414
15- open class PushTransition : Transition {
15+ public class PushTransition : Transition {
1616
1717 private var controllerToPush : ( ) -> UIViewController
1818
19- init ( controllerToPush: @escaping ( ) -> UIViewController ) {
19+ public init ( controllerToPush: @escaping ( ) -> UIViewController ) {
2020 self . controllerToPush = controllerToPush
2121 }
2222
@@ -29,7 +29,7 @@ open class PresentTransition: Transition {
2929
3030 private var controllerToPresent : ( ) -> UIViewController
3131
32- init ( controllerToPresent: @escaping ( ) -> UIViewController ) {
32+ public init ( controllerToPresent: @escaping ( ) -> UIViewController ) {
3333 self . controllerToPresent = controllerToPresent
3434 }
3535
@@ -54,7 +54,7 @@ open class DismissTransition: Transition {
5454open class NewWindowRootControllerTransition : Transition {
5555 private let leadingTo : ( ) -> ( UIViewController )
5656
57- init ( leadingTo: @escaping ( ) -> ( UIViewController ) ) {
57+ public init ( leadingTo: @escaping ( ) -> ( UIViewController ) ) {
5858 self . leadingTo = leadingTo
5959 }
6060
Original file line number Diff line number Diff line change 11
22Pod ::Spec . new do |s |
33 s . name = 'TrueTransition'
4- s . version = '0.4.2 '
4+ s . version = '0.4.3 '
55 s . summary = 'Simple pod for decoupling transitions.'
66
77 s . description = <<-DESC
You can’t perform that action at this time.
0 commit comments