Я пытаюсь создать эффект постепенного исчезновения для границы UIView, но он не работает.При попытке сделать следующий эффект для цвета фона, он работает отлично.Вот код, который я разработал:
[UIView animateWithDuration:3.0f
animations:^ {
[UIView beginAnimations:nil context:nil];
[UIView setAnimationDuration:0.5];
self.layer.borderColor = [[UIColor redColor] CGColor];
self.layer.borderWidth = 1.5f;
[UIView commitAnimations];
}
completion:^(BOOL finished){
[UIView beginAnimations:nil context:nil];
[UIView setAnimationDuration:0.8];
self.layer.borderColor = [[UIColor whiteColor] CGColor];
self.layer.borderWidth = 1.5f;
[UIView commitAnimations];
}];