This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
UIView *view = [[[UIView alloc] initWithFrame:CGRectMake(0, 0, 320, 100)] autorelease]; | |
CAGradientLayer *gradient = [CAGradientLayer layer]; | |
gradient.frame = view.bounds; | |
gradient.colors = [NSArray arrayWithObjects:(id)[[UIColor blackColor] CGColor], (id)[[UIColor whiteColor] CGColor], nil]; | |
[view.layer insertSublayer:gradient atIndex:0]; |
NewerOlder