diff --git a/_docs/containers-astablenode.md b/_docs/containers-astablenode.md index 181545e0..c919b572 100755 --- a/_docs/containers-astablenode.md +++ b/_docs/containers-astablenode.md @@ -9,13 +9,17 @@ next: containers-ascollectionnode.html ASTableNode replaces both of UITableView's required methods -`- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath` and +`- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath` + +and `- (CGFloat)tableView:(UITableView *)tableView heightForRowAtIndexPath:(NSIndexPath *)indexPath` with **_one_** of the following methods (your choice) -`- (ASCellNode *)tableView:(ASTableView *)tableView nodeForRowAtIndexPath:(NSIndexPath *)indexPath` or +`- (ASCellNode *)tableView:(ASTableView *)tableView nodeForRowAtIndexPath:(NSIndexPath *)indexPath` + +or `- (ASCellNodeBlock)tableView:(ASTableView *)tableView nodeBlockForRowAtIndexPath:(NSIndexPath *)indexPath` **_(recommended)_**