弹出窗口中的表格视图不滚动
Posted
技术标签:
【中文标题】弹出窗口中的表格视图不滚动【英文标题】:table view in popover is not scrolling 【发布时间】:2013-01-12 10:49:26 【问题描述】:我有下面的代码来显示带有 tableview 的弹出窗口,它工作得很好。
tableview 显示 13 个数字,我可以滚动并看到相同的数字,但是当我在模拟器上释放鼠标触摸时,它会返回顶部。
它不会停留在它显示的行,而是带我回到第 1 到第 10 行。
如何让它在滚动后保持在原位。或以下代码中的任何修复。
提前致谢。
- (IBAction)btn:(id)sender
if([popoverController isPopoverVisible])
[popoverController dismissPopoverAnimated:YES];
return;
//build our custom popover view
UIViewController* popoverContent = [[UIViewController alloc]init];
UIView* popoverView = [[UIView alloc] initWithFrame:CGRectMake(0, 0, 320, 680)];
popoverView.backgroundColor = [UIColor blackColor];
numbers = [[NSMutableArray alloc] initWithObjects:@"1",@"2", @"3",@"4",@"5", @"6",@"7", @"8", @"9",@"10",@"11", @"12",@"13",nil];
UITableView *tblViewMenu = [[UITableView alloc]initWithFrame:CGRectMake(0, 0, 320, 680)];
tblViewMenu.delegate = self;
tblViewMenu.dataSource = self;
tblViewMenu.rowHeight = 32;
[popoverView addSubview:tblViewMenu];
popoverContent.view = popoverView;
popoverContent.contentSizeForViewInPopover = CGSizeMake(320, 320);
popoverController = [[UIPopoverController alloc]
initWithContentViewController:popoverContent];
[popoverController presentPopoverFromRect:self.btn.frame inView:self.view permittedArrowDirections:UIPopoverArrowDirectionUp animated:YES];
- (NSInteger)numberOfSectionsInTableView:(UITableView *)tableView
// Return the number of sections.
return 1;
- (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section
// Return the number of rows in the section.
return [numbers count];
// Customize the appearance of table view cells.
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
static NSString *CellIdentifier = @"Cell";
UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:CellIdentifier];
if (cell == nil)
cell = [[UITableViewCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:CellIdentifier] ;
// Configure the cell...
NSString *color = [numbers objectAtIndex:indexPath.row];
cell.textLabel.text = color;
return cell;
#pragma mark -
#pragma mark Table view delegate
- (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath
NSString *number = [numbers objectAtIndex:indexPath.row];
NSLog(@"%@",number);
[popoverController dismissPopoverAnimated:YES];
我想我需要更改以下值:
UIView* popoverView = [[UIView alloc] initWithFrame:CGRectMake(0, 0, 320, 680)];
UITableView *tblViewMenu = [[UITableView alloc]initWithFrame:CGRectMake(0, 0, 320,680)]];
如果我使用
UIView* popoverView = [[UIView alloc] initWithFrame:CGRectMake(0, 0, 320, 320)];
然后
UITableView *tblViewMenu = [[UITableView alloc]initWithFrame:CGRectMake(0, 0, 320,320)]];
但是当我向下滚动时,它会一直到达顶行。它不会停留在滚动到的同一行中。
【问题讨论】:
更改 popoverContent.contentSizeForViewInPopover = CGSizeMake(320, 680); 但这只会放大视图,但如果有 50 行,则上述修复将不起作用。我只是希望它停留在该特定行。我该怎么做?再次感谢。 tableview中基本上没有滚动。 【参考方案1】:正确使用自动调整大小!
Popover - 有内容大小
popoverView
- 它的初始大小应该与popover的内容大小相同并使用
UIViewAutoresizingFlexibleWidth | UIViewAutoresizingFlexibleHeight
tblViewMenu
- 它的初始大小应该与其祖先(popoverView
)的大小相同,再次使用UIViewAutoresizingFlexibleWidth | UIViewAutoresizingFlexibleHeight
您的表格没有滚动,因为它太大了,不需要滚动。只有弹出框在剪裁它。
CGSize contentSize = CGSizeMake(320, 320);
UIView* popoverView = [[UIView alloc] initWithFrame:CGRectMake(0, 0, contentSize.width, contentSize.height)];
popoverView.autoresizingMask = (UIViewAutoresizingFlexibleWidth | UIViewAutoresizingFlexibleHeight);
UITableView *tblViewMenu = [[UITableView alloc]initWithFrame:popoverView.bounds];
tblViewMenu.autoresizingMask = (UIViewAutoresizingFlexibleWidth | UIViewAutoresizingFlexibleHeight);
popoverContent.contentSizeForViewInPopover = contentSize;
【讨论】:
请确保您了解那里发生的情况。学习编程的方法是了解为什么某些东西不起作用。 我已经尝试了上面没有自动调整大小的代码,并且在使用您提供的代码之前它无法正常工作。 我现在明白问题的原因了。谢谢。 我有一个类似的问题,我似乎无法解决 - 它在这里描述:***.com/questions/20206599/…。不同之处在于我的视图和表格视图是使用 NIB 文件创建的,并且表格视图显示在弹出窗口内的第二个视图控制器中,而不是第一个。我尝试设置视图和表格视图的内容大小,但没有奏效。我也不明白“你的表格没有滚动,因为它太大了,不需要滚动。只有弹出框正在剪裁它。” 当表格变大时,正是它需要滚动的时候。小表格不需要滚动,因为整个表格可以在一个屏幕中显示。所以上面的陈述对我来说毫无意义。【参考方案2】:尝试设置tableView的ContentSize
,像这样:
[tblViewMenu setContentSize:CGSizeMake(320,680)];
另外,我更希望 tableView 的大小是动态的。取决于您的 tableView 数据源数组。
更新
要使 tableView 动态化,请使用:
[tblViewMenu setContentSize:CGSizeMake(320, ([numbers count] * 32))];
如果你有一个像其他单元格一样高度的标题视图,只需在 [number count] 上加 1,就会是这样的:
[tblViewMenu setContentSize:CGSizeMake(320, (([numbers count] + 1) * 32))];
【讨论】:
如何让tableView的大小动态化? 但这只会放大视图,但如果有 50 行,则上述修复将不起作用。我只是希望它停留在该特定行。我该怎么做?再次感谢。 如何让 tableview 保持原位? 表格视图的内容大小是根据其内容计算的。明确设置它是一个非常糟糕的解决方案。 @JacobWood 确保启用滚动和触摸,使用以下命令:[tableViews setScrollEnabled:YES];[tableViews setUserInteractionEnabled:YES];
以上是关于弹出窗口中的表格视图不滚动的主要内容,如果未能解决你的问题,请参考以下文章
表视图控制器在弹出窗口中分配给 contentViewController 属性时不显示数据
图像的集合视图和弹出窗口上的单元格显示图像,也可以滚动查看其他图像