I've got a UIViewController and an own class, a subclass of UIView.
In my ViewController I make a instance of the uiview. If I tap the uiview a function gets called within it and an overlay appears. TO get rid of that overlay later the user has to tap somewhere on the screen(besides the instance of my class)
How do I tell my class to dismiss the overlay? I already thought of delegate.
So my thoughts were to make a MyUIViewControllerdelegate. If my viewcontroller receives a tap the delegate should be called. THe only problem is how do I tell my subclass that it should receive that delegate? I Have no instance of my viewcontroller in my subclass so I can not set the delegate.
Any Ideas? Hope my problem is clear :)
Thanks a lot
MyUIView.h:
MyUIView.m:
MyUIViewController.h:
MyUIViewController.m: