Martin Wickman
Martin Wickman

Reputation: 19925

How do I comfortably use CGColor in an NSArray with CGGradient

I have two UIColor instances and want to use them creating a gradient. The code works, but it gives me a warning when I call the arrayWithObject: constructor:

warning: Semantic Issue: Incompatible pointer types sending 'CGColorRef' (aka 'struct CGColor *') to parameter of type 'id'

I suspect there lurks other issues related to the warning (leaks for instance). Here is the snippet:

   UIColor *startColor, *endColor; 
   // ...
   NSArray *colors = [NSArray arrayWithObjects:
                      startColor.CGColor, endColor.CGColor, nil];
   CGGradientRef gradient = CGGradientCreateWithColors(colorSpace, 
                     (CFArrayRef) colors, NULL);

How can I rewrite the code to get rid of this warning in a safe way ?

Upvotes: 11

Views: 7657

Answers (1)

visakh7
visakh7

Reputation: 26400

Try this

UIColor *startColor, *endColor; 
   // ...
   NSArray *colors = [NSArray arrayWithObjects:
                      (id)startColor.CGColor, (id)endColor.CGColor, nil];
   CGGradientRef gradient = CGGradientCreateWithColors(colorSpace, 
                     (CFArrayRef) colors, NULL);

Upvotes: 25

Related Questions