如何将表格的单元格滚动到特定位置?我有一个表格显示3行(根据高度)。我想要的是如果我点击第1行而不是根据表格的高度,第1行应该滚动并获得新位置(中心),并且对于其他行也是如此。我试过contenOffset但没有工作..
编辑:
简而言之,当我们选择选择器中的任何行时,数据选择器会将某些行滚动到中心。
谢谢..
它应该使用- (void)scrollToRowAtIndexPath:(NSIndexPath *)indexPath atScrollPosition:(UITableViewScrollPosition)scrollPosition animated:(BOOL)animated
这样使用它:
NSIndexPath *indexPath = [NSIndexPath indexPathForRow:0 inSection:0];
[yourTableView scrollToRowAtIndexPath:indexPath
atScrollPosition:UITableViewScrollPositionTop
animated:YES];
atScrollPosition
可以采取以下任何一个值:
typedef enum {
UITableViewScrollPositionNone,
UITableViewScrollPositionTop,
UITableViewScrollPositionMiddle,
UITableViewScrollPositionBottom
} UITableViewScrollPosition;
我希望这可以帮助你
干杯
[tableview scrollRectToVisible:CGRectMake(0, 0, 1, 1) animated:NO];
这会将您的tableview带到第一行。
最后我发现......当表只显示3行时,它会很好用...如果行更多则应该相应改变...
- (NSInteger)numberOfSectionsInTableView:(UITableView *)tableView
{
return 1;
}
// Customize the number of rows in the table view.
- (NSInteger)tableView:(UITableView *)tableView
numberOfRowsInSection:(NSInteger)section
{
return 30;
}
- (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] autorelease];
}
// Configure the cell.
cell.textLabel.text =[NSString stringWithFormat:@"Hello roe no. %d",[indexPath row]];
return cell;
}
- (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath
{
UITableViewCell * theCell = (UITableViewCell *)[tableView
cellForRowAtIndexPath:indexPath];
CGPoint tableViewCenter = [tableView contentOffset];
tableViewCenter.y += myTable.frame.size.height/2;
[tableView setContentOffset:CGPointMake(0,theCell.center.y-65) animated:YES];
[tableView reloadData];
}
使用[tableView scrollToRowAtIndexPath:indexPath atScrollPosition:scrollPosition animated:YES];
滚动接收器,直到索引路径标识的行位于屏幕上的特定位置。
和
scrollToNearestSelectedRowAtScrollPosition:animated:
滚动表格视图,以便最接近表格视图中指定位置的选定行位于该位置。
Swift 4.2版本:
let indexPath:IndexPath = IndexPath(row: 0, section: 0)
self.tableView.scrollToRow(at: indexPath, at: .none, animated: true)
枚举:这些是可用的tableView滚动位置 - 供参考。您无需在代码中包含此部分。
public enum UITableViewScrollPosition : Int {
case None
case Top
case Middle
case Bottom
}
DidSelectRow:
func tableView(tableView: UITableView, didSelectRowAtIndexPath indexPath: NSIndexPath) {
let theCell:UITableViewCell? = tableView.cellForRowAtIndexPath(indexPath)
if let theCell = theCell {
var tableViewCenter:CGPoint = tableView.contentOffset
tableViewCenter.y += tableView.frame.size.height/2
tableView.contentOffset = CGPointMake(0, theCell.center.y-65)
tableView.reloadData()
}
}
值得注意的是,如果您使用setContentOffset
方法,它可能会导致您的表视图/集合视图跳跃一点。老实说,我会尝试另一种方式。建议使用免费提供的滚动视图委托方法。
只需一行代码:
self.tblViewMessages.scrollToRow(at: IndexPath.init(row: arrayChat.count-1, section: 0), at: .bottom, animated: isAnimeted)