@@ -28,12 +28,12 @@ NS_ASSUME_NONNULL_BEGIN
28
28
29
29
/* *
30
30
* FirebaseTableViewDataSource provides an class that conforms to the
31
- * UITableViewDataSource protocol which allows UITableViews to implement
32
- * FirebaseTableViewDataSource in order to provide a UITableView synchronized
33
- * to a Firebase reference or query. In addition to handling all Firebase
34
- * child events (added, changed, removed, moved), FirebaseTableViewDataSource
35
- * handles UITableViewCell creation, either with the default UITableViewCell,
36
- * prototype cells, custom UITableViewCell subclasses, or custom XIBs, and
31
+ * UITableViewDataSource protocol which allows UITableViews to implement
32
+ * FirebaseTableViewDataSource in order to provide a UITableView synchronized
33
+ * to a Firebase reference or query. In addition to handling all Firebase
34
+ * child events (added, changed, removed, moved), FirebaseTableViewDataSource
35
+ * handles UITableViewCell creation, either with the default UITableViewCell,
36
+ * prototype cells, custom UITableViewCell subclasses, or custom XIBs, and
37
37
* provides a simple [FirebaseTableViewDataSource populateCellWithBlock:]
38
38
* method which allows developers to populate the cells created for them
39
39
* with desired data from Firebase.
@@ -52,15 +52,14 @@ NS_ASSUME_NONNULL_BEGIN
52
52
@property (strong , nonatomic , readonly ) UITableViewCell *(^populateCell)
53
53
(UITableView *tableView, NSIndexPath *indexPath, FIRDataSnapshot *snap);
54
54
55
-
56
55
/* *
57
56
* Initialize an instance of FirebaseTableViewDataSource.
58
57
* @param query A Firebase query to bind the data source to.
59
58
* @param tableView An instance of a UITableView to bind to. This view is
60
59
* not retained by the data source.
61
60
* @param populateCell A closure used by the data source to create/reuse
62
61
* table view cells and populate their content. This closure is retained
63
- * by the data source, so if you capture self in the closure and also claim ownership
62
+ * by the data source, so if you capture self in the closure and also claim ownership
64
63
* of the data source, be sure to avoid retain cycles by capturing a weak reference to self.
65
64
* @return An instance of FirebaseTableViewDataSource.
66
65
*/
0 commit comments