I have a very simple app that processes touches on a UIImageView derived view.
The view has an array of rectangle coordinates that act as buttons.
Since this is a simple app I handle all the touch events right in my UIImageView derived class.
I need to init the array of image coordinates which is an instance variable.
I tried overriding several methods including init, but none of the ones I tried are called.
What is the proper method to override to initialize instance variables in a UIImageView derived class?
Thanks!