override func numberOfSections(in tableView: UITableView) -> Int {
return 6
}
override func tableView(_ tableView: UITableView, numberOfRowsInSection section: Int) -> Int {
return 1
}
func textViewDidBeginEditing(_ textView: UITextView) {
tableView.scrollToRow(at: IndexPath(row: 0, section: 4), at: .top, animated: true)
let indexPath = IndexPath(row: 0, section: 2)
tableView.scrollToRow(at: indexPath, at: .bottom, animated: true)