I have a view with a border of 10 pixels drawn on the method.
I need to update the border color and I use [self setNeedsDisplay]
to make it redraw
the view.
Since I need to update only the border I want to use : [self setNeedsDisplayInRect:rect]
so it will draw only the border.
How can I get a rect of only the border with out the other areas of the view?
Thanks Shani