`CAGradientLayer` is a special purpose `CALayer` subclass for drawing animatable linear gradients. It's a part of the QuartzCore framework and is available for both iOS (since iOS 3.0) and OS X (since OS X v10.6 "Snow Leopard"). The gradient is specified using four properties for the `colors`, ...

learn more… | top users | synonyms

0
votes
1answer
33 views

UILabel add GradientLayer [duplicate]

To add a background gradient to a UILabel I use the following code. Before using the gradient, UILabel Appears like this. Now, to add a gradient I use the following code. CAGradientLayer ...
0
votes
1answer
29 views

CAGradientLayer giving EXC_BAD_ACCESS?

I'm trying to make the ends of my UIScrollView fade out - just like one would a UITableView. I found the below code. I'm using it in a UIScrollView subclass in a method called inside ...
-1
votes
0answers
36 views

UIScrollview with inner gradient

Is it possible to have a inner gradient effect to a UIScrollView so that they are uniform around the content size of the UIScrollView.
0
votes
2answers
42 views

CAGradientLayer Redraw Method [closed]

I've got a draw method which draws a gradient layer: CAGradientLayer *bgLayer = [BackgroundLayer morningGradient]; bgLayer.frame = self.view.bounds; [self.view.layer ...
1
vote
1answer
34 views

Weird CAGradientLayer bug on UIButton

I'm trying to apply a small gradient to all the buttons in my ios app. I created a category for UIButton where I added this function which basically add subtitle, border and a gradient layer to the ...
0
votes
0answers
31 views

Animate gradient on load

I've created a progress bar with PaintCode and was wondering if there was any way that I could have this gradient animate and stop when it's to the position it needs to be. ProgressBar - ...
1
vote
1answer
52 views

UIView Gradient using CAGradientLayer always blue

I am trying to create a UIView with a dark gray gradient: UIView *sectionSpacer = [[UIView alloc] init]; sectionSpacer.backgroundColor = [UIColor clearColor]; CAGradientLayer *gradient = ...
0
votes
1answer
91 views

Adding Gradient Hides UILabel Text In UITableViewCell

I am trying to add gradient layer behind the UILabel's text which resides in a custom UITableViewCell. Problem is that gradient is hiding my label's text. I have already visited this link, but it is ...
0
votes
0answers
66 views

Draw CAGradient within MKPolyLineView

i have just a problem with my MKPolyLineView. I simply try to make a color gradient to the Polyline, but with CAGradient it doenst work. I subclasses MKPolylineView and redrawing in - ...
0
votes
1answer
122 views

How to set gradient color to the background of UILabel in iPhone

I am using the following code to set the gradient color to the background of label but no effect what i am doing wrong? Code is here: [self.teamName setTextColor:[UIColor whiteColor]]; ...
0
votes
1answer
103 views

CALayer issues with QuartzCore

I am using CAGradientLayer to style my uibuttons. Basically have three buttons in a cell. When I set CAGradientLayer properties on first, it works fine (I get a gradient). However, when I apply a ...
3
votes
1answer
185 views

How to Create a UIButton with Gradient and Highlighting?

I am trying to create a UIButton with a gradient background. I got that work fine but the button does not highlight (default behavior is for the button to darken) when selected. here's my button: ...
0
votes
1answer
193 views

Add CAGradient Layer behind UIImageView iOS

I am trying to add a gradient behind a transparent image. I do this on the map leftCallOutAccessoryView however no matter what I try the gradient layer always shows above the imageView and want it to ...
0
votes
3answers
206 views

Set Selected State of CAGradient UIButton in iOS

