I am trying to load several UITableViews in UIScrollView using the following code
int x = 0;
for (int i = 0; i < 14; i++) {
UITableView *testTableView = [[UITableView alloc] initWithFrame:CGRectMake(x, 0, 150, scrollView.bounds.size.height)];
testTableView.dataSource = self;
testTableView.delegate = self;
[testTableView setTag:i];
[testTableView reloadData];
[scrollView addSubview:testTableView];
x+=155;
}
[scrollView setContentSize:CGSizeMake(x, scrollView.bounds.size.height)];
The problem with this, the uitableview is not responding to any of the delegate methods.. Any ideas??

