I have two UIWebView objects that share the same delegate.
I want the delegate methods to distinguish between the two UIWebView objects.
Right now I’m setting the background color of one of them to red and using that property to distinguish between the two, but its messy. There must be a better way…
Thanks!
I’d keep a pointer to each UIWebView instance in the delegate and just compare them in the delegate methods. e.g.,