我以编程方式将 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 重载数据];
[scrollView addSubview:eappTable];