本文介绍了希望UITableView可以“捕捉到单元格".的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我正在UITableView
中显示相当大的图像.当用户滚动时,我想在表格视图中始终将最中央的照片捕捉到中间.也就是说,当桌子处于静止状态时,它总是将UITableViewCell
对齐到中间.
I am displaying fairly large images in a UITableView
. As the user scrolls, I'd like to the table view to always snap the center-most photo in the middle. That is, when the table is in a resting state, it will always have a UITableViewCell
snapped to the center.
这是怎么做到的?
推荐答案
您可以在UITableView
上使用UIScrollViewDelegate
方法来做到这一点:
You can use the UIScrollViewDelegate
methods on UITableView
to do this:
- (void)scrollViewDidEndDragging:(UIScrollView *)scrollView willDecelerate:(BOOL)decelerate {
// if decelerating, let scrollViewDidEndDecelerating: handle it
if (decelerate == NO) {
[self centerTable];
}
}
- (void)scrollViewDidEndDecelerating:(UIScrollView *)scrollView {
[self centerTable];
}
- (void)centerTable {
NSIndexPath *pathForCenterCell = [self.tableView indexPathForRowAtPoint:CGPointMake(CGRectGetMidX(self.tableView.bounds), CGRectGetMidY(self.tableView.bounds))];
[self.tableView scrollToRowAtIndexPath:pathForCenterCell atScrollPosition:UITableViewScrollPositionMiddle animated:YES];
}
这篇关于希望UITableView可以“捕捉到单元格".的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!