我有一个nextbutton
在视图中调用的 UIButton。我已经autoresizing
在Interface Builder
. 在 中viewDidLoad
,我调用这个方法来为这个按钮设置渐变。gradientLayer
非常适合应用程序的nextbutton
纵向模式,但是,它不适合横向模式。对此有何建议?多谢。
-(void)toSetGradientNextButtons{
CAGradientLayer* gradientLayer = [[CAGradientLayer alloc] init];
[gradientLayer setBounds:[nextbutton bounds]];
[gradientLayer setPosition:CGPointMake([nextbutton bounds].size.width/2,[nextbutton bounds].size.height/2)];
[gradientLayer setColors:[NSArray arrayWithObjects:(id)[[UIColor blueColor] CGColor],(id)[[UIColor cyanColor] CGColor], nil]];
[[nextbutton layer] insertSublayer:gradientLayer atIndex:0];
[gradientLayer release];
}