I am trying to insert a row in Eureka using Swift 4.2.
I am not sure what I might be doing wrong, but the following lines give me an error:
form.sectionBy(tag: "section1").insert(LabelRow() at: 0)
Incorrect argument labels in call (have '_:at:', expected 'row:after:')
However, calling it like this works:
form.rowBy(tag: "row1").section?.insert(LabelRow() at: 0)
Any ideas what am I doing wrong?