Bagaimana untuk memastikan kedudukan tidak berubah dalam ios tetapi hanya lebar yang berubah.
过去多啦不再A梦
过去多啦不再A梦 2017-05-17 10:05:26
0
1
759
    CABasicAnimation *leftboundsanimation = [CABasicAnimation animationWithKeyPath:@"bounds.size.width"];
    leftboundsanimation.fromValue = [NSNumber numberWithFloat:1];
    //[NSValue valueWithCGSize:CGSizeMake(1, 20)];
    leftboundsanimation.toValue   = [NSNumber numberWithFloat:animationrectwidth/2-0.5];

// [Nilai NValueWithCGSize:CGSizeMake(animasirectwidth/2-0.5, 20)];

    leftboundsanimation.removedOnCompletion  =   NO;
    leftboundsanimation.fillMode =   kCAFillModeForwards;
    leftboundsanimation.duration  = 1.3;
    leftboundsanimation.beginTime   =   2.7;
过去多啦不再A梦
过去多啦不再A梦

membalas semua(1)
PHPzhong

Versi CABasicAnimation:

Bagaimana untuk menukar lebar CALayer dengan animasi dari kiri ke kanan?

CGRect bounds = self.view.bounds;
CALayer *layer = self.view.layer;
layer.position = CGPointMake(0, 0);
layer.anchorPoint = CGPointMake(0, 0);

CABasicAnimation *leftBoundsAnimation = [CABasicAnimation animationWithKeyPath:@"bounds"];
leftBoundsAnimation.duration = 1.3;
leftBoundsAnimation.toValue = [NSValue valueWithCGRect:bounds];
bounds.size.width = 0;
leftBoundsAnimation.fromValue = [NSValue valueWithCGRect:bounds];

[layer addAnimation:leftBoundsAnimation forKey:@"leftBoundsAnimation"];

UIView其实有直接提供动画方法的。
改变一个view的宽度:

CGRect frame = self.view.frame;
frame.size.width = 300;
[UIView animateWithDuration:1.3 animations:^{
    self.view.frame = frame;
}];
Muat turun terkini
Lagi>
kesan web
Kod sumber laman web
Bahan laman web
Templat hujung hadapan