2016-12-30 2 views

答えて

0

私はUIViewのアニメーションをしようとしたとアニメーションの同じ種類を取得しよう。

ここで私が試したコードです。

-(void) setGlowToView{ 

UIView *view = [[UIView alloc] initWithFrame:CGRectMake((self.frame.size.width-7.f)/2.f, (self.frame.size.height-7.f)/2.f, 7.f, 7.f)]; 
view.backgroundColor = [UIColor whiteColor]; 
[self addSubview:view]; 

[UIView animateWithDuration:1.5 delay:0.0 options:UIViewAnimationOptionAutoreverse | UIViewAnimationOptionRepeat animations:^{ 

    view.alpha = 0.8; 
    view.layer.cornerRadius = 2.2; 
    view.transform = CGAffineTransformMakeScale(1.8,1.8); 
} completion:^(BOOL finished){ 
}]; 
} 
関連する問題