UIScrollView滾動到並完全顯示特定的Rect

weixin_33866037發表於2016-12-15
  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)];

相關文章