key backup settings: Manage checking state

This commit is contained in:
manuroe
2019-01-31 18:48:35 +01:00
parent f415c99786
commit 4b60ed76be
3 changed files with 14 additions and 3 deletions

View File

@@ -124,9 +124,15 @@ import UIKit
return 1
}
private func renderCheckingBackupCell(atRow: Int) -> UITableViewCell {
// TODO: loading wheel
return UITableViewCell.init()
private func renderCheckingBackupCell(atRow row: Int) -> UITableViewCell {
guard let delegate = self.delegate else {
return UITableViewCell.init()
}
let cell: MXKTableViewCellWithTextView = delegate.settingsKeyBackupTableViewSection(self, textCellForRow: row)
cell.mxkTextView.text = VectorL10n.settingsKeyBackupInfoChecking
return cell
}