Hi all,
First Scenario : Suppose we have a first view as FirstView. in this view(FirstView) we add another view(SecondView) having exactly same frame as FirstView as
[FirstView addSubView:SecondView];
Now touch event of which view(FirstView or SecondView) will get called?
Second Scenario :
suppose after adding SecondView(frame exactly same as FirstView) to FirstView I write [FirstView:sendSubView];
Now touch event of which view will get invoked?