我试图格式化日期:cellForRow
返回日期和时间。我创建了一些格式化程序以及使用这些格式化程序的函数:
// dequeue TextViewTableCell cell
cell.textDidChangeHandler = { [weak self] (text, shouldScroll) in
guard let this = self else { return }
// do whatever actions with text if needed
guard shouldScroll else { return }
UIView.performWithoutAnimation {
tableView.beginUpdates()
tableView.endUpdates()
}
tableView.scrollToRow(at: indexPath, at: .bottom, animated: false)
}
这是函数的使用方式:
2017-10-18T20:32:35.684-05:00
我不确定每当我使用格式化程序时它返回nil。任何帮助表示赞赏!