17

如何在 UIViewController 中执行以下操作(包含 tableview 作为子视图)

我最初有一个 UIViewController 显示预览部分(UIView)

//Setup container for preview section
UIView *tempContainer = [[UIView alloc]initWithFrame:CGRectMake(0, 20, 320, 100)];
self.preview_answer_container = tempContainer;
self.preview_answer_container.backgroundColor = [UIColor clearColor];
[tempContainer release];
[self.view addSubview:self.preview_answer_container];

我还在下面添加了一个 UITableView (和一个搜索栏)

//setup tableview
UITableView *tempTable = [[UITableView alloc]initWithFrame:CGRectMake(0,44 ,320,self.view.frame.size.height - 44)];
self.tagFriendsTableView = tempTable;
self.tagFriendsTableView.delegate = self;
self.tagFriendsTableView.dataSource = self;
[tempTable release];

[self.view addSubview:self.tagFriendsTableView];

在此处输入图像描述

使用此设置,我的滚动区域很小(预览部分下方只有静态区域)

如何修改我的代码,以便 1)我可以向上滚动整个页面,即预览部分和 tableview 将一起向上滚动 2)当搜索栏到达顶部(导航栏下方)时,整个滚动将停止(见截图),但 UITableView 中的内容仍然可以滚动

在此处输入图像描述

编辑:

为 UIScroll 视图添加了代码。然而,对我来说什么都没有改变。我的代码有什么问题?

//setup scroll view
UIScrollView *scroll = [[UIScrollView alloc] initWithFrame:CGRectMake(0, 0, self.view.frame.size.width, self.view.frame.size.height)];

//Search
UISearchBar *tempBar = [[UISearchBar alloc]initWithFrame:CGRectMake(0, 120 + 20, 320, 44)];
self.sBar = tempBar;
[tempBar release];
self.sBar.delegate = self;
self.sBar.tintColor = [UIColor colorWithHexString:@"#b6c0c7"];
self.sBar.placeholder = @"Search for FB and DM friends";

[scroll addSubview:sBar];

//setup tableview
UITableView *tempTable = [[UITableView alloc]initWithFrame:CGRectMake(0,144 + 20 + 20 ,320,self.view.frame.size.height - 144 - 20 - 20 - 44)];
self.tagFriendsTableView = tempTable;
self.tagFriendsTableView.delegate = self;
self.tagFriendsTableView.dataSource = self;
[tempTable release];

//Add the scroll view to the parent view
[scroll addSubview:self.tagFriendsTableView];

scroll.contentSize = CGSizeMake(self.view.frame.size.width, self.view.frame.size.height);
[self.view addSubview:scroll];
[scroll release];
4

6 回答 6

33

我有一个解决方案给你

只使用 tableView 就足够了

  1. 将“预览视图”设为 tableView 的 HeaderView

  2. 将“搜索栏”作为 tableView 的部分标题视图

你可以做到完美:)

于 2012-05-09T02:22:03.293 回答
4

不需要任何花哨或自定义,使用 aUITableView并将您的预览窗格设置为 ,tableHeaderView并将您的搜索字段设置为tableView:viewForHeaderInSection:在您的UITableViewDelegate.

在滚动事件期间,表格标题将滚动到顶部。如果可见,部分标题会在该部分的整个时间内浮动并保持可见。如果您只有 1 个部分,则部分标题将一直存在。

于 2012-05-09T02:33:22.397 回答
2

或者您可以执行以下步骤: 1. 禁用 tableView 的滚动。2. 为 tableView 设置高度约束和连接到它的 IBOutlet。3. 在重新加载数据之前,计算表格高度。heightConstraint.constant = (heightOfTheSingleTableViewCell) * numOfRows

于 2014-09-22T20:28:36.780 回答
1

是的,您可以使用“tableView:viewForHeaderInSection”。

于 2013-09-12T09:40:20.993 回答
1

您必须将 UITableView 嵌入到具有屏幕大小减去导航栏的 UIScrollView 中。将 UIScrollViews 背景设置为 clearColor 以允许 UITableView 上方的内容保持可见。

于 2012-05-09T01:03:33.433 回答
0
scroll.contentSize = CGSizeMake(self.view.frame.size.width, self.view.frame.size.height);

它无法滚动,因为 contentSize 不够大。您需要将滚动视图顶部的内容的长度增加到总长度。

于 2015-02-10T23:40:50.070 回答