CocoaPods trunk is moving to be read-only. Read more on the blog, there are 9 months to go.
| TestsTested | ✗ |
| LangLanguage | Obj-CObjective C |
| License | MIT |
| ReleasedLast Release | Mar 2016 |
Maintained by titeng jiang.
TTModalView是一个自定义内容的模态窗口组件,可以任意定制窗口的内容,支持frame,autolayout等方式定位,支持定制modal层的大小以及窗口层次,支持50多种窗口弹出效果.灵活的设计能满足大部分弹出窗口的需求
import TTAnimations/AnimationHelper.h
select targetView
[AnimationHelper playAnimationOn:_targetView animationType:rubberBand];
custom animation use AnimationBuilder
_animationBuilder = [[AnimationBuilder alloc] init];
[_animationBuilder setDelegate:self];
[_animationBuilder setDuration:3.0f];
[_animationBuilder setAnimationType:_animationType];
[_animationBuilder startOn:_targetLabel completeBlock:^{
NSLog(@"complete animation");
}];Finally you need to select one of the following animation:
bounceflashpulserubberBandshakeheadShakeswingtadawobblejellobounceInbounceInDownbounceInLeftbounceInRightbounceInUpbounceOutbounceOutDownbounceOutLeftbounceOutRightbounceOutUpfadeInfadeInDownfadeInDownBigfadeInLeftfadeInLeftBigfadeInRightfadeInRightBigfadeInUpfadeInUpBigfadeOutfadeOutDownfadeOutDownBigfadeOutLeftfadeOutLeftBigfadeOutRightfadeOutRightBigfadeOutUpfadeOutUpBigflipInXflipInYflipOutXflipOutYlightSpeedInlightSpeedOutrotateInrotateInDownLeftrotateInDownRightrotateInUpLeftrotateInUpRightrotateOutrotateOutDownLeftrotateOutDownRightrotateOutUpLeftrotateOutUpRighthingerollInrollOutzoomInzoomInDownzoomInLeftzoomInRightzoomInUpzoomOutzoomOutDownzoomOutLeftzoomOutRightzoomOutUpslideInDownslideInLeftslideInRightslideInUpslideOutDownslideOutLeftslideOutRightslideOutUpTTAnimation is licensed under the MIT license. (http://opensource.org/licenses/MIT)