我添加了一个 CALayer (CAGradientLayer) 作为 UIImageView 的子视图。我已经成功地将它添加为 UIImageView 的子层,但是在方向上我想调整层的宽度。我该怎么做?我尝试了以下代码但没有成功:
- (void) willAnimateRotationToInterfaceOrientation:(UIInterfaceOrientation)toInterfaceOrientation duration:(NSTimeInterval)duration
{
[self.imageOverlay setFrame:self.backgroundImageView_.bounds];
[self.gradientOverlay setFrame:self.view.bounds];
}