• Stars
    star
    265
  • Rank 154,577 (Top 4 %)
  • Language
    Objective-C
  • Created about 11 years ago
  • Updated almost 10 years ago

Reviews

There are no reviews yet. Be the first to send feedback to the community and the maintainers!

Repository Details

Beginnings of a fun animation project in UIBezierPaths, inspired by Timely for Android

MFLTransformingDigit

####Beginnings of a fun animation project in UIBezierPaths

This is a highly complex animation library for showing numbers changing, be it a countdown, a clock, or a scoreboard. It now allows for any size frame with special affine transforms.

After creating it you can increment, decrement or set it directly to a digit.

Much more is planned in the future, but for now check out a video here. Note: This video is now out dated, check out the sample project for a better idea of capability.

###Initialize Types

The previous two initializers have been coalesced into one:

 - (id)initWithFrame:(CGRect)frame initialDigit:(NSInteger)initialDigit foldingStyle:(MFLFoldingStyle)foldingStyle;

Use the following initializer if you wish to copy a digit you already have:

 - (id)initWithFoldingDigit:(MFLTransformingDigit *)digit; 

###Editable Properties

The following properties are available to customize the style and animation of the digits.

####Style Properties

 @property (nonatomic) CGColorRef strokeColor;
 @property (nonatomic) CGFloat lineThickness;
 @property CGFloat transformDuration;

####Animation Values

 @property NSString *calculationMode;
 @property id timingFunction;
 @property MFLAnimationStyle animationStyle;

####Extra Animations

 @property MFLRotateAnimationStyle rotate3DStyle;
 @property MFLScaleAnimationStyle scaleStyle;
 @property BOOL shouldRotateIn2D;
 @property BOOL shouldAnimationNewSuperview;

###Available Functions

 - (void)animateToDigit:(NSInteger)digit;
 - (void)animateToDigit:(NSInteger)digit completion:(void (^)(BOOL))completion;
 
 - (void)decrement;
 - (void)decrementWithCompletion:(void (^)(BOOL))completion;
 
 - (void)increment;
 - (void)incrementWithCompletion:(void (^)(BOOL))completion;

MFLTransformingScoreBoard

The Scoreboard is a new addition built by stringing together a dynamic amount of MFLTransformingDigits.

You can use it in IB, or just plain initWithFrame, but if you want a bit more control over the style, you can use these:

 - (id)initWithBaseDigit:(MFLTransformingDigit *)digit forFrame:(CGRect)frame;

 - (id)initWithBaseDigit:(MFLTransformingDigit *)digit andValue:(NSInteger)value forFrame:(CGRect)frame;

The idea is to create an MFLTransformingDigit with the style you want to use, and then initialize your scoreboard with it. Resetting this digit later will update the look of your Scoreboard.

After that, you have three basic methods:

 - (void)setToValue:(NSInteger)value;

 - (void)decrementByValue:(NSInteger)value;

 - (void)incrementByValue:(NSInteger)value;

The methods come in flavors with completion blocks and durations for finer grained control. If at any time you want to stop the animation call:

 - (void)stopAnimation;

###License

Feel free to do whatever you'd like with this codebase privately, I've put it here as an example of some fun CAShapeLayer/UIBezierPath drawing examples. However, if you'd like to use the app in a commercial application, I'd appreciate it if you would pick up a commercial license from BinPress for 40$ or contact me to work something else out.

###Future Plans

Eventually this will hold multiple fonts, but is currently based on Futura.

A clock is still in the works, but the current plan is to implement a scoreboard of sorts which string together multiple MFLTransformingDigits

####Credit due. This animation is inspired by the "Timely" Android App, and this writeup describing it's bezier math.

Scoreboard is based a bit on JDFlipNumberView's implementation of target animation

More Repositories

1

Smerk

Repository for easily building video detection in iOS, faces to barcodes to QR codes
Objective-C
224
star
2

react-native-paypal

Paypal wrapper for React Native
Objective-C
157
star
3

UIDynamics-Helpers

This repository is filled with helping code for UIDynamics, simple dynamics examples, collisions, motion detection, etc.
Objective-C
101
star
4

MFLHintLabel

MFLHintLabel is a text animation library based on manipulating the individual characters in a label.
Objective-C
84
star
5

SWCrawlView

Open source repo for interactive Star Wars Crawl View, as close to theatrically accurate as possible.
Objective-C
76
star
6

MFLFillableTextLoader

Loading slash progress indicator based on filling stroked text.
Objective-C
66
star
7

react-native-fancy-label

Cross platform (eventually) class for styling text with gradients, strokes, inner/outer shadows with blurring, as well as fading.
Objective-C
41
star
8

AppiraterPlus

This is Appirater that you all know and love but with a twist. This version is now ARC compatible, and is converted to use a .xib file instead of a UIAlertView.
Objective-C
35
star
9

MFRedditPostController

Open Source control w/ optional GUI to handle any type of Reddit Post you want to make.
Objective-C
26
star
10

MFLJoystick

Joystick for iOS - not Cocos2D. I wanted one that functioned as well as GTA Vice City, and there weren't any already existing. Written in ObjC and Swift!
Swift
19
star
11

VIWelcomeTutorial-iOS

VIIntroductionView class based on MYIntroductionView, but rewritten with deeper customization and following our coding standards.
Objective-C
9
star
12

MFLYoutubeUploader

Incredibly simple YouTube uploading
Objective-C
7
star
13

react-native-stanza-demo

Test repository for Stanza.io with React Native.
JavaScript
5
star
14

VIRemoteDocumentController

Class to handle opening remote documents in UIDocumentInteractionController
Objective-C
2
star
15

TjTickerView

iOS 5 Ticking text controller, with clickable UIButtons, ARC compatibility, and multiple simultaneous scrolling buttons.
Objective-C
2
star