Introduction - If you have any usage issues, please Google them yourself
# QBAnimationSequence
QBAnimationSequence is a library for controlling continuous view animations.
## Installation
`#import "QBAnimationSequence.h"` in your ViewController
## ScreenShot


## Classes
### QBAnimationSequence
A main sequencer for view animations that controls QBAnimationGroup instances.
#### groups
An array of animation groups.
`@property (nonatomic, copy) NSArray*groups`
#### repeat
A Boolean value that determines whether the animations repeat automatically.
`@property (nonatomic, assign) BOOL repeat`
--
### QBAnimationGroup
A group of animations.
#### items
An array of animation items.
`@property (nonatomic, copy) NSArray*items`
#### waitUntilDone
A Boolean value that determines whether to wait until animations finish.
`@property (nonatomic, assign) BOOL waitUntil