func tableView()

in mpush_ios_swift_demo/mpush_ios_swift_demo/MPushInfoViewController.swift [40:45]


    func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell {
        let cellIdentifier = "userInfoCell"
        let cell: UITableViewCell = tableView.dequeueReusableCell(withIdentifier: cellIdentifier, for: indexPath)
        cell.textLabel?.text = userInfoValues[indexPath.row]
        return cell
    }