У меня нет «ViewAnimator», который, как вам кажется, вы используете, поэтому я не могу его протестировать, но это должно работать для вас:
if response.count > 1 {
let index = IndexPath(row: 1, section: 0)
self.tableView.scrollToRow(at: index, at: .top, animated: false)
UIView.animate(withDuration: 0.1, animations: {
self.tableView.layoutIfNeeded()
}, completion: {
_ in
let cells = self.tableView.visibleCells
// un-comment to output the array of visible cells
// to debug console to confirm the desired rows are visible
//print(cells)
UIView.animate(views: cells, animations: [], reversed: false, initialAlpha: 0, finalAlpha: 1, delay: 0, animationInterval: 0.1, duration: ViewAnimatorConfig.duration, options: UIView.AnimationOptions.allowAnimatedContent, completion: nil)
})
}