Tôi cố gắng để thay đổi bán kính góc của một nút (OpenNoteVisible.layer) theo cách sau:Thay đổi cornerRadius sử dụng Core Animation
CABasicAnimation *animation = [CABasicAnimation animationWithKeyPath:@"cornerRadius"];
animation.timingFunction = [CAMediaTimingFunction functionWithName:kCAMediaTimingFunctionLinear];
animation.fromValue = [NSNumber numberWithFloat:10.0f];
animation.toValue = [NSNumber numberWithFloat:0.0f];
animation.duration = 1.0;
[animation.layer setCornerRadius:140.0];
[OpenNoteVisible.layer addAnimation:animation forKey:@"cornerRadius"];
Nhưng mã này đưa ra một lỗi ở dòng [animation.layer setCornerRadius : 140.0]; Tôi không thể hiểu tại sao. Tôi đã nhập khung lõi thạch anh.
Bạn có thể thiết lập bán kính góc để nút. Vì vậy, sử dụng các đối tượng nút – SRI