Skip to content

Commit

Permalink
Fixes example about getting rows by tag (xmartlabs#1378)
Browse files Browse the repository at this point in the history
  • Loading branch information
m-revetria authored Jan 9, 2018
1 parent a9552a7 commit 184dd04
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -1023,7 +1023,7 @@ For instance:
let dateRow : DateRow? = form.rowBy(tag: "dateRowTag")
let labelRow: LabelRow? = form.rowBy(tag: "labelRowTag")

let dateRow2: Row<Date>? = form.rowBy(tag: "dateRowTag")
let dateRow2: Row<DateCell>? = form.rowBy(tag: "dateRowTag") as? Row<DateCell>

let labelRow2: BaseRow? = form.rowBy(tag: "labelRowTag")
```
Expand Down

0 comments on commit 184dd04

Please sign in to comment.