UIScrollView滚动到并完全显示特定的Rect

  1. 适用于UIScrollView及其子类
// subView为scrollview的直接子视图
[scrollView scrollRectToVisible:subView.frame animated:YES];
  1. UITableView有更为详细的方法
[tableView scrollToRowAtIndexPath:(nonnull NSIndexPath *) atScrollPosition:(UITableViewScrollPosition) animated:(BOOL)]; 
[tableView scrollToNearestSelectedRowAtScrollPosition:(UITableViewScrollPosition) animated:(BOOL)]; 

[tableView selectRowAtIndexPath:(nullable NSIndexPath *) animated:(BOOL) scrollPosition:(UITableViewScrollPosition)];

你可能感兴趣的:(UIScrollView滚动到并完全显示特定的Rect)