我以编程方式向tableview添加了tableview,但它没有滚动。虽然我尝试使用XIB进行相同的操作。但工作正常。

这是我的代码

CGRect框架= CGRectMake(30,30.0f,900,300.0f);

eappTable = [[UITableView alloc] initWithFrame:[[UIScreen mainScreen] applicationFrame]  style:UITableViewStylePlain];

eappTable.autoresizingMask = UIViewAutoresizingFlexibleHeight|UIViewAutoresizingFlexibleWidth;

eappTable.delegate = self;

eappTable.dataSource = self;

eappTable.scrollEnabled = YES;

eappTable.scrollsToTop = YES;

[eappTable reloadData];
[scrollView addSubview:eappTable];

最佳答案

eappTable = [[UITableView alloc] nitWithFrame:YourSize style:Table_Style]];
eappTable.delegate = self;
eappTable.dataSource = self;
eappTable.scrollEnabled = YES;
[scrollView addSubview:eappTable];

并设置self.scrollView.contentSize

09-06 08:53