从Apple示例“PageControl”我们可以知道UIPageControl可用于控制滚动视图中页面的移动。
由于UITableView是UIScrollView的子类,我想使用UIPageControl来控制表格视图单元格的移动,就像在“PageControl”中一样。
但是找不到任何代表接口让我这样做。
问题是:
可以这样做吗?为什么?
谢谢
让我回答一下我的问题:
以编程方式选择和滚动
清单6-5以编程方式选择一行
- (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)newIndexPath {
NSIndexPath *scrollIndexPath;
if (newIndexPath.row + 20 < [timeZoneNames count]) {
scrollIndexPath = [NSIndexPath indexPathForRow:newIndexPath.row+20 inSection:newIndexPath.section];
} else {
scrollIndexPath = [NSIndexPath indexPathForRow:newIndexPath.row-20 inSection:newIndexPath.section];
}
[theTableView selectRowAtIndexPath:scrollIndexPath animated:YES
scrollPosition:UITableViewScrollPositionMiddle];
}
答案 0 :(得分:2)
肯定有可能,但你为什么要这样呢?表格视图垂直滚动,而页面控件具有水平布局,因此它可能看起来/感觉很奇怪。
无论如何,如果您真的想这样做,请将您的视图控制器添加为页面控件的目标:
[pageControl addTarget:self action:@selector(pageChanged:) forControlEvents:UIControlEventValueChanged];
然后在动作中实现滚动:
- (void)pageChanged:(UIPageControl *)sender {
float scrollPosition = ((float)sender.currentPage / (float)sender.numberOfPages) * tableView.contentSize.height;
[tableView scrollRectToVisible:CGRectMake(0, scrollPosition, 1, 1) animated:YES];
}