2015-02-23 38 views
3

我試圖在Skype iOS應用程序中完成一個動畫。動畫可以在這個鏈接看到Animation Section 3:Add a ContactUIView中的UIBezierPath動畫

我試過用UIBezierPath,但我不能這樣做。有任何想法嗎?

謝謝! 我的代碼

@implementation CustomView 

#pragma mark - Lifecycle and initialize components 


- (instancetype) initWithFrame:(CGRect)frame { 
    self = [super initWithFrame:frame]; 
    if (self) { 

     self.alpha = 0; 

     [self configureCancelButton]; 
     [self configureCollectionView]; 


     [self addSubview:self.cancelButton]; 
     [self addSubview:self.collectionView]; 


    } 

    return self; 
} 

- (void) configureCancelButton { 
    self.cancelButton = [UIButton buttonWithType:UIButtonTypeSystem]; 
    [self.cancelButton setTitle:@"Cancel" forState:UIControlStateNormal]; 
    self.cancelButton.titleLabel.font = [UIFont systemFontOfSize:20]; 
    [self.cancelButton addTarget:self action:@selector (cancelView) forControlEvents:UIControlEventTouchUpInside]; 
    self.cancelButton.backgroundColor = [UIColor colorWithWhite:1.0 alpha:0.8]; 
    self.cancelButton.layer.cornerRadius = 7.f; 

    self.frameForCancelButton = CGRectMake (self.bounds.origin.x+5, self.bounds.size.height - kCancelButtonHeight - 5, self.bounds.size.width-10, kCancelButtonHeight); 

    self.cancelButton.frame = CGRectMake (self.frameForCancelButton.origin.x, self.frameForCancelButton.origin.y + kAnimationOffset, self.frameForCancelButton.size.width, self.frameForCancelButton.size.height); 
} 

- (void) configureCollectionView { 
    UICollectionViewFlowLayout *layout= [[UICollectionViewFlowLayout alloc] init]; 
    layout.itemSize = CGSizeMake(kItemSize, kItemSize); 
    layout.minimumInteritemSpacing = 3.0; 
    layout.sectionInset = UIEdgeInsetsMake(0, 7, 7, 10); 
    layout.scrollDirection = UICollectionViewScrollDirectionHorizontal; 

    self.frameForCollectionView = CGRectMake(self.cancelButton.frame.origin.x, self.frame.size.height - (self.cancelButton.frame.size.height + 10 + kCollectionHeight), self.cancelButton.bounds.size.width, kCollectionHeight); 

    self.collectionView = [[UICollectionView alloc] initWithFrame:CGRectMake (self.frameForCollectionView.origin.x, self.frameForCollectionView.origin.y + kAnimationOffset, self.frameForCollectionView.size.width, self.frameForCollectionView.size.height) 
              collectionViewLayout:layout]; 

    self.collectionView.backgroundColor = [UIColor colorWithWhite:1 alpha:.8]; 
    [self.collectionView registerClass:[RAShareCell class] forCellWithReuseIdentifier:@"Cell"]; 

    self.collectionView.delegate = self; 
    self.collectionView.dataSource = self; 
    self.collectionView.layer.cornerRadius = 7.f; 


} 


#pragma mark - Public Methods 


- (void) present { 

    [UIView animateWithDuration:0.35 animations:^{ 
     self.alpha = 1; 
     self.darkView.alpha = .5; 
    }]; 

    [UIView animateWithDuration:1.0 delay:0.45 options:(UIViewAnimationOptions) UIViewAnimationCurveEaseInOut animations:^{ 
     [self setupAnimation]; 
    }    completion:nil]; 
} 


- (void) cancelView { 

    [UIView animateWithDuration:0.35 delay:0 options:UIViewAnimationCurveEaseInOut animations:^{ 
     self.cancelButton.frame = CGRectMake (self.frameForCancelButton.origin.x, self.frameForCancelButton.origin.y + kAnimationOffset, self.frameForCancelButton.size.width, self.frameForCancelButton.size.height); 
     self.collectionView.frame= CGRectMake(self.frameForCollectionView.origin.x, self.frameForCollectionView.origin.y + kAnimationOffset, self.frameForCollectionView.size.width, self.frameForCollectionView.size.height); 
    } completion:^(BOOL finished) { 
     [self removeFromSuperview]; 
    }]; 
    ; 
} 

- (void) setupAnimation { 
    self.cancelButton.alpha = 1; 
    self.collectionView.alpha = 1; 

    self.cancelButton.frame = self.frameForCancelButton; 
    self.collectionView.frame = self.frameForCollectionView; 

    [self addShapeLayer]; 

} 

- (void)addShapeLayer 
{ 
    self.shapeLayer = [CAShapeLayer layer]; 
    self.shapeLayer.path = [[self pathAtInterval:0.0] CGPath]; 
    self.shapeLayer.fillColor = [[UIColor redColor] CGColor]; 
    self.shapeLayer.lineWidth = 3.0; 
    self.shapeLayer.strokeColor = [[UIColor redColor] CGColor]; 
    [self.collectionView.layer insertSublayer:self.shapeLayer atIndex:0]; 

} 

- (UIBezierPath *) pathAtInterval:(NSTimeInterval) interval { 
    UIBezierPath *path = [UIBezierPath bezierPath]; 

    [path moveToPoint:CGPointMake(self.collectionView.frame.origin.x,self.collectionView.frame.origin.y)]; 

    [path addQuadCurveToPoint:CGPointMake(self.collectionView.frame.size.width, self.collectionView.frame.origin.y) controlPoint:CGPointMake(self.collectionView.frame.size.width/2, self.collectionView.frame.origin.y-30)]; 


    return path; 
} 
+0

使用'UIBezierPath'。如果您顯示自己的代碼並針對您遇到的特定問題提出問題,則可能有人可以幫助您。 – 2015-02-23 19:51:32

+0

好的。我添加了代碼。謝謝!! – Rodrigo 2015-02-23 20:16:52

回答

1

您的動畫塊不包含任何動畫。您應該將設置移動到動畫塊之外,然後在其中進行動畫製作。

[self setupAnimation]; 
[UIView animateWithDuration:1.0 delay:0.45 options:(UIViewAnimationOptions) UIViewAnimationCurveEaseInOut animations:^{ 
    // animate something 
}    completion:nil]; 

除此之外,您預期的動畫沒有一個線性發展,這意味着you'l要使用animateKeyframesWithDuration代替。

[UIView animateKeyframesWithDuration:1.0 delay:0.45 options:UIViewAnimationCurveEaseInOut animations:^{ 
    for (NSInteger i = 0; i < 10; i++) { 
    [UIView addKeyframeWithRelativeStartTime:i/10.0 
          relativeDuration:1.0/10.0 
            animations:^{ 
             self.shapeLayer = [self pathAtInterval:i/10.0]; 
            }]; 
    } 
} completion:nil]; 
0

1,將您創建的路徑添加到CAShaperLayer對象中; 2,請參閱CAShapeLayer類中的「strokeStart」和「strokeEnd」屬性; 3,將一個名爲「CABasicAnimation」的動畫添加到你的Layer obj中。