You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
538 B
23 lines
538 B
1 year ago
|
//
|
||
|
// UILabel+BezierAnimation.h
|
||
|
// Test
|
||
|
//
|
||
|
// Created by senro wang on 15/8/11.
|
||
|
// Copyright (c) 2015年 王燊. All rights reserved.
|
||
|
//
|
||
|
|
||
|
#import <UIKit/UIKit.h>
|
||
|
|
||
|
@interface UILabel (BezierAnimation)
|
||
|
|
||
|
|
||
|
/// label 上的数字 从某一个值变化到 另一个值 - (动画) -
|
||
|
/// @param fromNum 始值
|
||
|
/// @param toNum 终值
|
||
|
/// @param duration 持续时间
|
||
|
/// @param precision 精确度 eg: %.01f
|
||
|
- (void)animationFromnum:(float)fromNum toNum:(float)toNum duration:(float)duration precision:(NSString*)precision;
|
||
|
|
||
|
|
||
|
@end
|