12

私は iOS Swift 2.0 アプリケーションで作業しています。UITableViewCell開示インジケーターのシェブロンの直前にテキストを設定する方法について、私の人生では理解できません(カスタムを作成する以外にcell.accessoryView)。

これは、まさに私が達成しようとしている「設定アプリ」のスクリーンショットです。

セル アクセサリ ビューのスクリーンショット

4

2 に答える 2

12
override func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell {

    let cell = tableView.dequeueReusableCell(withIdentifier: "CellId") ?? UITableViewCell(style: UITableViewCellStyle.value1, reuseIdentifier: "CellId")
    cell.accessoryType = UITableViewCellAccessoryType.disclosureIndicator
    cell.textLabel?.text = "Main text"
    cell.detailTextLabel?.text = "Detail Text"

    return cell
}
于 2016-11-29T15:59:40.437 に答える