I have solved an issue where a SegmentControl wasn't scrolling with my table view. I did this by embedding the control in my table view, like so:
UIView *headerView = [[UIView alloc] init ];
[headerView addSubview:resultsSegment];
self.tableView.tableHeaderView = headerView;
This works nicely......
but now I can't click on the segment control. Now it's embedded does that mean it's essentially BEHIND the TableView as far as a users touch is concerned?
Any ideas on how to make the SegmentControl "clickable" again?
Thanks