Hi I have made a custom button in code using corner radius CAGradientLayer and border colour in one of my view controllers like the below: phoneButton = [CustomButton ...
1
vote
0answers
530 views

CAGradientLayer not working in iOS 6

I did use CAGradientLayer to customize the UIButton in iOS 5, It worked fine for me and same thing to get Customized button and when I use the same code in the iOS 6 it display me only white color on ...
0
votes
0answers
44 views

CAGradient setMask removing UIImageView

I'm using UIImageView's built in Edge Detection to create a mask on my CAGradientLayer. In a nut-shell, I would like the CAGradientLayer to fit perfectly over the UIImageView and be clear around the ...
0
votes
0answers
144 views

SuperView of the ImageView becomes null after adding sublayers but the image is still visible on screen, how..?

I have an imageView, I have added it as a subView to a UIView. I download an image using (FYI, am using MKNetwrkKit) "UIImageView+MKNetworkKitAdditions.h". add a mask to the ImageView and remove it ...
1
vote
1answer
913 views

How to add CAGradientLayer to UIButton

I am trying to modify a button's look and spent a long while trying to figure out why I can not apply a gradient to it like with this simple code below: [self.playButton setTitleColor:[UIColor ...
0
votes
1answer
100 views

Display gradient along left edge of UIView

I am trying to draw a shadow along the side of a UIView so that it gives it a 3D-esque appearance. A variation of this works for a vertical gradient along the bottom of another view, however I am ...
0
votes
0answers
220 views

how to use locations,startPoint,endPoint of CAGradientLayer?

I have try to use CAGradientLayer as a background color, but I can not understand what the properties of CAGradientLayer mean. Then I can't do a cool effect. So how can I use them?
0
votes
0answers
44 views

how to set a shader color both from top to bottom and from left to right in a CAGradientLayer?

I want to draw a UiView's background use shader color.So I find the QuartzDemo.But I want to set the shader from white to red at horizontal and from white to black at vertical direction. What can I do ...
0
votes
1answer
276 views

Custom cell sublayers and UITableViewCell selection

How can I make a custom sublayer in a UITableViewCell disappear in setSelected:animated:? Context: I've added a custom background layer to my UITableViewCell by adding a CAGradientLayer inside of ...
1
vote
1answer
140 views

UIProgressView with gradient

Is there a way to make progressTintColor make a gradient one? Specifically I would like to make it a gradient color from green to red - standard temperature mode. Adding sublayer didn't work as it ...
1
vote
1answer
1k views

iPhone iOS custom UIButton with CAGradientLayer, how to make it indicate touch?

I have a custom-styled UIButton within my view controllers that is achieved by customizing a UIButton with a CAGradientLayer, rounding corners and adding a border around the layer. I like the look ...
1
vote
1answer
465 views

Applying CAGradient mask layer to UITextView

I've got a UITextView, with scrollable text. I'm trying to apply a gradient layer to it, so the bottom of the visible text is always slightly faded out. Here's my code: CAGradientLayer *maskLayer = ...
0
votes
1answer
367 views

UIButton with a gradient layer slow

I am customizing the UIButton with GradientLayer. I see a performance issue as view loading slowly and looks like a Jerk effect. Also when changing the orientation its same. I am using this code for ...
6
votes
3answers
1k views

Button background and gradient change since iOS6

For an app I had to create a UIButton filled with a gradient and a background image. Everything worked fine until I upgraded the OS from iOS 5.1 to the recently released iOS 6. Here are two ...
1
vote
1answer
113 views

UIPageViewController with gradient overlay?

I need to create a book-like app and want to use UIPageViewController. (iPad, horizontal layout with two pages (UIPageViewControllerSpineLocationMid). To make the screen more appealing I would like ...
1
vote
3answers
173 views

CALayer setCornerRadius still leaves white corners underneath

I'm trying just to create a simple gradient with a label on it that I can overlay on top of a MKMapView. I looked on SO and saw I could use CAGradientLayer rather than override drawRect in UIView. I ...
-1
votes
1answer
293 views

Added CAGradientLayer, getting this in my UIView dealloc: [CALayer release]: message sent to deallocated instance

Here there, I have a custom UIView. This view acts as a activity indicator but as label above the UIActivityIndicatorView. In the init, I add a CAGradientLayer. I allocate and initialize it and ...
3
votes
1answer
438 views

CALayer not rendering background color on devices, works in simulator

I've created a custom button out of layers. I create a bunch of layers in init. Everything works as expected until I go to modify* them. It is only on the actual devices that the problem occurs, on ...
0
votes
1answer
558 views

CAGradientLayer type — What's the Point?

According the iOS CAGradientLayer docs, the type property only has a single valid value, kCAGradientLayerAxial, which also happens to be the default. The purpose of this property is a mystery to me, ...
2
votes
0answers
218 views

Animating CAGradientLayer

I'm using... NSArray *colors = [NSArray arrayWithObjects:(id) colorOne.CGColor, colorTwo.CGColor, nil]; CAGradientLayer *headerLayer = [CAGradientLayer layer]; headerLayer.colors = colors; ...
1
vote
1answer
564 views

Custom CAGradientLayer doesn't animate

I've made a custom class of CAGradientLayer (added radial gradient option). I works but I can't figure out why I can't animate the colors. Here's my code. The animation is a simple CABasicAnimation ...
9
votes
3answers
2k views

UIView transparent gradient

Given an arbitrary UIView on iOS, is there a way using Core Graphics (CAGradientLayer comes to mind) to apply a "foreground-transparent" gradient to it? I can't use a standard CAGradientLayer because ...
5
votes
1answer
2k views

How to apply CAGradientLayer as mask of another CALayer?

I have a view, which has a CALayer. When I create a CAGradientLayer and apply it as the mask of that view's CALayer, nothing happens. Why? In -initWithFrame: of the view I do this: CAGradientLayer ...
2
votes
1answer
325 views

CAGradientLayer crashes with “exc_bad_access” in simplest possible use case

A plain UIView subclass, with ONLY the following code: - (id)initWithCoder:(NSCoder *)aDecoder { self = [super initWithCoder:aDecoder]; if (self) { // Initialization code ...
0
votes
2answers
152 views

EXC_BAD_ACCESS on animationForKey:

I'm trying to use a recent feature of the Scintilla component, which provides OSX-like text-highlighting effect (the yellow animated bouncing box), and I'm stuck with an error that pops up ...
1
vote
2answers
482 views

iOS UITableView: usingCAGradientLayer causes the initial objects to not appear in table view

As I discussed in the question here, I tried to set the background color of a UITableView using CAGradientLayer. I am populating the UITableView with some values in NSMutableArray like this... - ...
0
votes
1answer
4k views

iOS UITableView: assign background color as gradient using CAGradientLayer

I just started playing with the Master-Detail view template in Xcode 4.3 and I am trying to change the background color of master and set it to a color gradient. Here is what I tried: Colors.m ...
1
vote
2answers
3k views

Filling a path with a gradient on iOS

On a CAShapeLayer, I've drawn a closed UIBezierPath. I can fill this shape by setting the fillColor, however I want to fill the shape with a gradient. How can I set up the CAGradientLayerso it clips ...
7
votes
2answers
1k views

CAGradientLayer properties not animating within UIView animation block

I have a feeling I'm overlooking something elementary, but what better way to find it than to be wrong on the internet? I have a fairly basic UI. The view for my UIViewController is a subclass whose ...
0
votes
1answer
657 views

Change gradient for UIButton for different states

Recently I've encountered a problem. I have a UIButton and 2 images for it. 1 for normal state and 1 for highlighted. The problem is that normal state image is transparent and I should use gradient to ...
10
votes
1answer
2k views

UIButton with GradientLayer obscures image and darkens gradient

I have an UIButton here where I'd like to have a gradient as the background below the image (symbol with transparent background), but I'm facing two different problems. First of the CAGradientLayer ...
1
vote
2answers
450 views

Why is my CAGradientLayer animating all changes?

I have a CAGradientLayer that I want to scale as the user drags there finger. However, when I set the frame, the layer animates to the new size. This happens with other properties, too, including ...
1
vote
2answers
1k views

Custom background drawing in an grouped UITableViewCell

I'm having some trouble drawing a custom gradient background in a UITableViewCell when the style is set to 'grouped' and the cell is first or the last one of the section. My approach is to simply ...
7
votes
1answer
2k views

Objective C - CAGradientLayer covers the text in UILabel?

I am trying to add a gradient layet to my UILabel for some reasons the CAGradientLayer covers my text. Am I doing anything wrong - (void)viewDidLoad { [super viewDidLoad]; CAGradientLayer ...