首先,当我说我已经尝试了所有的建议时,请相信我。但我愿意再试一次,所以随时评论/回答。目前我的代码如下:
- (void) viewDidAppear:(BOOL)animated {
[super viewDidAppear:animated];
CGRect frame = CGRectMake(tblView.frame.origin.x, tblView.frame.origin.y, tblView.frame.size.width, tblView.contentSize.height);
[tblView setFrame:frame];
[tblView reloadData];
CGRect contentRect = CGRectZero;
for (UIView *view in scrollView.subviews)
contentRect = CGRectUnion(contentRect, view.frame);
[scrollView setContentSize:contentRect.size];
scrollView.frame = CGRectMake(scrollView.frame.origin.x, scrollView.frame.origin.y, [[UIScreen mainScreen] bounds].size.width, [[UIScreen mainScreen] bounds].size.height);
}
我的@interface是:
@interface VH_HotelsListViewController : UIViewController <UITableViewDataSource, UITableViewDelegate> {
IBOutlet UIScrollView *scrollView;
IBOutlet UIImageView *imageView;
IBOutlet UITableView *tblView;
NSMutableArray *hotelArray;
}
我已将故事板表视图绑定到上面的tblView。我的表视图是在运行时从我的数据库填充的,所以我知道那里没有问题。
从上面可以看到,我得到了表格视图的内容大小,并试图将框架调整到相同的高度。不过,我准确地获取了内容大小,因为它将我的滚动视图调整到该高度。遗憾的是,它对表格视图没有任何作用。虽然如果我在设置之后NSLog(@"Table View Height: %g", tblView.frame.size.height)
,我会得到与内容大小Table View Height: 3166
相同的数字。所以它就像是在工作,但实际上并没有扩展它。
答案 0 :(得分:1)
好吧,我没有答案,所以我更新了我的项目。我完全从我的故事板中取出UITableView
,现在只需在代码中创建它:
- (void)viewWillAppear:(BOOL)animated {
[super viewWillAppear:animated];
tblView = [[UITableView alloc] initWithFrame:CGRectMake(0, 150, 320, 500) style:UITableViewStyleGrouped];
tblView.dataSource = self;
tblView.delegate = self;
[scrollView addSubview:tblView];
}
然后在viewDidAppear
:
- (void) viewDidAppear:(BOOL)animated {
[super viewDidAppear:animated];
CGRect frame = CGRectMake(tblView.frame.origin.x, tblView.frame.origin.y, tblView.frame.size.width, tblView.contentSize.height);
tblView.frame = frame;
[tblView reloadData];
}
这似乎有效。