funcnumberOfSections(in tableView:UITableView) ->Int{
return10
}
functableView(_tableView:UITableView, numberOfRowsInSection section:Int) ->Int{
return self.name_link_tuples.count
}
functableView(_tableView:UITableView, heightForRowAt indexPath:IndexPath) ->CGFloat{
return100;
}
functableView(_tableView:UITableView, cellForRowAt indexPath:IndexPath) ->UITableViewCell{
letmodel =self.name_link_tuples[indexPath.row]
letcell = tableView.dequeueReusableCell(withIdentifier:"cell")as!UITableViewCell
cell.textLabel?.text= model.1
returncell
}