1
- # Material Motion Transitioning
1
+ # Motion Transitioning
2
2
3
3
> Light-weight API for building UIViewController transitions.
4
4
5
5
[ ![ Build Status] ( https://travis-ci.org/material-motion/transitioning-objc.svg?branch=develop )] ( https://travis-ci.org/material-motion/transitioning-objc )
6
6
[ ![ codecov] ( https://codecov.io/gh/material-motion/transitioning-objc/branch/develop/graph/badge.svg )] ( https://codecov.io/gh/material-motion/transitioning-objc )
7
- [ ![ CocoaPods Compatible] ( https://img.shields.io/cocoapods/v/MaterialMotionTransitioning .svg )] ( https://cocoapods.org/pods/MaterialMotionTransitioning )
8
- [ ![ Platform] ( https://img.shields.io/cocoapods/p/MaterialMotionTransitioning .svg )] ( http://cocoadocs.org/docsets/MaterialMotionTransitioning )
9
- [ ![ Docs] ( https://img.shields.io/cocoapods/metrics/doc-percent/MaterialMotionTransitioning .svg )] ( http://cocoadocs.org/docsets/MaterialMotionTransitioning )
7
+ [ ![ CocoaPods Compatible] ( https://img.shields.io/cocoapods/v/MotionTransitioning .svg )] ( https://cocoapods.org/pods/MotionTransitioning )
8
+ [ ![ Platform] ( https://img.shields.io/cocoapods/p/MotionTransitioning .svg )] ( http://cocoadocs.org/docsets/MotionTransitioning )
9
+ [ ![ Docs] ( https://img.shields.io/cocoapods/metrics/doc-percent/MotionTransitioning .svg )] ( http://cocoadocs.org/docsets/MotionTransitioning )
10
10
11
11
This library standardizes the way transitions are built on iOS so that with a single line of code
12
12
you can pick the custom transition you want to use:
@@ -73,9 +73,9 @@ final class CustomTransition: NSObject, Transition {
73
73
>
74
74
> gem install cocoapods
75
75
76
- Add `MaterialMotionTransitioning ` to your `Podfile`:
76
+ Add `MotionTransitioning ` to your `Podfile`:
77
77
78
- pod 'MaterialMotionTransitioning '
78
+ pod 'MotionTransitioning '
79
79
80
80
Then run the following command:
81
81
@@ -85,7 +85,7 @@ Then run the following command:
85
85
86
86
Import the framework:
87
87
88
- @import MaterialMotionTransitioning ;
88
+ @import MotionTransitioning ;
89
89
90
90
You will now have access to all of the APIs.
91
91
@@ -97,7 +97,7 @@ commands:
97
97
git clone https://github.com/material-motion/transitioning-objc.git
98
98
cd transitioning-objc
99
99
pod install
100
- open MaterialMotionTransitioning .xcworkspace
100
+ open MotionTransitioning .xcworkspace
101
101
102
102
## Guides
103
103
@@ -112,7 +112,7 @@ commands:
112
112
> animation, interaction, and presentation controller. These controllers are then expected to
113
113
> implement the transition's motion.
114
114
115
- MaterialMotionTransitioning provides a thin layer atop these protocols with the following advantages:
115
+ MotionTransitioning provides a thin layer atop these protocols with the following advantages:
116
116
117
117
- Every view controller has its own **transition controller**. This encourages choosing the
118
118
transition based on the context.
0 commit comments