- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
{
UITableViewCell *cell = [[[UITableViewCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:@"cellId"] autorelease];
UIView *view = [[[UIView alloc] initWithFrame:CGRectMake(0, 0, 320, 100)] autorelease];
UIScrollView *scrollView = [[[UIScrollView alloc] initWithFrame:CGRectMake(0, 0, 320, 100)] autorelease];
scrollView.contentSize = CGSizeMake(2000, 100);
[scrollView setPagingEnabled:YES];
[cell addSubview:view];
[view addSubview:scrollView];
return cell;
}
这对我来说很好。
这就是我初始化表格视图的方式
self.viewController = [[[ViewController alloc] initWithStyle:UITableViewStyleGrouped] autorelease];
尝试简化你的代码,直到你能弄清楚你做错了什么。