def tableview_cell_for_row(self, tableview, section, row):
cell = ui.TableViewCell()
if section == 0:
cell.text_label.text = self.tables[row]
elif section == 1:
cell.text_label.text = self.views[row]
else:
cell.text_label.text = self.systemtables[row]
cell.selectable = True
return cell
评论列表
文章目录