1- # Material Motion Transitioning
1+ # Motion Transitioning
22
33> Light-weight API for building UIViewController transitions.
44
55[ ![ Build Status] ( https://travis-ci.org/material-motion/transitioning-objc.svg?branch=develop )] ( https://travis-ci.org/material-motion/transitioning-objc )
66[ ![ 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 )
1010
1111This library standardizes the way transitions are built on iOS so that with a single line of code
1212you can pick the custom transition you want to use:
@@ -73,9 +73,9 @@ final class CustomTransition: NSObject, Transition {
7373>
7474> gem install cocoapods
7575
76- Add `MaterialMotionTransitioning ` to your `Podfile`:
76+ Add `MotionTransitioning ` to your `Podfile`:
7777
78- pod 'MaterialMotionTransitioning '
78+ pod 'MotionTransitioning '
7979
8080Then run the following command:
8181
@@ -85,7 +85,7 @@ Then run the following command:
8585
8686Import the framework:
8787
88- @import MaterialMotionTransitioning ;
88+ @import MotionTransitioning ;
8989
9090You will now have access to all of the APIs.
9191
@@ -97,7 +97,7 @@ commands:
9797 git clone https://github.com/material-motion/transitioning-objc.git
9898 cd transitioning-objc
9999 pod install
100- open MaterialMotionTransitioning .xcworkspace
100+ open MotionTransitioning .xcworkspace
101101
102102## Guides
103103
@@ -112,7 +112,7 @@ commands:
112112> animation, interaction, and presentation controller. These controllers are then expected to
113113> implement the transition's motion.
114114
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:
116116
117117- Every view controller has its own **transition controller**. This encourages choosing the
118118 transition based on the context.
0 commit comments