drawrect

draw line/point on existing UIView without drawRect?

I created line chart. Now I need to display point on this chart when I tap the screen. What would be the best method? Do I need to call drawRect again, draw whole chart with marked point? I'm thinking about something like transparent layer over the chart UIView. Can I create another transparent UIView and put it on the position of my c...