vote up 0 vote down star

Can anyone help me with this. I need to do custom drawing code in -drawRect so I subclassed UIImage. How would I initialize my custom UIImage with an image? Say I override the imageName method, what would I need to do in this method? After initializing can I add it to a UIImageview like so initwithImage:?

flag

0% accept rate

1 Answer

vote up 0 vote down

If you're going to do custom drawing, don't subclass UIImage, subclass UIView, and add your subclass view to wherever you want the custom drawing to be. Do all of your drawing directly in the -drawRect: method of UIView. An example of how to draw a diagonal blue line:

-(void) drawRect:(CGRect)rect {
  CGContextRef g = UIGraphicsGetCurrentContext();
  CGContextMoveToPoint(g,self.frame.origin.x,self.frame.origin.y);
  [[UIColor blueColor] setStroke];
  CGContextAddLineToPoint(g,CGRectGetMaxX(self.frame),CGRectGetMaxY(self.frame));
}
link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.