“Comment faire défiler vers la section dans TableView Swift” Réponses codées

Swift fait défiler vers TableViewCell

let indexPath = IndexPath(row: row, section: section)
tableView.scrollToRow(at: indexPath, at: .top, animated: true)
Ill Ibex

Comment faire défiler vers la section dans TableView Swift

func tableView(_ tableView: UITableView, sectionForSectionIndexTitle title: String, at index: Int) -> Int {
        if let index = sectionsArr.firstIndex(where: { $0 == title }) {
            return index//0 for a, 2 for b, 3 for c, 4 for d
        }
        //print(index)
        return 0
    }
Fantastic Fish

Réponses similaires à “Comment faire défiler vers la section dans TableView Swift”

Questions similaires à “Comment faire défiler vers la section dans TableView Swift”

Plus de réponses similaires à “Comment faire défiler vers la section dans TableView Swift” dans Swift

Parcourir les réponses de code populaires par langue

Parcourir d'autres langages de code