How to use UITableView inside UIScrollView and receive a cell click?

Answer : Don’t do this.

UITableview is inherited from —-> UIScrollView : UIView : UIResponder : NSObject

Apple says :

Important: You should not embed UIWebView or UITableView objects in
UIScrollView objects. If you do so, unexpected behavior can result
because touch events for the two objects can be mixed up and wrongly
handled.

Leave a Comment