“Uitableview scroll на нижний Swift” Ответ

Swift Scrollview Scroll внизу

let bottomOffset = CGPoint(x: 0, y: scrollView.contentSize.height - scrollView.bounds.size.height)
//OR
//let bottomOffset = CGPoint(x: 0, y: scrollView.frame.maxY)
scrollView.setContentOffset(bottomOffset, animated: true)
Aris G

Uitableview scroll на нижний Swift

let indexPath = IndexPath(item: noOfRows, section: 0)
yourTableView.scrollToRow(at: indexPath, at: UITableView.ScrollPosition.bottom, animated: true)
Frail Flamingo

Ответы похожие на “Uitableview scroll на нижний Swift”

Вопросы похожие на “Uitableview scroll на нижний Swift”

Больше похожих ответов на “Uitableview scroll на нижний Swift” по Swift

Смотреть популярные ответы по языку

Смотреть другие языки программирования