今天對iOS動畫再學(xué)習(xí)時懊纳,發(fā)現(xiàn)有個知識空白网持。這就是iOS 9 新出的CASpringAnimation,是蘋果專門解決開發(fā)者關(guān)于彈簧動畫的這個需求而封裝的類长踊。CASpringAnimation 繼承于CABaseAnimation。下面我們就詳細(xì)解說一下有關(guān)CASpringAnimation類的相關(guān)屬性和用法萍倡。
CASpringAnimation相關(guān)屬性
#pragma CASpringAnimation 彈簧動畫 的相關(guān)屬性
/* The mass of the object attached to the end of the spring. Must be greater
than 0. Defaults to one. */
//質(zhì)量身弊,影響圖層運動時的彈簧慣性,質(zhì)量越大,彈簧拉伸和壓縮的幅度越大
@property CGFloat mass;
/* The spring stiffness coefficient. Must be greater than 0.
* Defaults to 100. */
//剛度系數(shù)(勁度系數(shù)/彈性系數(shù))阱佛,剛度系數(shù)越大帖汞,形變產(chǎn)生的力就越大,運動越快
@property CGFloat stiffness;
/* The damping coefficient. Must be greater than or equal to 0.
* Defaults to 10. */
//阻尼系數(shù)凑术,阻止彈簧伸縮的系數(shù)翩蘸,阻尼系數(shù)越大,停止越快
@property CGFloat damping;
/* The initial velocity of the object attached to the spring. Defaults
* to zero, which represents an unmoving object. Negative values
* represent the object moving away from the spring attachment point,
* positive values represent the object moving towards the spring
* attachment point. */
//初始速率淮逊,動畫視圖的初始速度大小 Defaults to zero
//速率為正數(shù)時催首,速度方向與運動方向一致,速率為負(fù)數(shù)時泄鹏,速度方向與運動方向相反
@property CGFloat initialVelocity;
/* Returns the estimated duration required for the spring system to be
* considered at rest. The duration is evaluated for the current animation
* parameters. */
//估算時間 返回彈簧動畫到停止時的估算時間郎任,根據(jù)當(dāng)前的動畫參數(shù)估算
@property(readonly) CFTimeInterval settlingDuration;
CASpringAnimation解析
CASpringAnimation初始化
初始化CASpringAnimation一般使用animationWithKeyPath:
方法,這里的KeyPath
可以是@"position"
這用點表示路徑@"position.x"
用x軸表示路徑@"position.y"
用y軸表示路徑@"bounds"
這個表示會改變對象的寬高
/* Creates a new animation object with its `keyPath' property set to
* 'path'. */
CASpringAnimation *springAnimation = [CASpringAnimation animationWithKeyPath:@"bounds"];
CASpringAnimation屬性賦值
mass
模擬的是質(zhì)量备籽,影響圖層運動時的彈簧慣性舶治,質(zhì)量越大,彈簧拉伸和壓縮的幅度越大 默認(rèn)值:1 车猬;
springAnimation.mass = 5;
stiffness
剛度系數(shù)(勁度系數(shù)/彈性系數(shù))霉猛,剛度系數(shù)越大,形變產(chǎn)生的力就越大珠闰,運動越快惜浅。默認(rèn)值: 100 ;
springAnimation.stiffness = 100;
damping
阻尼系數(shù)铸磅,阻止彈簧伸縮的系數(shù)赡矢,阻尼系數(shù)越大,停止越快阅仔。默認(rèn)值:10吹散;
springAnimation.damping = 10;
initialVelocity
初始速率,動畫視圖的初始速度大小八酒。默認(rèn)值:0 空民;
速率為正數(shù)時,速度方向與運動方向一致羞迷,速率為負(fù)數(shù)時界轩,速度方向與運動方向相反;
springAnimation.initialVelocity = 10;
settlingDuration
估算時間 返回彈簧動畫到停止時的估算時間衔瓮,根據(jù)當(dāng)前的動畫參數(shù)估算浊猾;
springAnimation.duration = springAnimation.settlingDuration;
removedOnCompletion
默認(rèn)為YES 。當(dāng)設(shè)置為YES時热鞍,動畫結(jié)束后葫慎,移除layer層的衔彻;當(dāng)設(shè)置為NO時,保持動畫結(jié)束時layer的狀態(tài)偷办;
//Determines if the animation is removed from the target layer’s animations upon completion.
springAnimation.removedOnCompletion = NO;
fillMode
屬于QuartzCore動畫中的的屬性艰额,文章末尾我會詳細(xì)談?wù)劇?/p>
springAnimation.fillMode = kCAFillModeBoth;
addAnimation:(CAAnimation *)anim forKey:(nullable NSString *)key
將動畫添加到視圖的layer層,“key”作為這個動畫的唯一標(biāo)示符椒涯,可以是任意唯一的字符串或為空柄沮;
[self.jellyView.layer addAnimation:springAnimation forKey:@"springAnimation"];
實現(xiàn)代碼展示
#pragma mark iOS9 CASpringAnimation 彈簧動畫
- (void)springAnimationTextAction:(CGPoint)point {
CASpringAnimation *springAnimation = [CASpringAnimation animationWithKeyPath:@"bounds"];
//路徑計算模式 (@"position")
if ([springAnimation.keyPath isEqualToString:@"position"]) {
springAnimation.fromValue = [NSValue valueWithCGPoint:self.jellyView.layer.position];
springAnimation.toValue = [NSValue valueWithCGPoint:point];
}else if ([springAnimation.keyPath isEqualToString:@"position.x"]) {
springAnimation.fromValue = @(self.jellyView.layer.position.x);
springAnimation.toValue = @(point.x);
}else if ([springAnimation.keyPath isEqualToString:@"position.y"]) {
springAnimation.fromValue = @(self.jellyView.layer.position.y);
springAnimation.toValue = @(point.y);
}else if ([springAnimation.keyPath isEqualToString:@"bounds"]) {
// CGFloat width = arc4random()%1000*0.1f+20.0f;
// CGFloat height = arc4random()%30*0.1f;
springAnimation.fromValue = [NSValue valueWithCGRect:CGRectMake(point.x, point.y, 60, 60)];
springAnimation.toValue = [NSValue valueWithCGRect:self.jellyView.frame];
}
//質(zhì)量,影響圖層運動時的彈簧慣性废岂,質(zhì)量越大祖搓,彈簧拉伸和壓縮的幅度越大 Defaults to one
springAnimation.mass = 5;
//剛度系數(shù)(勁度系數(shù)/彈性系數(shù)),剛度系數(shù)越大泪喊,形變產(chǎn)生的力就越大棕硫,運動越快 Defaults to 100
springAnimation.stiffness = 100;
//阻尼系數(shù),阻止彈簧伸縮的系數(shù)袒啼,阻尼系數(shù)越大哈扮,停止越快 Defaults to 10
springAnimation.damping = 10;
//初始速率,動畫視圖的初始速度大小 Defaults to zero
//速率為正數(shù)時蚓再,速度方向與運動方向一致滑肉,速率為負(fù)數(shù)時,速度方向與運動方向相反
springAnimation.initialVelocity = 10;
//估算時間 返回彈簧動畫到停止時的估算時間摘仅,根據(jù)當(dāng)前的動畫參數(shù)估算
NSLog(@"====%f",springAnimation.settlingDuration);
springAnimation.duration = springAnimation.settlingDuration;
//removedOnCompletion 默認(rèn)為YES 為YES時靶庙,動畫結(jié)束后,恢復(fù)到原來狀態(tài)
springAnimation.removedOnCompletion = NO;
// springAnimation.fillMode = kCAFillModeBoth;
[self.jellyView.layer addAnimation:springAnimation forKey:@"springAnimation"];
}
這個動畫是animationWithKeyPath:(nullable NSString *)path
path為@"bounds"時
CASpringAnimation *springAnimation = [CASpringAnimation animationWithKeyPath:@"bounds"];
這個動畫是
animationWithKeyPath:(nullable NSString *)path
path為@"position"時
CASpringAnimation *springAnimation = [CASpringAnimation animationWithKeyPath:@"position"];
這個動畫是
animationWithKeyPath:(nullable NSString *)path
path為@"position.y"時
CASpringAnimation *springAnimation = [CASpringAnimation animationWithKeyPath:@"position.y"];
CASpringAnimation 彈簧動畫源碼下載
知識點擴(kuò)充
fillMode屬性的設(shè)置:
kCAFillModeRemoved 這個是默認(rèn)值娃属,也就是說當(dāng)動畫開始前和動畫結(jié)束后六荒,
動畫對layer都沒有影響,動畫結(jié)束后矾端,layer會恢復(fù)到之前的狀態(tài)
kCAFillModeForwards 當(dāng)動畫結(jié)束后掏击,layer會一直保持著動畫最后的狀態(tài)
kCAFillModeBackwards 在動畫開始前,只需要將動畫加入了一個layer秩铆,
layer便立即進(jìn)入動畫的初始狀態(tài)并等待動畫開始砚亭。
kCAFillModeBoth 這個其實就是上面兩個的合成.動畫加入后開始之前,
layer便處于動畫初始狀態(tài)殴玛,動畫結(jié)束后layer保持動畫最后的狀態(tài)