def tableview_cell_for_row(self, tableview, section, row):
# Create and return a cell for the given section/row
import ui
cell = ui.TableViewCell()
cell.text_label.text = self.items[row]['title']
cell.accessory_type = self.items[row]['accessory_type']
return cell
评论列表
文章目录