How to call drawRect: method in super view from subview?

669 Views Asked by At

I am showing a popover from a custom view like this:

enter image description here

And when the user taps on the popover I must draw something on my custom view (from which the popover is shown).

I try to make [myPopover.view.superView setNeedsDisplay]; but it don't work. May be I can try more anything for reload my super view or call in it drawRect: method?

Thank you!

1

There are 1 best solutions below

1
On

Maybe this? [myPopover.superView drawRect:]