We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ae6b155 commit 2dff602Copy full SHA for 2dff602
1 file changed
README.md
@@ -108,6 +108,14 @@ dataSource.titleForHeaderInSection = { dataSource, index in
108
dataSource.titleForFooterInSection = { dataSource, indexPath in
109
return dataSource.sectionModels[index].footer
110
}
111
+
112
+dataSource.canEditRowAtIndexPath = { dataSource, indexPath in
113
+ return true
114
+}
115
116
+dataSource.canMoveRowAtIndexPath = { dataSource, indexPath in
117
118
119
```
120
121
4) Define the actual data as an Observable sequence of CustomData objects and bind it to the tableView
0 commit comments